Page 1 of 1

FlashProperty_Loop = false no effect when play a .swf file

Posted: Wed Feb 18, 2009 6:35 am
by binbui
Hi,

I have to view the demo sample source code Sample04_Translucency. It use f_in_box__form to play a flash .swf file. I want to play the flash 3 or 4 times not loop, I set FlashProperty_Loop = false but this isn't effect, the flash still play loop.
Is there any way to play a flash with a specified time, for example 3 or 4 time?

Thanks,
Bin

Re: FlashProperty_Loop = false no effect when play a .swf fi

Posted: Wed Feb 18, 2009 8:42 am
by Softanics
Thank you for your questions.

binbui wrote:I have to view the demo sample source code Sample04_Translucency. It use f_in_box__form to play a flash .swf file. I want to play the flash 3 or 4 times not loop, I set FlashProperty_Loop = false but this isn't effect, the flash still play loop.


Set FlashProperty_Loop = false after loading a movie:

Code: Select all

FlashPlayerForm.PutMovieFromStream(MovieStream);

FlashPlayerForm.FlashProperty_Loop = false;


binbui wrote:Is there any way to play a flash with a specified time, for example 3 or 4 time?


Unfortunaly, no such method or property.

Thank you.

Posted: Wed Feb 25, 2009 2:45 am
by binbui
Set FlashProperty_Loop = false after loading a movie, it done.

Thanks for your reply.

Posted: Wed Feb 25, 2009 9:38 am
by Softanics
Does it work well now, right?

Thank you.

Posted: Wed Feb 25, 2009 10:35 am
by binbui
Yes, it work well

Thanks