[Flashcoders] AS3 is it possbile to show a movieclip before its all frames loaded

2011-06-13 Thread B Shankar PEDANA
Hi, Is it possible to show a movieclip before all its frames(say 100 frames) or when its first frame is loaded? Thanks Shankar ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

RE: [Flashcoders] AS3 is it possbile to show a movieclip before its all frames loaded

2011-06-13 Thread Cor
Does this help you: http://www.actionscript.org/forums/showthread.php3?t=151850 regards Cor -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of B Shankar PEDANA Sent: maandag 13 juni 2011 10:36 To:

Re: [Flashcoders] Strange Button Behavior

2011-06-13 Thread Glen Pike
Hmm, an exe should be exempt from the local vs network restrictions, but maybe something else is failing. Have you tried tracing the error? I vaguely rememeber having problems with _blank, etc. in the past. See if it works without those? Here are some links I found that may help.

Re: [Flashcoders] AS3 is it possbile to show a movieclip before its all frames loaded

2011-06-13 Thread Henrik Andersson
B Shankar PEDANA skriver: Hi, Is it possible to show a movieclip before all its frames(say 100 frames) or when its first frame is loaded? That is the default, flash will start rendering a swf file as soon as it can, only pausing if it gets ahead of itself. The Event.INIT event will tell

[Flashcoders] AS3 exploding and reassemble bitmap

2011-06-13 Thread Eric E. Dolecki
Hey all - I am looking for a class that basically explodes a bitmap (each pixel) and then reassembles it at another x,y location. I've been googling but have come up empty so far. Any ideas? Thanks, Eric Google Voice: (508) 656-0622 Twitter: eric_dolecki XBoxLive: edolecki PSN:

RE: [Flashcoders] AS3 exploding and reassemble bitmap

2011-06-13 Thread Cor
Not sure, but look at: www.greensock.com ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] AS3 exploding and reassemble bitmap

2011-06-13 Thread Eric E. Dolecki
I don't need an animation package, a class that cuts a displayObject up, disassembles it on a pixel-level basis, explodes it out, and then reassembles the pixels of the displayObject in a different location. If I do this myself it's going to take a lot of time, looking for something out there that

RE: [Flashcoders] AS3 exploding and reassemble bitmap

2011-06-13 Thread Cor
Lee Brimelow did something with that: http://www.gotoandlearn.com/play.php?id=57 http://www.gotoandlearn.com/play?id=107 HTH Cor -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Eric E. Dolecki Sent:

RE: [Flashcoders] Strange Button Behavior

2011-06-13 Thread Steve Abaffy
It is not an exe. I am accessing the swf file via webpage. I tried adding Security.LOCAL_TRUSTED; to the code but that didn't work either. Tried making it a exe file but then it won't run from the CD because the link to it is via a web page and the browser objects as the exe file does not have a

[Flashcoders] AS3 load and unload swf from different movies

2011-06-13 Thread Bassam M
hi guys I'm try to move from AS2 to AS3 I did some work with AS3 it seems to be easy anyway i have problem with load and unload swf, in AS2 I use to use loadMovie(movie.swf,level) then from the movie.swf I can use back button to load the main movie again or unload the movie if the level more the

Re: [Flashcoders] AS3 load and unload swf from different movies

2011-06-13 Thread Ben Sand
Looked into this a while ago. Bottom line was you can never guarantee an unload, so repeated load/unload always have the potential for memory leaks. In the case of Flex apps it was never possible to completely clear them from memory. Our solution was to load other swfs in another window, though

Re: [Flashcoders] Strange Button Behavior

2011-06-13 Thread Ben Sand
Pretty sure you can only do network access from local apps with air. Adding trusted will just be ignored by the flash player, it'll (silently) refuse to attempt network connections with anything that didn't originate from the web. And vice versa with manipulating local files On Tuesday, 14 June

Re: [Flashcoders] AS3 load and unload swf from different movies

2011-06-13 Thread Bassam M
Hi Ben pls give me the link let me go through it may help, I also had problem with memory when i try to load movie into another because I still didn't get the logic of AS3 for load and unload. On Tue, Jun 14, 2011 at 1:32 AM, Ben Sand b...@bensand.com wrote: Looked into this a while ago.

Re: [Flashcoders] AS3 load and unload swf from different movies

2011-06-13 Thread Ben Sand
While the below shows it is technically unfeasible to completely unload a flex app, that doesn't mean you shouldn't try loading and unloading. It just means if you can't limit the total number of times that it is done, you have to be prepared for the flash player and/or browser to crash / lock up.