Re: [Flashcoders] How to avoid little blink while loading another movie ...

2008-09-03 Thread anuj sharma
Thanks I have figured that out by loading new movie just one frame before
finishing the first movie. Your idea will also work.
Thanks

On Wed, Sep 3, 2008 at 4:41 AM, S0 F1 <[EMAIL PROTECTED]> wrote:

> Can you load it behind another display object that is a copy (perhaps
> bitmap
> snapshot) of the main stage in question?
>
> This should fix it.
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] How to avoid little blink while loading another movie ...

2008-09-03 Thread S0 F1
Can you load it behind another display object that is a copy (perhaps bitmap
snapshot) of the main stage in question?

This should fix it.
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] How to avoid little blink while loading another movie

2008-09-02 Thread anuj sharma
Hi All
I am building a simple tween movie in which a line just goes from left to
right and as soon as it reaches the end point I need to call external swf
file and need to make the already running tween movie invisible. Everything
is working fine except when i reach at the end of the movie and calling
external swf file , it shows a little blink (for a fraction of second) to
signify that something external has been loaded. I do not want my
aaplication to show that it is loading some external files. Can i avoid that
fraction of second of delay (blink showing unloading and loading movies).
Here's my code which i used at the end of my first tween movie.

import fl.containers.UILoader;

mc_FirstLine.visible=false;
var myUILoader:UILoader=new UILoader();
myUILoader.height=23.6;
myUILoader.move(-17,-1);
myUILoader.source="SecondLine.swf";
addChild(myUILoader);

Please let me know if we can , any help and suggestions will be highly
appreciated.
Thanks
Anuj
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders