[Flashcoders] ExternalInterface.objectID Broken in IE 6?

2008-04-12 Thread Ed McManus
Hi Guys, Are there any known issues with the objectID property of ExternalInterface in IE 6? My object/embed tags have a unique name and ID, yet the actionscript objectID property is returning null. Any ideas? Thanks! Best, Ed McManus ___ Flashcoders

[Flashcoders] Re: ExternalInterface.objectID Broken in IE 6?

2008-04-12 Thread Ed McManus
Solved: we're using a loading script, a modified version of AC_RunActiveContent.js, which appears to be the culprit. On Fri, Apr 11, 2008 at 11:14 PM, Ed McManus [EMAIL PROTECTED] wrote: Hi Guys, Are there any known issues with the objectID property of ExternalInterface in IE 6? My

[Flashcoders] AS3 memory management - loaded content

2008-04-12 Thread dave matthews
hi All, Our app is designed to load Flash content examples and widgets from outside servers - anyone on the web can enter a URL.swf into the demo list and those .swf's are loaded as visitors view different areas of the site. Many of the examples we've experimented with setup processes

Re: [Flashcoders] Moock TileMap/TileSet/TileMapRenderer

2008-04-12 Thread Terry Riney
Hello, Appreciated the response to my post. When I implement new function: Instead of using Math.random() in the randomize function, you would set the ID to the row / column position: public function generate(numTiles:int):void { var numRows:int = getNumRows();

[Flashcoders] WebOrb vs AMFphp

2008-04-12 Thread artur
whats the verdict on this? is there a clear winner? thanks again -- *artur :.* - *www.artur.com* - [EMAIL PROTECTED] - *ph:646.797.3320* ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] WebOrb vs AMFphp

2008-04-12 Thread artur
shit..not sure why this security email keeps coming up.. maybe a virus.. sorry folks. time to reformat :-( *artur :.* - *www.artur.com* - [EMAIL PROTECTED] - *ph:646.797.3320* securitydisclosure wrote: Thank you for contacting Security Disclosure at eBay. If you have submitted an eBay -

Re: [Flashcoders] AS3 memory management - loaded content

2008-04-12 Thread Steven Sacks
Hi Dave, http://www.gskinner.com/blog/archives/2008/04/failure_to_unlo.html Grant Skinner recently blogged about this. Major issue. What's worse is Adobe really has no intention of fixing it. I believe Grant's blog post was an intention to put mucho pressure on Adobe by exposing how bad the

[Flashcoders] mm_jsapi.h and DLLs and JSFL

2008-04-12 Thread Keith
I'm trying to learn more about writting a DLL for JSFL I'm reading the Flash CS3 docs and it has an example C code with a mm_jsapi.h header file include in their sample code. -However, I cannot find this mm_jsapi.h file in the Adobe CS3 installation. -I searched Adobe's site looking for info

Re: [Flashcoders] Moock TileMap/TileSet/TileMapRenderer

2008-04-12 Thread John McCormack
Hi, There's a double error here. On this line ** numRows (15) should be numCols (10) as we work across the row of 10. However this is only workable if the number of tiles is numRows X numCols (10x15=150). public function generate(numTiles:int):void { var numRows:int = getNumRows();

Re: [Flashcoders] AS3 memory management - loaded content

2008-04-12 Thread Steven Sacks
Dave, One thing, though. The documentation states that you absolutely must remove ALL references inside the swf, including timers, enter frame listeners, stop playback of sounds, etc., basically do a complete cleanup, before you can even remove a loaded swf. The issue that Grant brings up