ActionScript 3.0 :: Play/Pause FLV Component With Spacebar?
Jun 26, 2009Does anyone know how to do this in AS3?
Play/Pause FLV Component w/Spacebar?
Does anyone know how to do this in AS3?
Play/Pause FLV Component w/Spacebar?
I have been searching all morning and cannot find a solution to this. I have a 60MB SWF published from Camtasia and I would like to add the ability to pause/play the clip using spacebar. The file is too big to import into the library (Flash CS5) or at least I assume so because it keeps crashing when I try. So I thought I would create a new flash movie and have it just reference the clip externally. I have tried a couple methods each are resulting in different errors.
[Code]....
I'm trying to code the space bar key as a pause/play function in my flv player. I'm using Lee Brimlow's flv player tutorial as a model for my flv player so essentially it's driven via netstream coding. I've tried two different codes, code 1 being something I used a while back on another project and code 2 something I've been trying (hoping) would work better.
Code:
//1)
onEnterFrame = function(){ check_keys();}
[code].....
I have a series of movies I'm creating that have streaming audio with animation synced to the audio. I was wondering if there is a component out there, or an FLA, that is a scrubber control bar like the one you see in Articulate Flash presentations, or video.I need it to control the main timeline.I have searched google for a while now and I can't seem to find one.
View 5 RepliesI'm having trouble controlling the PAUSE and PLAY states of the pause/play button located on the Media Controller component, while streaming an .mp3 file.
- I set the button to the PLAY state (which shows the pause button) in the authoring enviroment. (Good).
- I set the media, and play the mp3 file. (Good).
- After the .mp3 file is done playing, the button goes back to the PAUSE state...DESPITE a fucntion I have that loads my next mp3 file).
I would like to be able to control the button states to reflect that the player is still playing. (ie. showing the pause image)
I thought "audioController.playing = true;" would do the trick...but it's not working correctly.Below is my code:
//Loads and Plays Audio
Code:
function loadAudio() {
audioPlayer.setMedia("audio/" + audioNames[_global.nCurAudio]);[code]...............
I am trying to pause/play a swf loaded into a loader component.I tried putting it in a mc and contolling it that way but it aint work.
View 1 RepliesI am trying to pause/play a swf loaded into a loader component.I tried putting it in a mc and contolling it that way but it aint work.
View 1 RepliesI have a situation where I am loading an SWF (using URL as source) using the SWFLoader component in Flex 4, and now I need to implement Pause/Play and Stop functionality.
View 1 RepliesWhen it starts, I switch tab to nr.2 (default is tab 1). I need to be able to hold down spacebar and drag the mouse to pan, but when I do this it switches back to the first tab. So the spacebar is triggering it to switch. I've tried using a custom lass that extends tabNavigator, like the code below, but it's not working. Also tried setting focusEnabled = false without luck.
[Code]...
how do i toggle on/off a checkbox component with ENTER instead of the default SPACEBAR? so ENTER key is the key to toggle..
View 2 RepliesI am very new to flash and am putting together a simple presentation at work. When I save out my .swf file I have to press cmd+p to play the movie. I have been asked to change that to the spacebar.The movie simply plays through part of a presentation then stops. I need to be able to play the movie with the spacebar at each stop.
View 3 RepliesI'm going to by chance include a message I sent out to a colleague in the off-chance someone also has a solution to it, but it also pertains to my issue. Skip to the bolded part below for just the question I have.I've been tasked with converting a Powerpoint presentation into a Flash presentation. I was considering manually doing it, but it seems like it would take an awful long time (240 slides, with videos and animations) - plus I don't know how to export the animations on individual slides over to Flash other than recreating them entirely.
I found a handful of programs on the Web that advertise that they will convert PPT to Flash (swf) and I tried a few to see which if any I should purchase. All of them had issues. Some either didn't run entirely or the end result was graphically ugly, videos weren't carried over (a problem I could easily rectify if the thing was an FLA where I could add videos back in that way), or animations were either mangled or ignored completely.how best tackle this challenge?Okay, so I basically started to just recreate the entire thing in Flash, using PrtScrn for backgrounds after deleting objects (then pasting in Photoshop and exporting as a PNG-24), as well as copying graphics into Photoshop as well to export as PNGs. No idea what to do about animations yet. Videos I can add back manually.
But anyways, as I do this, the movie is automatically advancing through every frame when I preview. I'm not sure how to go about setting up my Flash so that it only goes to the next frame when someone either presses the mouse button or the spacebar (either would be fine, I think).So that's my main focus at the moment. The other stuff is definitely part of the whole deal, but my main question is:ow do I set up Flash so that it only advances to the next frame when a mouse button or spacebar is pushed?
Normally I have a 'MouseEvent.CLICK' on a movieclip handle this but I want use the keyboard instead of the mouse this time. I haven't used the keyboard for button actions since AS2, any tips on how I can do this in AS3?
View 1 RepliesNormally I have a 'MouseEvent.CLICK' on a movieclip handle this but I want use the keyboard instead of the mouse this time. I haven't used the keyboard for button actions since AS2, how I can do this in AS3?
View 1 RepliesI have a timeline of 30 frames, each it's own mc (page01_mc, etc.). In each mc I show a picture or two and hear narration.I have a first, prev and next nav on the main timeline. I need to add a play/pause btn that will pause both pictures and sound. I assume I do that in each mc, but do not know where to find the code.Here is what is in each mc now:
var mySound:Sound = new Sound();
mySound.load(new URLRequest("english/Intro01.mp3"));
mySound.play()
I have several products I want to animate with graphics and text individualy then stack them on a time line for output with play and pause buttons. Is there a tutorial somwhere that shows you how to do this? and how do I stop the entire animation on a frame, I don't understand "not_set_yet"
View 4 RepliesI have a 4 1/2 minute Flash Demo: first minute is Intro Flash animation, next 3 minutes is a progressive video with a FLV playback component, and last 30 seconds is conclusion Flash animation. When I press the pause button on the FLV it pauses the video but the main time line continues to play in the back ground so that the last 30 seconds will play no matter what the stat of the FLV. If the FLV is paused the conclusion will just start to play when it reaches that part of the timeline or worse if you pause the FLV and resume it after say 30 seconds the video and the last scene sound plays at the same time at the end of the video. I have a toggle play/pause button on the intro animation that works fine and the FLV play/pause works but I don't know how to pause the end of the timeline when the FLV is paused.
View 9 Replieshow to control a pause/play button by pressing only the space bar, as I have the animation inside a movie clip.
I tried just using a simple code, such as:
on (keyPress "<Space>") {stop();
play();
}
But as I guessed, it only paused and re-played the movie, so I suppose I need a condition for when it's either paused or playing, but I'm a little (a lot) inexperienced in coding in general.
I have imported the video in FLASH CS4 and want to make my own play/pause button.
View 1 RepliesI have created my first Flash CS4 presentation. It includes nine, mostly text, scenes, with no audio or video. The entire presentation has a row of nine circles across the top that distinguishes each chapter (scene) of the presentation. The presentation (movie) currently plays without stopping.Now my client wants to be able to click on each circle to pause/play the presentation at that chapter (scene), skip a chapter (scene), or go back to play a previous viewed chapter (scene).Can anyone recommend a simple scene pause/play script I can add to each circle (which will now become buttons)?
View 7 RepliesIs there a way to pause the playback for a set amount of time then resuming without any interaction from the viewer?
View 1 RepliesI have several swf file that will be loaded into the main swf file. In the sub swf file I coded & attached sounds and play it. And the problem is that when it is loaded in the main swf file the play/pause button won't work.
View 9 Repliesi wrote this code for video play/pause through SPACE keyplay/pause is fine. But not visible play_button when i press SPACE key.how to write that ?
stage.addEventListener(KeyboardEvent.KEY_DOWN, pausePress);
function pausePress(e:KeyboardEvent):void{
if (e.keyCode == 32){
[code].....
HOW DO I MAKE THE SLIDEPANEL AUTOPLAY AND BE INTERRUPTED WHEN THE USER CLICKS ON THE BTN?
here's the tutorial i learned the slidepanel. [URL] working in a AS 2.0 format. I made a slidepanel where it is a movieclip of combined images that make a long strip, depicting different images. Going to a particular image is through invisible buttons on the bottom with instance names. The actionscript layer contains commands:
[Code]..
I am using a stop(); gotoAndPlay with setInterval on a series of swf files that are loaded into a container movie. There is a bug in doing this, in which when one of the swfs is loaded into the container and you click on a link to load a different swf before the current swf has gotten to the frame in which you reach this function, its stops the function and nothing pauses/plays anymore. [code]...
View 3 Replies I'm making a mp3 player using flash and i would like to have the play and pause function all in one button rather having separating into two buttons. Here is the code what I have so far.
Code:
playpause_button.addEventListener(MouseEvent.CLICK, playpauseButtonClick);
function playpauseButtonClick( event:MouseEvent):void {
theChannel = theSound.play(pausepoint);
[Code].....
I want to know if there is a command or actionscript that will allow you to pause the movie automatically for like 30 seconds and then continue the movie after 30 seconds have passed, instead of adding alot of frames for about that add up to 30 secs. Just like the goto and play command.
View 2 RepliesI would like to pause a frame for 5 seconds and resume play. My code is just not working out.
View 7 RepliesI have a flash xml slide show. I need to create a play pause toggle button that will stop the xml slide show and start it again.
Here is the actionscript:
Code:
function loadXML(loaded)
{
if (loaded)
[Code]...
I am trying to use the letter x to stop and play my movie, I got it to sucessfully stop but I am having trouble restarting it once it is stopped, [code]
View 3 Replies