<?xml version="1.0" encoding="utf-8"?>
<!--RSS generated by Flaimo.com RSS Builder [2013-05-18 13:10:28]-->
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"><channel><docs>http://www.sociodox.com/TheMinerBugBase/</docs><link>http://www.sociodox.com/TheMinerBugBase/</link><description><![CDATA[MantisBT - Issues]]></description><title>MantisBT - Issues</title><image><title>MantisBT - Issues</title><url>http://www.sociodox.com/TheMinerBugBase/images/mantis_logo_button.gif</url><link>http://www.sociodox.com/TheMinerBugBase/</link><description><![CDATA[MantisBT - Issues]]></description></image><language>en</language><category>All Projects</category><ttl>10</ttl><dc:language>en</dc:language><sy:updatePeriod>hourly</sy:updatePeriod><sy:updateFrequency>1</sy:updateFrequency><item><title>0000006: Memory, Internal Events, Performance Profilers are not active in "Try online" example</title><author></author><link>http://www.sociodox.com/TheMinerBugBase/view.php?id=6</link><description><![CDATA[Memory, Internal Events, Performance Profilers are not active at the examples (e.g. &lt;a href=&quot;http://www.sociodox.com/theminer/try_particles.html&quot;&gt;http://www.sociodox.com/theminer/try_particles.html&lt;/a&gt; [&lt;a href=&quot;http://www.sociodox.com/theminer/try_particles.html&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]).&lt;br /&gt;
Runtime statistics and other functionality works fine though.&lt;br /&gt;
&lt;br /&gt;
Debug FP 11.1.102.55, Chrome/FF, Win]]></description><category>General</category><pubDate>Tue, 21 Aug 2012 17:35:46 +0000</pubDate><guid>http://www.sociodox.com/TheMinerBugBase/view.php?id=6</guid><comments>http://www.sociodox.com/TheMinerBugBase/view.php?id=6#bugnotes</comments></item><item><title>0000042: Throws Error #2015: Invalid BitmapData. sometimes when MonsterDebugger is running (1.4.01)</title><author></author><link>http://www.sociodox.com/TheMinerBugBase/view.php?id=42</link><description><![CDATA[The Miner throws next error sometimes when MonsterDebugger is running.&lt;br /&gt;
&lt;br /&gt;
ArgumentError: Error #2015: Invalid BitmapData.&lt;br /&gt;
	at flash.display::BitmapData/ctor()&lt;br /&gt;
	at flash.display::BitmapData()&lt;br /&gt;
	at MonsterDebuggerUtils$/snapshot()[C:\sociodox\Code\SociodoxSVN\trunk\src\com\demonsters\debugger\MonsterDebuggerUtils.as:122]&lt;br /&gt;
	at MonsterDebuggerCore$/handleInternal()[C:\sociodox\Code\SociodoxSVN\trunk\src\com\demonsters\debugger\MonsterDebuggerCore.as:547]&lt;br /&gt;
	at MonsterDebuggerCore$/handle()[C:\sociodox\Code\SociodoxSVN\trunk\src\com\demonsters\debugger\MonsterDebuggerCore.as:454]&lt;br /&gt;
	at MonsterDebuggerConnectionDefault/processPackage()[C:\sociodox\Code\SociodoxSVN\trunk\src\com\demonsters\debugger\MonsterDebuggerConnectionDefault.as:352]&lt;br /&gt;
	at MonsterDebuggerConnectionDefault/processPackage()[C:\sociodox\Code\SociodoxSVN\trunk\src\com\demonsters\debugger\MonsterDebuggerConnectionDefault.as:362]&lt;br /&gt;
	at MonsterDebuggerConnectionDefault/processPackage()[C:\sociodox\Code\SociodoxSVN\trunk\src\com\demonsters\debugger\MonsterDebuggerConnectionDefault.as:362]&lt;br /&gt;
	at MonsterDebuggerConnectionDefault/processPackage()[C:\sociodox\Code\SociodoxSVN\trunk\src\com\demonsters\debugger\MonsterDebuggerConnectionDefault.as:362]&lt;br /&gt;
	at MonsterDebuggerConnectionDefault/dataHandler()[C:\sociodox\Code\SociodoxSVN\trunk\src\com\demonsters\debugger\MonsterDebuggerConnectionDefault.as:315]]]></description><category>General</category><pubDate>Sat, 18 Aug 2012 09:12:18 +0000</pubDate><guid>http://www.sociodox.com/TheMinerBugBase/view.php?id=42</guid><comments>http://www.sociodox.com/TheMinerBugBase/view.php?id=42#bugnotes</comments></item><item><title>0000038: Performance profiler issues (1.3.20)</title><author></author><link>http://www.sociodox.com/TheMinerBugBase/view.php?id=38</link><description><![CDATA[Please, look at this code:&lt;br /&gt;
package &lt;br /&gt;
{&lt;br /&gt;
	import com.sociodox.theminer.TheMiner;&lt;br /&gt;
	import flash.display.MovieClip;&lt;br /&gt;
	import flash.display.Sprite;&lt;br /&gt;
	import flash.display.StageAlign;&lt;br /&gt;
	import flash.display.StageScaleMode;&lt;br /&gt;
	import flash.events.Event;&lt;br /&gt;
	&lt;br /&gt;
	/**&lt;br /&gt;
	 * ...&lt;br /&gt;
	 * @author focus&lt;br /&gt;
	 */&lt;br /&gt;
	public class Main extends Sprite &lt;br /&gt;
	{&lt;br /&gt;
		private var vec:Vector.&lt;MovieClip&gt;;&lt;br /&gt;
		&lt;br /&gt;
		public function Main():void &lt;br /&gt;
		{&lt;br /&gt;
			if (stage) init();&lt;br /&gt;
			else this.addEventListener(Event.ADDED_TO_STAGE, init);&lt;br /&gt;
		}&lt;br /&gt;
		&lt;br /&gt;
		private function init(e:Event = null):void &lt;br /&gt;
		{&lt;br /&gt;
			stage.align = StageAlign.TOP_LEFT;&lt;br /&gt;
			stage.scaleMode = StageScaleMode.NO_SCALE;&lt;br /&gt;
			&lt;br /&gt;
			this.removeEventListener(Event.ADDED_TO_STAGE, init);&lt;br /&gt;
			this.addChild(new TheMiner());&lt;br /&gt;
			&lt;br /&gt;
			vec = new Vector.&lt;MovieClip&gt;();&lt;br /&gt;
			this.addEventListener(Event.ENTER_FRAME, onThisEnterFrame);&lt;br /&gt;
		}&lt;br /&gt;
		&lt;br /&gt;
		private function onThisEnterFrame(e:Event):void &lt;br /&gt;
		{&lt;br /&gt;
			vec.push(new MovieClip());&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
And at this sceenshot:&lt;br /&gt;
&lt;a href=&quot;http://j.mp/GHiehz&quot;&gt;http://j.mp/GHiehz&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GHiehz&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
As you can see, I see this data in hint:&lt;br /&gt;
global/flash.sampler::startSampling()&lt;br /&gt;
com.sociodox.theminer.manager::Analytics$/Track()&lt;br /&gt;
com.sociodox.theminer.window::PerformanceProfiler()&lt;br /&gt;
com.sociodox.theminer::TheMiner/ChangeTool()&lt;br /&gt;
com.sociodox.theminer::TheMiner/OnEnterFrame()&lt;br /&gt;
[enterFrameEvent]()&lt;br /&gt;
&lt;br /&gt;
But I think this enterFrameEvent should be cleaned from profiler output.&lt;br /&gt;
&lt;br /&gt;
Now I recompiled the same source and see this in the performance profiler:&lt;br /&gt;
&lt;a href=&quot;http://j.mp/GCKEGC&quot;&gt;http://j.mp/GCKEGC&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GCKEGC&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
As you can see, I see only&lt;br /&gt;
flash.display::MovieClip()&lt;br /&gt;
Main/onThisEnterFrame()&lt;br /&gt;
[enterFrameEvent]()&lt;br /&gt;
in hint for the flash.display::MovieClip&lt;br /&gt;
Also I still see the [-enterFrameEvent] from the deep of TheMiner&lt;br /&gt;
&lt;br /&gt;
I enabled Performance Profiler continuous profiling and see this for the [-enterFrameEvent] now:&lt;br /&gt;
&lt;a href=&quot;http://j.mp/GCH1nR&quot;&gt;http://j.mp/GCH1nR&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GCH1nR&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
Only&lt;br /&gt;
[verify]()&lt;br /&gt;
[enterFrameEvent]()&lt;br /&gt;
&lt;br /&gt;
And see this for the flash.display::MovieClip:&lt;br /&gt;
&lt;a href=&quot;http://j.mp/GCHkix&quot;&gt;http://j.mp/GCHkix&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GCHkix&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
flash.display::Sprite/constructChildren()&lt;br /&gt;
flash.display::Sprite()&lt;br /&gt;
flash.display::MovieClip()&lt;br /&gt;
Main/onThisEnterFrame()&lt;br /&gt;
[enterFrameEvent]()&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why this time hints for the [enterFrameEvent] and flash.display::MovieClip so different to hints when performance profiler's continuous profiling option is disabled?&lt;br /&gt;
&lt;br /&gt;
I recompiled and restarted that SWF once again (with performance profiler's continuous profiling enabled) and now I see this hints:&lt;br /&gt;
[-enterFrameEvent]: &lt;br /&gt;
&lt;a href=&quot;http://j.mp/GCI5bA&quot;&gt;http://j.mp/GCI5bA&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GCI5bA&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
Main/onThisEnterFrame&lt;br /&gt;
&lt;a href=&quot;http://j.mp/GCI8E3&quot;&gt;http://j.mp/GCI8E3&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GCI8E3&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
&lt;br /&gt;
Recompiled once again and see this:&lt;br /&gt;
Main/onThisEnterFrame:&lt;br /&gt;
&lt;a href=&quot;http://j.mp/GCIuuk&quot;&gt;http://j.mp/GCIuuk&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GCIuuk&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
&lt;br /&gt;
[avm1]:&lt;br /&gt;
&lt;a href=&quot;http://j.mp/GCIA5e&quot;&gt;http://j.mp/GCIA5e&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GCIA5e&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
&lt;br /&gt;
[reap]:&lt;br /&gt;
&lt;a href=&quot;http://j.mp/GCIIBP&quot;&gt;http://j.mp/GCIIBP&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GCIIBP&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
&lt;br /&gt;
Recompiled again:&lt;br /&gt;
[reap]:&lt;br /&gt;
&lt;a href=&quot;http://j.mp/GCIQkG&quot;&gt;http://j.mp/GCIQkG&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GCIQkG&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
&lt;br /&gt;
Disabled performance profiler's continuous profiling and recompiled again:&lt;br /&gt;
[avm1]:&lt;br /&gt;
&lt;a href=&quot;http://j.mp/GCOy2c&quot;&gt;http://j.mp/GCOy2c&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GCOy2c&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
&lt;br /&gt;
[mouseEvent]&lt;br /&gt;
&lt;a href=&quot;http://j.mp/GCOz6k&quot;&gt;http://j.mp/GCOz6k&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GCOz6k&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;] - looks like another thing from the deep of TheMineer&lt;br /&gt;
&lt;br /&gt;
Looks like output differs in the same environment from compile\run to compile\run.]]></description><category>General</category><pubDate>Tue, 07 Aug 2012 01:15:10 +0000</pubDate><guid>http://www.sociodox.com/TheMinerBugBase/view.php?id=38</guid><comments>http://www.sociodox.com/TheMinerBugBase/view.php?id=38#bugnotes</comments></item><item><title>0000041: Mouse listener window brings out an error.</title><author></author><link>http://www.sociodox.com/TheMinerBugBase/view.php?id=41</link><description><![CDATA[RangeError: Error #2006: The supplied index is out of bounds.&lt;br /&gt;
	at flash.display::DisplayObjectContainer/getChildAt()&lt;br /&gt;
	at /getChildAt()[/:446]&lt;br /&gt;
	at com.sociodox.theminer.window::MouseListeners/ParseStage()[C:\sociodox\Code\TheMiner\trunk\src\com\sociodox\theminer\window\MouseListeners.as:113]&lt;br /&gt;
	at com.sociodox.theminer.window::MouseListeners/ParseStage()[C:\sociodox\Code\TheMiner\trunk\src\com\sociodox\theminer\window\MouseListeners.as:144]&lt;br /&gt;
	at com.sociodox.theminer.window::MouseListeners/ParseStage()[C:\sociodox\Code\TheMiner\trunk\src\com\sociodox\theminer\window\MouseListeners.as:144]&lt;br /&gt;
	at com.sociodox.theminer.window::MouseListeners/Update()[C:\sociodox\Code\TheMiner\trunk\src\com\sociodox\theminer\window\MouseListeners.as:100]&lt;br /&gt;
	at com.sociodox.theminer::TheMiner/OnEnterFrame()[C:\sociodox\Code\TheMiner\trunk\src\com\sociodox\theminer\TheMiner.as:402]]]></description><category>General</category><pubDate>Fri, 15 Jun 2012 18:41:54 +0000</pubDate><guid>http://www.sociodox.com/TheMinerBugBase/view.php?id=41</guid><comments>http://www.sociodox.com/TheMinerBugBase/view.php?id=41#bugnotes</comments></item><item><title>0000039: Global Crash</title><author></author><link>http://www.sociodox.com/TheMinerBugBase/view.php?id=39</link><description><![CDATA[I have been using the Miner Pro successfully for a few weeks now, thanks a lot for thins great tool! &lt;br /&gt;
However, since a few hours, it doesn't work anymore, and I didn't manage to find what happened. &lt;br /&gt;
I just recompiled the main flash I use, and nothing works anymore: now when I launch it (or any other flash content), it just displays the Miner toolbar (but clicking on any icon does nothing), and the flash &lt;br /&gt;
content never loads.]]></description><category>General</category><pubDate>Wed, 13 Jun 2012 01:14:56 +0000</pubDate><guid>http://www.sociodox.com/TheMinerBugBase/view.php?id=39</guid><comments>http://www.sociodox.com/TheMinerBugBase/view.php?id=39#bugnotes</comments></item><item><title>0000040: Embedding TheMiner 1.3.20 as SWC does not work</title><author></author><link>http://www.sociodox.com/TheMinerBugBase/view.php?id=40</link><description><![CDATA[TheMiner : Starting TheMiner 1.3.20&lt;br /&gt;
TheMiner : Loading configs...&lt;br /&gt;
Exception fault: TypeError: Error #1009: Access of a null-reference or property&lt;br /&gt;
	at com.sociodox.theminer.window::Configuration$/Load()[C:\sociodox\Code\TheMiner\trunk\src\com\sociodox\theminer\window\Configuration.as:770]&lt;br /&gt;
	at com.sociodox.theminer::TheMiner/init()[C:\sociodox\Code\TheMiner\trunk\src\com\sociodox\theminer\TheMiner.as:152]&lt;br /&gt;
	at flash.display::DisplayObjectContainer/addChild()&lt;br /&gt;
	at flash.display::Stage/addChild()]]></description><category>General</category><pubDate>Wed, 13 Jun 2012 01:13:06 +0000</pubDate><guid>http://www.sociodox.com/TheMinerBugBase/view.php?id=40</guid><comments>http://www.sociodox.com/TheMinerBugBase/view.php?id=40#bugnotes</comments></item><item><title>0000037: Internal Events profiler pause button issues  (1.3.20)</title><author></author><link>http://www.sociodox.com/TheMinerBugBase/view.php?id=37</link><description><![CDATA[Step-by-step: &lt;br /&gt;
- open Internal Events profiler and roll over Pause button: &lt;a href=&quot;http://j.mp/GDNadq&quot;&gt;http://j.mp/GDNadq&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GDNadq&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
we don't see hint for it - it's showed outside the visible area (we can see only small part of it)&lt;br /&gt;
- press pause button: &lt;a href=&quot;http://j.mp/GDNpVI&quot;&gt;http://j.mp/GDNpVI&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GDNpVI&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
all looks fine (except we don't see the hint)&lt;br /&gt;
- press the play button: &lt;a href=&quot;http://j.mp/GDNEA3&quot;&gt;http://j.mp/GDNEA3&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GDNEA3&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
profiling continued, but icon is not changed to Pause until I roll out mouse from the button&lt;br /&gt;
Looks like this issue with icon is actual for all pause\play buttons.]]></description><category>General</category><pubDate>Wed, 21 Mar 2012 16:20:12 +0000</pubDate><guid>http://www.sociodox.com/TheMinerBugBase/view.php?id=37</guid><comments>http://www.sociodox.com/TheMinerBugBase/view.php?id=37#bugnotes</comments></item><item><title>0000036: Hint for the rows in the Memory Profiler is not removed (1.3.20)</title><author></author><link>http://www.sociodox.com/TheMinerBugBase/view.php?id=36</link><description><![CDATA[Hint for rows in the Memory Profiler is not removed as I roll out mouse from filled by data rows to empty rows or even from Flash Player window:&lt;br /&gt;
&lt;a href=&quot;http://j.mp/GEA07c&quot;&gt;http://j.mp/GEA07c&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GEA07c&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]]]></description><category>General</category><pubDate>Wed, 21 Mar 2012 16:18:23 +0000</pubDate><guid>http://www.sociodox.com/TheMinerBugBase/view.php?id=36</guid><comments>http://www.sociodox.com/TheMinerBugBase/view.php?id=36#bugnotes</comments></item><item><title>0000035: Save ALL buttons behavior - two issues (1.3.20)</title><author></author><link>http://www.sociodox.com/TheMinerBugBase/view.php?id=35</link><description><![CDATA[When I press Save ALL button, it saves values differ from what I see in the table:&lt;br /&gt;
&lt;a href=&quot;http://j.mp/GEzA0t&quot;&gt;http://j.mp/GEzA0t&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GEzA0t&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
&lt;br /&gt;
I have swf running at 60 FPS, and 1 FPS table update speed - so every second I see 60 Event instances added, as I should see because I have EnterFrame event listener. But in Saved to clipboard data I see only 27 Event instances added.&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
Screenshot: &lt;a href=&quot;http://j.mp/GDOa1b&quot;&gt;http://j.mp/GDOa1b&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GDOa1b&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
If I pressed pause at profiler and pressed Save all button then - I have some mysterious values copied into the clipboard, but I expect to see the data exact as at the table in paused state.&lt;br /&gt;
This is actual for both Memory and performance profilers.&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
In case of second issue is really an issue but not a bug, could be nice to see filtered by QName data (if table was filtered by QName) in clipboard after Copy ALL button pressed in the profiler.]]></description><category>General</category><pubDate>Wed, 21 Mar 2012 16:16:52 +0000</pubDate><guid>http://www.sociodox.com/TheMinerBugBase/view.php?id=35</guid><comments>http://www.sociodox.com/TheMinerBugBase/view.php?id=35#bugnotes</comments></item><item><title>0000034: Two buttons issues (1.3.20)</title><author></author><link>http://www.sociodox.com/TheMinerBugBase/view.php?id=34</link><description><![CDATA[Step-by-step:&lt;br /&gt;
- open swf: &lt;a href=&quot;http://j.mp/GEFYll&quot;&gt;http://j.mp/GEFYll&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GEFYll&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
- roll over Memory Profiler button: &lt;a href=&quot;http://j.mp/GEndef&quot;&gt;http://j.mp/GEndef&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GEndef&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
please note we see the tooltip over button&lt;br /&gt;
also note how the memory profiler icon look - it's grey with bevel - it's OK&lt;br /&gt;
&lt;br /&gt;
- click on the memory profiler icon: &lt;a href=&quot;http://j.mp/GEGq2Z&quot;&gt;http://j.mp/GEGq2Z&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GEGq2Z&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
as you can see, we don't see the button tooltip any longer - we see a small gray stroke instead&lt;br /&gt;
Now if we roll out mouse from the Memory Profiler button and roll over again - we will see that hint as expected&lt;br /&gt;
&lt;br /&gt;
also, please, note how icon look changed - it's now with orange bevel - it's OK&lt;br /&gt;
&lt;br /&gt;
- click on the memory profiler icon once again: &lt;a href=&quot;http://j.mp/GJcX7A&quot;&gt;http://j.mp/GJcX7A&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GJcX7A&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
as you can see, icon look is not changed. But I expect it to change to the normal roll over look - gray with bevel, as it was on this screenshot: &lt;a href=&quot;http://j.mp/GEndef&quot;&gt;http://j.mp/GEndef&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GEndef&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Another step-by-step:&lt;br /&gt;
- open Memory Profiler tab: &lt;a href=&quot;http://j.mp/GEyyS8&quot;&gt;http://j.mp/GEyyS8&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GEyyS8&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
we see table is sorted by Cumul column, it's OK&lt;br /&gt;
- roll over the Current column sort button: &lt;a href=&quot;http://j.mp/GEyMbV&quot;&gt;http://j.mp/GEyMbV&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GEyMbV&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
we see the hint and button roll-overed state, it's OK&lt;br /&gt;
- click this button: &lt;a href=&quot;http://j.mp/GEyS3i&quot;&gt;http://j.mp/GEyS3i&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GEyS3i&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
We see the same issue as for the MemoryProfiler button - hint is absent&lt;br /&gt;
Table sorted, it's OK&lt;br /&gt;
- click to that button once again: &lt;a href=&quot;http://j.mp/GEz1DP&quot;&gt;http://j.mp/GEz1DP&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GEz1DP&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
Hint appeared.&lt;br /&gt;
- roll out the mouse from button: &lt;a href=&quot;http://j.mp/GEzaap&quot;&gt;http://j.mp/GEzaap&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GEzaap&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
button selection is gone! Now I can't see which column is sorted Current or Cumul]]></description><category>General</category><pubDate>Wed, 21 Mar 2012 16:12:55 +0000</pubDate><guid>http://www.sociodox.com/TheMinerBugBase/view.php?id=34</guid><comments>http://www.sociodox.com/TheMinerBugBase/view.php?id=34#bugnotes</comments></item><item><title>0000030: Memory profiler items duplicates</title><author></author><link>http://www.sociodox.com/TheMinerBugBase/view.php?id=30</link><description><![CDATA[I see different counts for the same items in a different lines.&lt;br /&gt;
This is a snapshot of the Memory profiler (with autostart enabled) in the empty as3 Flash Develop project with additional code creating a new BitmapData and adding a Bitmap with it on the DisplayList:&lt;br /&gt;
&lt;br /&gt;
flash.events::MouseEvent	0	0	0	1011&lt;br /&gt;
Object	0	0	290	290&lt;br /&gt;
Object	0	0	268	268&lt;br /&gt;
Function	0	0	227	227&lt;br /&gt;
Function	0	0	227	227&lt;br /&gt;
String	0	0	37	88&lt;br /&gt;
Class	0	0	46	46&lt;br /&gt;
Class	0	0	36	36&lt;br /&gt;
Namespace	0	0	0	24&lt;br /&gt;
XML	0	0	12	12&lt;br /&gt;
XML	0	0	12	12&lt;br /&gt;
Object	0	0	4	9&lt;br /&gt;
flash.display::BitmapData	0	0	2	2&lt;br /&gt;
flash.events::Event	0	0	0	2&lt;br /&gt;
Class	0	0	2	2&lt;br /&gt;
flash.display::Bitmap	0	0	2	2&lt;br /&gt;
flash.display::MovieClip	0	0	2	2&lt;br /&gt;
flash.display::BitmapData	0	0	1	1&lt;br /&gt;
Error	0	0	1	1&lt;br /&gt;
flash.system::ApplicationDomain	0	0	1	1&lt;br /&gt;
flash.system::ApplicationDomain	0	0	1	1&lt;br /&gt;
flash.display::Bitmap	0	0	1	1&lt;br /&gt;
Error	0	0	1	1&lt;br /&gt;
Array	0	0	1	1&lt;br /&gt;
Array	0	0	1	1&lt;br /&gt;
flash.display::LoaderInfo	0	0	1	1&lt;br /&gt;
flash.events::EventDispatcher	0	0	1	1&lt;br /&gt;
flash.display::Graphics	0	0	1	1&lt;br /&gt;
flash.system::ApplicationDomain	0	0	1	1&lt;br /&gt;
&lt;br /&gt;
As you can see, there are duplicated lines for the&lt;br /&gt;
flash.display::BitmapData, flash.display::Bitmap, and many other.&lt;br /&gt;
&lt;br /&gt;
Maybe we should see the total counts in one line, e.g&lt;br /&gt;
flash.display::BitmapData	0	0	3	3&lt;br /&gt;
instead of duplicates, e.g.&lt;br /&gt;
flash.display::BitmapData	0	0	2	2&lt;br /&gt;
flash.display::BitmapData	0	0	1	1&lt;br /&gt;
&lt;br /&gt;
?&lt;br /&gt;
&lt;br /&gt;
Attached compiled empty project with this issue.]]></description><category>General</category><pubDate>Wed, 21 Mar 2012 16:08:25 +0000</pubDate><guid>http://www.sociodox.com/TheMinerBugBase/view.php?id=30</guid><comments>http://www.sociodox.com/TheMinerBugBase/view.php?id=30#bugnotes</comments></item><item><title>0000008: TheMiner special skin or like so for mobile</title><author></author><link>http://www.sociodox.com/TheMinerBugBase/view.php?id=8</link><description><![CDATA[It's really, really hard to use TheMiner on the touch-enabled mobile devices - icons are too small =( Could be very cool to be able to make (or have) a skin with enlarged controls or have some special method\build for this reason.]]></description><category>General</category><pubDate>Wed, 21 Mar 2012 16:04:49 +0000</pubDate><guid>http://www.sociodox.com/TheMinerBugBase/view.php?id=8</guid><comments>http://www.sociodox.com/TheMinerBugBase/view.php?id=8#bugnotes</comments></item><item><title>0000024: Memory profiler skips objects collecting</title><author></author><link>http://www.sociodox.com/TheMinerBugBase/view.php?id=24</link><description><![CDATA[Looks like memory profiler doesn't notice when some objects are collected. Try to profile the GreenSock as3 speed test (&lt;a href=&quot;http://www.greensock.com/tweening-speed-test/&quot;&gt;http://www.greensock.com/tweening-speed-test/&lt;/a&gt; [&lt;a href=&quot;http://www.greensock.com/tweening-speed-test/&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]) with Tweening Engine = TweenLite selected.&lt;br /&gt;
&lt;br /&gt;
You'll see how fast PropTween &quot;current&quot; value is growing there. But in fact, it's not growing so much - it's collected with GC sometimes. Otherwise, we'll see the memory graph growing, but it is not.]]></description><category>General</category><pubDate>Wed, 21 Mar 2012 16:00:19 +0000</pubDate><guid>http://www.sociodox.com/TheMinerBugBase/view.php?id=24</guid><comments>http://www.sociodox.com/TheMinerBugBase/view.php?id=24#bugnotes</comments></item><item><title>0000033: Add and Del values in memory profiler row hint are differ from the same values at the rows (1.3.20)</title><author></author><link>http://www.sociodox.com/TheMinerBugBase/view.php?id=33</link><description><![CDATA[Please, check this screenshot out:&lt;br /&gt;
&lt;a href=&quot;http://j.mp/GFSKxL&quot;&gt;http://j.mp/GFSKxL&lt;/a&gt; [&lt;a href=&quot;http://j.mp/GFSKxL&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
Why the Add and Del values in hint are differ from the same values at the rows?]]></description><category>General</category><pubDate>Wed, 21 Mar 2012 15:57:03 +0000</pubDate><guid>http://www.sociodox.com/TheMinerBugBase/view.php?id=33</guid><comments>http://www.sociodox.com/TheMinerBugBase/view.php?id=33#bugnotes</comments></item><item><title>0000032: Overdraw and DisplayObject Life Cycle profilers count themselves (1.3.20)</title><author></author><link>http://www.sociodox.com/TheMinerBugBase/view.php?id=32</link><description><![CDATA[Overdraw profiler shows DisplayObjectOnStage: 2 and MaxDeph: 2 for absolutely empty project.&lt;br /&gt;
Looks like it counts itself? Could be nice to remove self-count or add note to the status bar about self DisplayObjects count.&lt;br /&gt;
Same to the DisplayObjectLifeCycle at the DisplayObject Life Cycle profiler, except it shows DisplayObjectOnStage:11 for the same empty project.]]></description><category>General</category><pubDate>Wed, 21 Mar 2012 15:53:08 +0000</pubDate><guid>http://www.sociodox.com/TheMinerBugBase/view.php?id=32</guid><comments>http://www.sociodox.com/TheMinerBugBase/view.php?id=32#bugnotes</comments></item><item><title>0000013: TheMiner collects self functions onto the Trace dump</title><author></author><link>http://www.sociodox.com/TheMinerBugBase/view.php?id=13</link><description><![CDATA[I found lines like:&lt;br /&gt;
&lt;br /&gt;
com.google.analytics.core::IdleTimer/onMouseMove() (project was without analytics, it's definitely from the TheMiner internal analytics) flash.events::MouseEvent@30fed01&lt;br /&gt;
&lt;br /&gt;
com.sociodox.theminer::TheMiner/_-0v()	flash.events::Event@c495219&lt;br /&gt;
&lt;br /&gt;
com.sociodox.theminer.ui::ToolTip$/set Visible()	false&lt;br /&gt;
&lt;br /&gt;
com.sociodox.theminer.ui.button::MenuButton/_-3V() flash.events::MouseEvent@30fed01&lt;br /&gt;
&lt;br /&gt;
inside of the Trace execution dump. Could be nice to skip self traces here to keep dump as clean as possible.]]></description><category>General</category><pubDate>Wed, 22 Feb 2012 16:09:24 +0000</pubDate><guid>http://www.sociodox.com/TheMinerBugBase/view.php?id=13</guid><comments>http://www.sociodox.com/TheMinerBugBase/view.php?id=13#bugnotes</comments></item><item><title>0000017: Crash might happen in the SWC version when trying to load the Version status from socodox website</title><author></author><link>http://www.sociodox.com/TheMinerBugBase/view.php?id=17</link><description><![CDATA[There is a Security loadPolicyFile error when loading the version file&lt;br /&gt;
Security.loadPolicyFile( ‘&lt;a href=&quot;http://another-server/crossdomain.xml&quot;&gt;http://another-server/crossdomain.xml&lt;/a&gt; [&lt;a href=&quot;http://another-server/crossdomain.xml&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]’ );]]></description><category>General</category><pubDate>Wed, 22 Feb 2012 09:49:22 +0000</pubDate><guid>http://www.sociodox.com/TheMinerBugBase/view.php?id=17</guid><comments>http://www.sociodox.com/TheMinerBugBase/view.php?id=17#bugnotes</comments></item><item><title>0000002: Could be nice to be able to change sorting direction</title><author></author><link>http://www.sociodox.com/TheMinerBugBase/view.php?id=2</link><description><![CDATA[I'd like to request two-direction sorting in any sorting-enabled column in profilers - not only from bigger to smaller, but also from smaller to bigger.]]></description><category>General</category><pubDate>Wed, 22 Feb 2012 08:09:49 +0000</pubDate><guid>http://www.sociodox.com/TheMinerBugBase/view.php?id=2</guid><comments>http://www.sociodox.com/TheMinerBugBase/view.php?id=2#bugnotes</comments></item><item><title>0000009: DisplayObject life cycle profiler colors fade speed</title><author></author><link>http://www.sociodox.com/TheMinerBugBase/view.php?id=9</link><description><![CDATA[Could be nice to have an option to set the DisplayObject life cycle &lt;br /&gt;
colors fade speed in frames (with default 1 frame) - to keep &lt;br /&gt;
DisplayObjects colored a bit longer. This could be a some kind of separate option in settings.]]></description><category>General</category><pubDate>Wed, 22 Feb 2012 06:44:20 +0000</pubDate><guid>http://www.sociodox.com/TheMinerBugBase/view.php?id=9</guid><comments>http://www.sociodox.com/TheMinerBugBase/view.php?id=9#bugnotes</comments></item><item><title>0000004: Mouse Listeners profiler ignores TouchEvents</title><author></author><link>http://www.sociodox.com/TheMinerBugBase/view.php?id=4</link><description><![CDATA[Looks like the Mouse Listeners profiler doesn't &quot;see&quot; the TouchEvents.]]></description><category>General</category><pubDate>Mon, 20 Feb 2012 16:01:24 +0000</pubDate><guid>http://www.sociodox.com/TheMinerBugBase/view.php?id=4</guid><comments>http://www.sociodox.com/TheMinerBugBase/view.php?id=4#bugnotes</comments></item><item><title>0000023: TheMiner buttons are very small in mobile</title><author></author><link>http://www.sociodox.com/TheMinerBugBase/view.php?id=23</link><description><![CDATA[TheMiner buttons are very small in mobile, like 2x2 millimeters.&lt;br /&gt;
It's impossible to navigate with taps... The buttons have to be dynamically adjusted based on screen resolution or display DPI.]]></description><category>General</category><pubDate>Mon, 20 Feb 2012 10:43:37 +0000</pubDate><guid>http://www.sociodox.com/TheMinerBugBase/view.php?id=23</guid><comments>http://www.sociodox.com/TheMinerBugBase/view.php?id=23#bugnotes</comments></item><item><title>0000010: High tutorial videos quality</title><author></author><link>http://www.sociodox.com/TheMinerBugBase/view.php?id=10</link><description><![CDATA[Tutorial videos are great, but I think they could be even &lt;br /&gt;
greater with:&lt;br /&gt;
&lt;br /&gt;
- higher video quality (e.g. 720p) - in some videos it's almost impossible to read text you're talking about(&lt;br /&gt;
&lt;br /&gt;
- louder voice without background noise. It's not easy to listen tutorials because of voise is much, much quieter then intro and I always should turn down volume at the start of tutorial and turn it up again after intro to hear voice.]]></description><category>General</category><pubDate>Mon, 20 Feb 2012 08:33:40 +0000</pubDate><guid>http://www.sociodox.com/TheMinerBugBase/view.php?id=10</guid><comments>http://www.sociodox.com/TheMinerBugBase/view.php?id=10#bugnotes</comments></item><item><title>0000020: Show info concerning GPU usage</title><author></author><link>http://www.sociodox.com/TheMinerBugBase/view.php?id=20</link><description><![CDATA[It would be nice if we could see if a flash is using the GPU while playing.&lt;br /&gt;
Interesting information:&lt;br /&gt;
- whether or not GPU acceleration is supported&lt;br /&gt;
-- if not, why not: hardware insufficient, a setting which disables GPU...&lt;br /&gt;
- if GPU acceleration is used, show which commands are being executed on the GPU&lt;br /&gt;
&lt;br /&gt;
=&gt; fake the LogGPU mm.cfg setting&lt;br /&gt;
&lt;br /&gt;
This request is in response to my comments here: &lt;a href=&quot;http://jpauclair.net/mm-cfg-secrets/#comment-2279&quot;&gt;http://jpauclair.net/mm-cfg-secrets/#comment-2279&lt;/a&gt; [&lt;a href=&quot;http://jpauclair.net/mm-cfg-secrets/#comment-2279&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]]]></description><category>General</category><pubDate>Sat, 18 Feb 2012 19:33:15 +0000</pubDate><guid>http://www.sociodox.com/TheMinerBugBase/view.php?id=20</guid><comments>http://www.sociodox.com/TheMinerBugBase/view.php?id=20#bugnotes</comments></item><item><title>0000028: Click on a menu and clicking on it again doesn't close the profiler</title><author></author><link>http://www.sociodox.com/TheMinerBugBase/view.php?id=28</link><description><![CDATA[Report has been done multiple time to close the profiler once open by re-clicking on the icon]]></description><category>General</category><pubDate>Tue, 07 Feb 2012 22:44:04 +0000</pubDate><guid>http://www.sociodox.com/TheMinerBugBase/view.php?id=28</guid><comments>http://www.sociodox.com/TheMinerBugBase/view.php?id=28#bugnotes</comments></item><item><title>0000031: Save ScreenCapture to file doesn't work in 1.3.20</title><author></author><link>http://www.sociodox.com/TheMinerBugBase/view.php?id=31</link><description><![CDATA[When I press this button, I just see tooltip &quot;Saved&quot;, but nothing happens.]]></description><category>General</category><pubDate>Mon, 30 Jan 2012 23:42:15 +0000</pubDate><guid>http://www.sociodox.com/TheMinerBugBase/view.php?id=31</guid><comments>http://www.sociodox.com/TheMinerBugBase/view.php?id=31#bugnotes</comments></item></channel></rss>
