alexvoz / as3isolib

Automatically exported from code.google.com/p/as3isolib
0 stars 0 forks source link

EventDispatcherProxy.as Line 42 #4

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Running from flash CS4 rather than Flex.
2. Specificialy, running the bitmap test example.
3. Using packages rather than the fl.

What is the expected output? What do you see instead?

To see a grid with an iso box, that has a bitmap from a loaded png.

What version of the product are you using? On what operating system?

The test example upladed most recently as of 12/26/08.  Flash IDE cs4.

Please provide any additional information below.

The error seems random.  As if an event or function is sometimes run 
before its loaded.  If I compile 6 times in a row, 1 or 2 times it will 
not throw the error and load fine.

EventDispatcherProxy.as, Line 42
Source:
public class EventDispatcherProxy implements IEventDispatcher, 
IEventDispatcherProxy
Error:
1044: Interface method set proxyTarget in namespace 
eDpLib.events:IEventDispatcherProxy not implemented by class 
eDpLib.events:EventDispatcherProxy.

AND

Node.as Line 185, IsoDisplayObject.as Line 590, IsoView.as Line 195, 
IsoSprite.as Line 95, IsoPrimitive.as Line 364 and IsoPolygon.as Line 51.
Source:
return value.parent == this;
Warning: 3590: void used where a Boolean value was expected.  The 
expression will be type coerced to Boolean.

The last few can be fixed by casting Boolean() around the returns.  
Althought I dont know if it would produce any side effects.  However, im 
not sure about the interface error, my only guess is that something isnt 
run in time.

Original issue reported on code.google.com by cyberopt...@gmail.com on 27 Dec 2008 at 12:35

GoogleCodeExporter commented 9 years ago

Original comment by jwopitz on 27 Dec 2008 at 9:32

GoogleCodeExporter commented 9 years ago
issue was because CS4 has issues compiling pseudo-internal classes which
EventDispatcherProxy was using.  Details can be found here -
http://bugs.adobe.com/jira/browse/ASC-3588

Original comment by jwopitz on 8 Jan 2009 at 4:25