Forward And Reverse Play
I have a timeline with six images which have the effect of travelling in a loop from foreground and then into the distance. I want to have 2 buttons one for forward movement and one for reverse movement. I would like to use an on roll over event to trigger this movement. "Next frame" and "play" works fine in the forward direction. However, "previous frame" stops after only one frame and has to be "roll out" "roll over" repeatedly to make it move backwards. Is it possible to get a timeline to play backwards with actionscript or is it necessary to duplicate the timeline and reverse the frame order, jumping between the two.
If it isn't possible I think it would be a welcome addition to future flash releases.
Thanks for you wisdom.
Manson
FlashKit > Flash Help > Flash ActionScript
Posted on: 05-01-2002, 02:48 PM
View Complete Forum Thread with Replies
Sponsored Links:
- Having Troubles Creating Reverse Play And Forward Play =/
- Play Animation Forward/reverse Between Specified Frames?
- Play Forward/reverse & Stop - Newb Question
- Playing Music Via "stop - Play - Reverse - Forward Buttons"
- Going Forward... In Reverse
- Forward And Reverse Controll HELP
- Forward/Reverse Control
- [F8] Fast Forward And Reverse
- Forward And Reverse Timeline?
- Forward Reverse Effect
- Forward Reverse Effect
- How Do You.... (Forward/reverse On Mouse Track)
- Simple Forward And Reverse MC Buttons
- Flash Player 9 - Forward, Reverse Using Keyboard
- Turntable Cube - Reverse And Forward Problem
- Fast Forward, Rewind (reverse) Video
- Netstream / Seek() Fast Forward And Reverse
- Playing Frames Forward And Reverse Triggered By Buttons
- Several Questions - Delay, Swap Depth, And Forward/Reverse Button
- Play A MC In Reverse ... Or Just Simply How To Play Movie Backwords?
- HOW TO PLAY A MOVIE CLIP IN REVERSE AND PLAY ANOTHER SIMULTANEOUSLY
- [MX04] Click A Button Once To Play, Then Again To Play In Reverse
- Timeline - Play/reverse-play Control
- MC If-then Play Forward-back..........?
- Play Forward Then Backward
- Buttons That Play Forward And Backwards ?
- How Do I Play A Mc In The Timeline Forward And Backwards
- How To Play Movie Forward And Back Continuously
- Forward/Bacward Movie Play Button
- Play/Pause, Forward, And Back Problem
- Play Mc Forward And Backward Using Classes And Set Interval
- Play A Timeline Backwards At The Forward Framerate
- Play Forward & Backward True Timeline
- [CS3] : Fast-forward Play For Movie Clip
- [CS3][AS2] MovieClip To Play And Stop From .onEnterFrame Forward
- Play Back Or Forward To Frame Label
- Attach, Play, Pause, Forward Sound From Array (is It Possible)
- On Release Play Forward Or Backward To Frame Label
- Play Moviclip Automatic Forward And Backward In A Loop
- How Do You Make A Play, Pause, Forward And Back Buttons?
- Play Timeline Backward And Forward Till Some Frame
- Play In Reverse?
- Play Reverse
- Reverse Play
- Play In Reverse
- Play In Reverse
- Play In Reverse
- Reverse Play
- Reverse Play
- Reverse Play
- HELP Reverse Play PLEASE HELP ME
Having Troubles Creating Reverse Play And Forward Play =/
So i have looked at a lot of posts tryna get insight on how to do this but so far nothing . . . . I have an animation that i created in after effects, nothing to hard, just some icons going around in circles. so far it just plays in a continuos loop clockwise. what i would like it to do is when i hover over the left side of the SWF it reverses and plays (counter clockwise), the more i move to the left the faster it plays. . . . if i move to the right it plays clockwise, the more i move to the right the faster it plays. . . If i center my mouse on the swf is slows to a stop and i can select the icons to load the menu item. probably an external swf loaded into the main swf. . . Can someone guide me? I'd greatly appreciate it. I uploaded my FLA so you can check it out if you'd like. again, thanks in advance for all your help!
joseph
http://architectproductions.com/projects/draft2.fla
View Replies !
View Related
Play Animation Forward/reverse Between Specified Frames?
Hi!
I've just started out with Flash as I need to put together a front page menu for a website, which has a logo a little like a clock. The idea is that the 'minute hand' moves around to point at whichever option/button the user is hovering their pointer over....
... I've got a tweened animation of the 'minute hand' moving between all the options that it would have to move between, with a keyframe at each button that it would have to stop at if the user were hovering their mouse over it.
What I want it to do is move the 'hand' between buttons - maybe backwards, maybe forwards, maybe from frame 1 of the anim to the 30th, maybe from the 20th back to the 10th, depending on which button it is pointing to (the last button the mouse hovered over) and which button the user is now pointing at.
I'm hoping that there's some kind of variable that'll give me the current frame of the animation, and a command I can use to play from that frame to a desired frame (which I can execute from ActionScript attached to that relevant button) whether that be forwards or backwards.
Is this possible? If so, how? In theory it should be really simple to do, but I just can't seem to find the commands/access the anim's current frame value etc. I have experience of programming, but this is my first time with ActionScript/Flash!
ANY help appreciated!!
View Replies !
View Related
Play Forward/reverse & Stop - Newb Question
Hi All,
First of all, great site. Lots of helpfull people on here.
I wonder if any anyone can help me. I am trying to create a menu that scrolls across the page, using a mask layer so only one heading at a time is visble. There are two buttons that control the scrolling of the menu left and right. At first i had a problem with the reversing of the Menu MC but solved that by searching this site.
The MC is 7 seperate headings. The idea is that once you hit the fordward/reverse buttons it scrolls to the next heading and stops. Sadly all i get after hitting the buttons is all 7 headings scroll past until the end (or start!) of the MC. I need to beable to get the heading to stop at the correct position until one of the directional buttons are hit again. Any ideas because i'm totally stuck!
I'm using Flash MX. I really am a numpty when it comes to AS so be gentle! And thanks to anyone that takes time out to check out this post.
This is the AS for the MC itself:
onClipEvent (load) {
stop();
var speed = 1;
var direction;
}
onClipEvent (enterFrame) {
if (direction == "ff") {
gotoAndStop(_currentframe+speed);
} else if (direction == "rr") {
gotoAndStop(_currentframe-speed);
}
}
And the forward button:
on (release) {
_root.MenuMC.direction = "ff";
}
And the back/reverse button:
on (release) {
_root.MenuMC.direction = "rr";
}
Cheers again!
Markio.
View Replies !
View Related
Playing Music Via "stop - Play - Reverse - Forward Buttons"
Hello everyone,
I am working on a media player, and have received help from a member on here with how to set it up to have files play via clicking on a button in the flash file.
The problem I am having now is that I need to have the "stop" - "play" - "reverse" - "forward" buttons all work for each file that is currently playing. There is 4 audio files that can be clicked and played, but I am stuck on how to get the stop/play/fwd/rev buttons to work for each file as they are playing in the media player.
Here is the actionscript for the file.
Code:
play_mc.onRelease = function(){
myMedia.setMedia("URL of the file", MP3)
}
my_media2_mc.onRelease = function(){
myMedia.setMedia("URL of the file", MP3)
}
my-media3_mc.onRelease = function(){
myMedia.setMedia("URL of the file", MP3)
}
mymedia_ap_mc.onRelease = function(){
myMedia.setMedia("URL of the file", MP3)
}
I am sorry if this is such a newbie question, but I am taking everything I learn and applying it to projects and hoping that I can soon be able to give advice to others on this board.
Thanks in advance to anyone who can give me some insight.
Thanks.
- Robert DeVore
Cre8tiv Vision co-CEO / Lead Designer
View Replies !
View Related
Going Forward... In Reverse
Greetings,
This is my first post so pardon the ignorance...
I've seen this posted all over the place but nothing seems to work. I need to have a BUTTON play a segment of time in REVERSE.
(more specifically) i have 6 pictures i want to be able to scroll from right to left when the forward button is pressed and from left to right when the reverse button is pressed.
My forward button goes 4 frames and stops on the 1st frame of the next picture tween. This looks and works great. My back button goes back 4 frames to the previous picture but it does it INSTANTANEOUSLY. I would like the reverse motion to be the same rate at the forward motion.
Any ideas?
View Replies !
View Related
Forward And Reverse Controll HELP
Hello, thanks ahead for all the help. What I’m trying to accomplish here is control of a movie clip. Take a look at www.kingsasylum.com , do you notice that scroll menu on the bottom left. What I would like to see is when you press a link on the menu to the right, on release the scroll box will either scroll forward or backwards depending on what link is pressed, and stop appropriately. Thanks guys! Flashkit rocks!
View Replies !
View Related
Forward/Reverse Control
OK I have two sites in which I need to do this:
Site #1
I have a flash file that has an arrow pointing left and an arrow pointing right. I need them to control a MC so that if you mouse over the left arrow it plays the MC backwards and it stops when you mouse out. I also need it to play forward when you mouse over the right arrow and also stop when you mouse out.
Site #2
I need to do the same thing only with a slider rather than arrows. This will go frame by frame stopping each time the slider is drag in whichever direction.
If someone could help me with this it would be greatly appreciated!
-= Bill =-
View Replies !
View Related
[F8] Fast Forward And Reverse
I am using this code for my ff and rev buttons. I don't like them but its all I have for now. I know there is a better way. If I press the ff button the video needs to advance by 1-2 seconds. If the user press the revers button it need to do the same but move back 1-2 seconds. I am using the FLVPlayer Component so doing ns.seek will not work.
my current code
Code:
//Rewind
rewind_btn.onRelease = function (){
myPlayer.playheadTime = 0;
}
//Forward
forward_btn.onPress = function (){
myPlayer.playheadTime = myPlayer.totalTime-1; }
any help would be appreciated
View Replies !
View Related
Forward And Reverse Timeline?
Hey im using flash CS3 with actionscript 2.0. what i want to create is a column for an online magazine, the column will display a list of content, this list will be longer than it appears and have a "next" and "prev" buttons located at the bottom. i can set it up so than when next is clicked the content shifts and displays more, the problem is, what do i do about the "prev" button? i cant make the timeline play in reverse can i? i have a test FLA at www.waffleconezone.com/test.html ..
thanks!
View Replies !
View Related
Forward Reverse Effect
i have a video in the center of my project, at the bottom are 2 bottons (forward and reverse)
when you roll over the 'forward' button i want to play the video one frame at a time forwards, and vice versa for the reverse. could someone help me with the code please.
thank you.
View Replies !
View Related
Forward Reverse Effect
i have a video in the center of my project, at the bottom are 2 bottons (forward and reverse)
when you roll over the 'forward' button i want to play the video one frame at a time forwards, and vice versa for the reverse. could someone help me with the code please.
thank you.
View Replies !
View Related
Simple Forward And Reverse MC Buttons
I would like to make a very simple slider effect.
I have a movie clip with several images on it and I want two buttons to control movement left and right. (Or in this case forward and backwards.)
When you click the right button I want the move clip to play forwards and when you click the left button I want the movie clip to play backwards.
Is this possible?
Could someoone plese help me this action script.
Thanks
Gee
View Replies !
View Related
Flash Player 9 - Forward, Reverse Using Keyboard
Okay, this question is just about Flash Player 9, and not any programming or anything. It seems to me that I recall previous versions would allow you to advance one frame, or go back one frame. I remember watching a Jib-Jab animation and studying it by advancing a frame at a time, and I did it with the keyboard somehow. Flash player 9 will still do the single frame advance or retreat, using the right-click context menu. First right-click and uncheck "Play" then right-click, choose "Forward" or "Rewind" to go forward or back one frame at a time.
But like I said, I remember there being a keyboard equivalent to this. I don't remember what it was, but further research (google, ha.) seemed to indicate that it was the comma and period keys. However, I tried those, and a whole bunch of other keys, and nothing seems to work. Does anyone know what those keys are, or even if there is such a thing in Flash Player 9?
Thanks in advance (no pun intended).
View Replies !
View Related
Turntable Cube - Reverse And Forward Problem
Hello everyone
How can I fix this script.
I have a rendered 37 frames turntable cube movieclip. And two buttons. Scenario is like that; When we release the right button movie must play forward normally and stop at 14. and 32. frames. When we release the left button movie play backward and stop 14. and 32. frames again. And this behaviour must be endless (turntable) ( at 37. frame it must turn to first frame if released right button or at first frame it must turn to 37 if released left button).
I tried to write a script but movie couldn't stop at 14. and 32. frames or it's not turntable...
My script is in attachment.
Please help me..
View Replies !
View Related
Fast Forward, Rewind (reverse) Video
hi,
i have this video... approximately 60 second... i can make the video to play by using gotoandplay().. if i want to fast forward or rewind the video, how can it be done.
i don't want fast forward or rewind thru slider... i want it like FF or rewind like VHS tape. most likely involve buttons to enable it.
tq
View Replies !
View Related
Netstream / Seek() Fast Forward And Reverse
I am trying to use seek(); to fast forward and reverse my flv. It works if I keep clicking the button to skip the video forward, but how can I make it so I just have to hold down the button to repeats the ns.seek(ns.time + 1) ?
forwardButton.onPress = function() {
ns.seek(ns.time + 1)
}
reverseButton.onPress = function() {
ns.seek(ns.time - 1)
}
View Replies !
View Related
Several Questions - Delay, Swap Depth, And Forward/Reverse Button
I got several questions, so instead of posting 3 seperate posts and taking up space I'll roll it all in one. Thanks in advance.
Delay
I have a slide show that plays, and it processes the do..while statement to quickly causing flash to crash. All I need is a simple delay. I've noticed setTimeout, but I really don't understand how to use it. Anyone know where to get some documentation on it?
Swap Depth
The slide show I have can also be played 1 frame at a time. I want the picture to swap depths when the user hovers over. However, the slide show is within 2 loaded .swf files. How can I get it to swap depths with the _root or is this even possible?
Forward/Reverse
I have a .flv file and I can play and pause the file using custom buttons that I've made in my swf. How can I get forward/reverse functions?
View Replies !
View Related
Play A MC In Reverse ... Or Just Simply How To Play Movie Backwords?
Ok. I've got more problems, now it involves Flash 4. I've got movie clip we'll call "the rock" well, I have a button to play "the rock" forward - that's easy - however, I want a back button to play the clip backwards, a "rewind" type effect ...
am I explaining well? if now feel free to email me doo_wrong@yahoo.com thanks for your help.
Ken
(an example of what I'm looking for can be found at http://www.ccmusic.com - there's a flash movie on the right with posters or something in it, when you RollOver and image it goes to it)
View Replies !
View Related
[MX04] Click A Button Once To Play, Then Again To Play In Reverse
Alright, so I've got this MC that is set up to play 2 other Movie clips upon being clicked, and what I would like to have happen is; upon clicking this MC again, these 2 other movie clips will being playing in reverse, and if clicked again will play forward, and so on ad infinitum.
I've attempted to do this by having this code in the first frame of the "button" MC, in a separate actions layer.
PHP Code:
stop();
this.onRelease = function() {
gotoAndPlay(2);
this._parent.wing1.play();
this._parent.wing2.play();
};
And this code on the second frame.
PHP Code:
stop();
this.onRelease = function() {
gotoAndPlay(1);
this._parent.wing1.prevFrame();
this._parent.wing2.prevFrame();
};
As of right now, this will simply play the two movie clips upon clicking, stop them and reverse them a single frame, when clicked a second time, then begin playing them again from that point if clicked a third time.
Once the two MCs finish reach their final frames, the button does nothing.
Any help would be appreciated.
View Replies !
View Related
Timeline - Play/reverse-play Control
Hi everyone!
I've been searching for help in other sites but got some issues cause I don't know the function name I must search.
What I need its a way to control my timeline forward and rewind.
To make it easy to explain I will make a example:
Imagine that you have a movie (cars crossing a street - with trucks and buses too).
Sometimes there is just cars on the street, sometimes just trucks.
I should paste this movie into my timeline(like image sequence), in the background of my application.
In other layer will be informations, in this example, about trucks and cars.
Till this point ok. But I need to make de movie go to the frame that i choose to be the image of the movie that only have cars. Ok... this is in frame 15 of the movie. Then I click a button and go to show trucks info. I click and go to frame 30... at this point ok too. But now I click again to see about cars. Its in frame 15 and I don't want to "JUMP" (like gotoandstop)... I want the movie rewinds (in the speed that it plays) till i get frame 15.
How do I control the timeline like this?
(There will be at least 6 points in this movie that i want to stop by. And this movie begins stopped.)
Thx for any help! Cya!
View Replies !
View Related
MC If-then Play Forward-back..........?
Brand new to actionscript (scripting period), but trying to create my first. Haven't found quite the right answer on the existing boards, so I'm posting:
- I have a movie clip named "test", 60 frames in length.
- I have created 6 buttons, each to progress or digress the movie 10 frames (depending on rollover or rollout)
- Button 1 needs to do the following, and then I'll figure out the other 5 from there:
onRollover
-if target "test" is at frame 10 or higher, then play backward (from current frame) to frame 10 and stop
-if target "test" is at frame 10 or lower, then play forward (from current frame) to frame 10 and stop
onRollout
-play target "test" backward (from current frame) to frame 1 and stop
Any help is good help... thanks.
View Replies !
View Related
Play Forward Then Backward
Hi, please anybody help.
I need to create an small SWF flash video. Everything is ok, but I just want that when the video come to end then begin to play backward and then foreward and then backward, etc...
I need this kind of loop.
View Replies !
View Related
How Do I Play A Mc In The Timeline Forward And Backwards
I am trying to play a movieclip foward and backwards in the timeline. On my stage will be a movie clip and two buttons (foward and back). When You push the foward button it will make the time line move foward and when you push the back button it will move the timeline backwards. I can only get the time line to move one frame. I dont know how to make the timeline keep moving when the button is held down. Any Help would be great thanks.
View Replies !
View Related
Forward/Bacward Movie Play Button
Flash has a way of making me feel tremendously stupid. So appropriately, here's a tremedously stupid question:
I'm trying desperately to understand variables beyond "a variable is a container for data." I'm trying to get them to work in the real world, and haven't progressed a bit.
Here's a ridiculously simple code problem I'm working with.
I have a movie clip in the library which runs forward. I have a forward button with the event handler "onPress", which starts the movie. "OnRelease" stops the movie wherever it is. Simple enough...
...NOW, the next thing I want to do is have a button that does the same for a "back" button. It will play backwards on with the onPress handler and stop wherever it is with the onRelease handler.
I'm including the FLA with this post.
Thanks in advance, all you smarter-than-me folks!
View Replies !
View Related
Play/Pause, Forward, And Back Problem
I am making a sales demo for my company. Inside I have a movie clip that stops after each animation of about 20 frames. So the time line stops on 20, 40, 60, etc. The forward and back buttons allow the user to move forward to the next sequence of frames or back to the last sequence of frames. The Play/Pause button simply stops the movie when clicked, then resumes if clicked again.
Now here is my problem. My company wants to be able to either play the movie all the way through without any stops OR have the movie stop at the end of each sequence of frames, ie stop on 20 40 60, so they can discuss the contents. The only way I can think to do this is to duplicate the movie clip with a new name, take out all the stops, and make a "Play All" button that targets the duplicated clip instead of the original, allowng it to play without any stops.
I would really like to avoid having to duplicate the clip. Is there a way to ignore the stops (which I need for the forward and back buttons to work correctly) when playng all the way through? If that's not possible, is there another way?
Any help is greatly appreciated.
View Replies !
View Related
Play Mc Forward And Backward Using Classes And Set Interval
Hey guys I posted a question a couple of weeks ago and couldn't find that post. I wanted to show ya'll a great peice of code you helped me make. I can fade any mc with this code. I have also made it as a class. my next step is to make a button subclass as well as a transition sub class. If you want to see a working example using set interval here is one.
Thanks again I couldn't have done this without Flash Kit
Sincerely,
Quince wyss
Peak Studios - web design and Development
I have tried to attach the zip file if it didn't work here is a link where I posted it.fader.zip
View Replies !
View Related
Play A Timeline Backwards At The Forward Framerate
I have a script that successfully plays my .swf backwards. Unfortunately, the backwards speed is twice as fast as the forward speed. Is there any way I can change this code so that the reverse plays at the same speed as the forward play. The file is here and the code is below:
PHP Code:
playBttn.onRelease = function() {
play();
};
RevBttn.onRelease = function() {
while (_currentframe>1) {
prevFrame();
}
};
Thanks,
View Replies !
View Related
Play Forward & Backward True Timeline
I made an animation in After Effects and rendered it into a .jpg sequence. With flash i want to make this animation interactive. Every frame holds a jpg file.
I want to have 3 buttons (1 in the top, 1 in the middle and 1in the bottom). These buttons control if the movie plays forward, backwards or stops. So far this works but the stop and the change of direction is too sudden (direct), i want this with a smooth transition.
Someone recommended me to use tween but as for as i know this is only affecting the movement of a movieclip?
Code i have so far:
Code:
stop();
var kant:String = "forward";
forward_btn.onRollOver = function(){
this._parent.direction = "forward";
}
rewind_btn.onRollOver = function(){
this._parent.direction = "rewind";
}
stop_btn.onRollOver = function() {
this._parent.direction = "stop" ;
}
this.animation.onEnterFrame = function(){
if(direction == "forward"){
this.nextFrame();
} else if(direction == "rewind"){
this.prevFrame();
} else if(direction == "stop") {
this.stop();
}
}
View Replies !
View Related
[CS3] : Fast-forward Play For Movie Clip
Hi,
I have embedded a short movie clip (called 'clip') into flash (not as an flv),
and added the following code to make it run in fast-forward mode. It works fine in the beggining, but crashes after a minute or so ! Any idea why ?
package {
import flash.display.Sprite;
import flash.display.MovieClip;
import flash.events.Event;
public class SmartFastForward extends Sprite {
public function SmartFastForward() {
addEventListener(Event.ENTER_FRAME, onEnterFrame);
}
private function onEnterFrame(event:Event) {
if (clip.currentFrame < clip.totalFrames-1)
clip.gotoAndStop (clip.currentFrame + 2);
else
clip.gotoAndStop(1);
}
}
}
Thanks !
View Replies !
View Related
Play Back Or Forward To Frame Label
I am trying to create a site that has six different sections. Each section has a background that zooms in and fades into the next image. For example if the user clicked the button for image 3 it would animate through image 1, then 2 and stop on image 3. If the user were to then hit the link for image 1 the animation would play backwards through to the first image passing image 2 along the way. Of course if the user hit image 6 from image 1 it would play through all the transitions in between.
I could do a hack (no actionscript) version of this but it would take 36 seperate animations which seems like overkill. What I need is to be able to play through to specific points in the timeline to my destination. In a perfect world the speed of animation would increase the longer the distance, Say 1 to 6 would play fast, but 1 - 2 would play slow ,but for now just navigating through the timeline would be a great step forward.
if there was something like on (release) {playTo("image3"); }
my life would be easy, but playTo doesn't exist.
This post is for MX 2004:
View Replies !
View Related
Attach, Play, Pause, Forward Sound From Array (is It Possible)
Scenario: Desktop environment (not web)
I have a (draggable) 'player' with (forward, reverse, pause and play) controls - for MCs (each playing on an individual frame) on the main timeline. Each MC is basically a stand alone page and has sound (exported from the library) that needs to attach to its accompanying MC as the user clicks (the player) from one MC (frame) to the next.
What Im trying to accomplish is to 'uniquely' and time/space savingly write/organize the code. Im currently not getting the sound to attach in its current state. If you could take a look at my code from a theoretical and technical standpoint and offer some suggestions to getting it to work, Id be extremely grateful.
Thanks for your time concerning my issue.
Sincerely,
Geoff
Code:
/////////////////////////////////////////////////
i=1;
function timeme (){
now = new Date();
var hours = now.getHours();
var minutes = now.getMinutes();
var seconds = now.getSeconds();
_root["nowtime"+i] = (Number(hours)*3600)+(Number(minutes)*60)+seconds;
_root.newstarttime = _root["nowtime"+i] - _root.nowtime1;
i++;
}
/////////////////////////////////////////////////
//mySound1 = new Sound();
//mySound1.attachSound("Collection");
//mySound2 = new Sound();
//mySound2.attachSound("Intro");
//mySound3 = new Sound();
//mySound3.attachSound("Save");
/////////////////////////////////////////////////
mySound = new Array();
mySound[1] = "Collection";
mySound[2] = "Intro";
mySound[3] = "Save";
/////////////////////////////////////////////////
for (amS=1; amS<4; amS++) {
mySound[amS]=new Sound();
mySound[amS].attachSound(mySound[amS]);
}
/////////////////////////////////////////////////
timeme();
/////////////////////////////////////////////////
for (mS=1; mS<4; mS++) {
//mySound1.start();
playerMC.playMC.onPress = function(){
mySound[mS]stop();
mySound[mS].start(_root.newstarttime);
}
playerMC.pauseMC.onPress = function(){
mySound1.stop();
timeme();
}
playerMC.forwardMC.onPress = function(){
mySound[mS].stop();
mySound[mS++].start(_root.newstarttime);
}
}
/////////////////////////////////////////////////
View Replies !
View Related
On Release Play Forward Or Backward To Frame Label
I am trying to create a site that has six different sections. Each section has a background that zooms in and fades into the next image. For example if the user clicked the button for image 3 it would animate through image 1, then 2 and stop on image 3. If the user were to then hit the link for image 1 the animation would play backwards through to the first image passing image 2 along the way. Of course if the user hit image 6 from image 1 it would play through all the transitions in between.
I could do a hack (no actionscript) version of this but it would take 36 seperate animations which seems like overkill. What I need is to be able to play through to specific points in the timeline to my destination. In a perfect world the speed of animation would increase the longer the distance, Say 1 to 6 would play fast, but 1 - 2 would play slow ,but for now just navigating through the timeline would be a great step forward.
if there was something like on (release) {playTo("image3"); }
my life would be easy, but playTo doesn't exist.
This post is for MX 2004:
View Replies !
View Related
Play Moviclip Automatic Forward And Backward In A Loop
hey there =)
ive import a quicktime movie with clouds
http://nbeyond.nb.ohost.de/
everythings fine so far! but it dont looks very nice when the movie jumps back to the first frame after it´s finished
so i want that it plays the movie backward to the first frame and than play again to the finish! on the finish back again and so on
so that it´s always a smooth movement in the sky
plz someone can help me?!
View Replies !
View Related
Play In Reverse?
Hey FlashFriends,
I have a button with a mouseover event of on press play, on release stop. I have another button that i want to attribute the same action to, but the play to play reverse.
Possible?
Thanks for any help....
Jonathan
View Replies !
View Related
Reverse Play
I have a timeline with six images which have the effect of travelling in a loop from foreground and then into the distance. I want to have 2 buttons one for forward movement and one for reverse movement. I would like to use an on roll over event to trigger this movement. "Next frame" and "play" works fine in the forward direction. However, "previous frame" stops after only one frame and has to be "roll out" "roll over" repeatedly to make it move backwards. Is it possible to get a timeline to play backwards with actionscript or is it necessary to duplicate the timeline and reverse the frame order, jumping between the two.
If it isn't possible I think it would be a welcome addition to future flash releases.
Thanks for you wisdom.
Manson
View Replies !
View Related
Play In Reverse
when I push a right arrow (button) an image should tween from say frame 10 to 15. No problem i Say go to and play frame 10 and use a stop action at 15. But when I push a left arrow I should play from frame 15 to 10. in reverse.How can I make this happen. Thanks.
View Replies !
View Related
Play In Reverse
when I push a right arrow (button) an image should tween from say frame 10 to 15. No problem i Say go to and play frame 10 and use a stop action at 15. But when I push a left arrow I should play from frame 15 to 10. in reverse.How can I make this happen. I got the answer in an attachment in php a liddle bit earlier. My mac does not know how to handle this files. Can anybody explain how itworks detaild or give me a .fla file to download. Thanks
View Replies !
View Related
Reverse Play
i just want a movie clip to play in reverse.
there are 2 buttons controlling the movie clip, called "story".
first button:
on (rollOver) {
_root.story.play();
}
on (rollOut) {
_root.story.stop();
}
other button:
on (rollOver) {
_root.story.gotoAndStop(_currentFrame - 3);
}
on (rollOut) {
_root.story.stop();
}
how can i just get the movie clip to play in reverse?
any information would be greatly appriciated.
thanks
View Replies !
View Related
Reverse Play
i just want a movie clip to play in reverse.
there are 2 buttons controlling the movie clip, called "story".
first button:
on (rollOver) {
_root.story.play();
}
on (rollOut) {
_root.story.stop();
}
other button:
on (rollOver) {
_root.story.gotoAndStop(_currentFrame - 3);
}
on (rollOut) {
_root.story.stop();
}
how can i just get the movie clip to play in reverse?
any information would be greatly appriciated.
thanks
View Replies !
View Related
HELP Reverse Play PLEASE HELP ME
I have a bunch of images that cycle through. I want to be able to press a "play" button to make them go forward to the next image and stop then press the "back" button and play in reverse to the last image and stop.
What kind of code do I need to do this?
PLEASE HELP ME!
View Replies !
View Related
|