Ask a Question related to Macromedia Flash Actionscript, Design and Development.
-
rmletc #1
How to Play a MovieClip Backward via a Button
Hi all.
I have a movieclip that is a tween. It is a series of scrolling thumbnails
across the bottom. The movie clip runs when I mousover a hidden button. I want
to reverse that movieclip with another button. What is the best way to do that?
Thanks......
rmletc Guest
-
MovieClip wont play
Hi everyone, After instanciating a MovieClip from the library I try to have it play by calling mc.gotoAndPlay(1) and it wont start. If I call... -
function that should play a movieClip
Hello everybody, i'm new here, I tried to search in the NG for the answer but I didn't find nothing, so i'm going to ask it. I have a movieClip on... -
how to play a movieclip in reverse, help please
hello. could someone please tell me how to play a movieclip in reverse from the last frame to the first. thankyou. -
button movieclip action
Happy new year all, I have a newyear question. I have a movieclip on my main timline and a button which resides on the same timeline. When rolled... -
trying to get a button to work within a movieclip
Hi There -- I am trying to do something that I do not think is that complex, but I am frustrated! So, let's see if anyone can help me here! I... -
rmletc #2
How to Play a MovieClip Backward via a Button
Hi all.
I have a movieclip that is a tween. It is a series of scrolling thumbnails
across the bottom. The movie clip runs when I mousover a hidden button. I want
to reverse that movieclip with another button. What is the best way to do that?
Thanks......
rmletc Guest
-
PierreAlain #3
Re: How to Play a MovieClip Backward via a Button
something like that :
var OnRun = false;
var Backward = false;
onEnterFrame(){
if ( OnRun ){ // check if the movie is stopped or not
if ( Backward ){
prevframe();
}
else
{
nextframe();
}
}
}
now on buttons
PlayButton.on(press){
OnRun = true;
Backward = false;
}
PlayButton.on(release){
OnRun = false;
}
BackButton.on(press){
OnRun = true;
Backward = true;
}
BackButton.on(release){
OnRun = false;
}
--
Pierre Alain
[email]pie@lifnet.com[/email]
"rmletc" <webforumsuser@macromedia.com> a écrit dans le message de
news:c24hnl$prq$1@forums.macromedia.com...thumbnails> Hi all.
> I have a movieclip that is a tween. It is a series of scrollingwant> across the bottom. The movie clip runs when I mousover a hidden button. Ithat?> to reverse that movieclip with another button. What is the best way to do>
> Thanks......
>
>
>
PierreAlain Guest
-
Laiverd.COM #4
Re: How to Play a MovieClip Backward via a Button
[url]http://home.hccnet.nl/john.mulder/flash/playreverse.zip[/url]
--
----------------------------------------------------------------------------
-----------
RESOURCES
[url]http://groups.google.com/advanced_group_search?hl=en&as_ugroup=*flash[/url]
----------------------------------------------------------------------------
-----------
TUTORIALS at
[url]www.laiverd.com[/url]
Flash & PHP Emailform
Using textfiles in Flash
Laiverd.COM Guest
-
CesareRocchi #5
Re: How to Play a MovieClip Backward via a Button
yourButton.onPress = function(){
yourMC.onEnterFrame = function(){
yourMC.prevFrame();
}
}
yourButton.onRelease = function(){
delete yourMC.onEnterFrame;
}
Otherwise place a mirror in front of the monitor and gaze into it ...
HTH,
-c.
CesareRocchi Guest



Reply With Quote

