ActionScript 2.0 :: Navigate To Certain Points In A FLV Video?

Jan 11, 2008

I'm currenlty working on a Flash project where I need to navigate to certain points in an FLV video. I've worked a little with FLV before, and I've worked with cuepoints to trigger other actions/events in Flash, but what I'm looking to do here is when certain events happen in Flash (could be as simple as someone clicking on a button) I need the video to jump to a certain point.

My first thought was to set actionscript cuepoints then have the events in Flash make the video go to those cuepoints, but I can't seem to find any information how to do that. All the information on cuepoints I've been able to dig up talk about using the cuepoints in the video to trigger other actions, not vice-versa.

View 4 Replies


Similar Posts:


Load A Video Into A Video At Certain Cue Points Along The Main Video?

May 31, 2009

I would like to load a video into a video at certain cue points along the main video.  Does anyone know how to do that?

View 20 Replies

ActionScript 3.0 :: Navigate Video With Arrow Keys

Jul 7, 2011

im currently trying to extend my flash video player with the option to pause the video and then use the left and right arrow keys to navigate forward and backwards frame by frame. I already figured out that I can only seek to keyframes and not every frame and that seeking always gets you to the closest keyframe automatically.

I couldnt find a method anywhere to seek to the next keyframe automatically and if I try to seek in small intervals I sometimes end up on the next frame like I intended but most of the time I get thrown back to the keyframe I started because it�s the closer one.

View 3 Replies

Actionscript 3.0 :: When Navigate To Next Page Video Stops

May 7, 2011

I have a website that plays video1 when it opens. When you navigate to next page the video stops. One of the buttons on the second page plays video2. The problem is that video 2 won't stop using the same command that made video1 stop.[code]

View 2 Replies

ActionScript 3.0 :: FLV Player Still Plays Audio Of Video After I Navigate Away From It

Nov 21, 2010

In my main swf file i load external swf files for each section.. In my video section i load a swf that includes a flv player that plays flv's with sound!

when i go back to menu...or go to another section....sound is still playing! why? I was thinking maybe i need to add a stop all sounds actionscript when going back to menu?

View 5 Replies

Actionscript 3.0 :: Stop The Audio Playing From A Video When You Navigate Somewhere Else?

Apr 11, 2010

how to stop the audio playing from a video when you navigate somewhere else. However none of these solutions seem to work for me.I have my buttons on the root timeline, and all my pages are seperate movie clips which are added to the timeline with labels. I tried the

Code: Select allimport flash.media.SoundMixer;
SoundMixer.stopAll();

but i also have audio streaming on the whole site so when i navigate to a page the audio stops.

View 2 Replies

ActionScript 3.0 :: Flash AS3 - Video To Stop When Navigate Off Of The Frame?

Dec 7, 2011

at the moment i have tried using booleans but this is making my code have many errors so i was wondering if there was another easier way?

View 1 Replies

Actionscript 3.0 :: Flash - Get The Video To Stop Every Time When Navigate Around Site

Dec 15, 2009

I have recently created my own flash site and have added videos on it through creating my buttons. The videos are working fine, however when I click to another page the video is still playing. I'm really pulling my hair out over how to get the video to stop every time I naviagte around my site.

View 2 Replies

ActionScript 3.0 :: Getting A Video To Stop Playing When User Clicks On Another Button To Navigate

Jan 17, 2010

I am trying to create a little website in flash.. I have some video that plays automatically once the user goes to that section (I am using frame labels to navigate from section to section of the site). But, when the user clicks another button to go to a different page, the video is still playing because I hear it..How can I stop the video from playing once another button gets clicked?

View 20 Replies

ActionScript 3.0 :: Cue Points In Video In External SWF?

Jan 26, 2012

I have a video that is playing in an FLVplayback Component, inside of a MovieClip. I have a cue point in the video about half way through, that triggers a seperate MovieClip (on the Parent timeline). This worked perfectly until I removed the Parent MovieClip, and made it an External SWF. Now the cue point triggers this in the Output window:

Code:
ArgumentError: Error #2109: Frame label head_fade not found in scene head_fade.
at flash.display::MovieClip/gotoAndPlay()
at M_fla::head_intro_7/fl_CuePointHandler()
at flash.events::EventDispatcher/dispatchEventFunction()

[Code]....

Do i have to do anything different now that this is in an external file.

View 3 Replies

ActionScript 3.0 :: Playing To Video Cue Points With Easing?

Feb 12, 2010

I have a few questions about cue points that I can't answer with my Google skills. Firstly, I am looking into using navigation cue points for playback of an FLV in my Flash project. But the seektocuepoint functions don't seem to play to the cue point, they just skip ahead. I want to actually play through to the actual cue point in the video. Is there a way to do this?

Secondly, I noticed that you can't play FLVs in reverse.

And lastly, is there a way to implement easing when playing and stopping FLVs? I know this sounds odd, but it would sort of be like dropping the playback rate to half just before stopping. Is this possible?

View 1 Replies

ActionScript 3.0 :: Stopping Streaming Video With Cue Points?

May 20, 2009

All i want to do is make a video streaming in a video object to stop on a cue point, and play from abother when a button is pushed. It's relatively simple, right? Wrong. Over a hundred $s in how-to books and several hours wasted searching online later and I have nothing. I have checked and re-checked the cuepoints are correct (i made them in flash video encoder CS3) and tried just about everything as far as AS is concerned. Here is my latest attempt: (obmintro is the player instance name, i have the rtmp info in source under player parameters and it plays fine)
 
import fl.video.MetadataEvent;obmintro.addEventListener(MetadataEvent.CUE_POINT, cp_listener);function cp_listener(eventObject:Object):void{if (eventObject.object.name == "site_end");{  obmintro.pause();
//i have also used stop, stop("obmintro"); and i don't even know what else.}}

View 3 Replies

Media Server :: Points Stored For The Whole Video?

May 28, 2009

I was just wondering whether or not actionscript cuepoints created via the default cuepointManager on a FMS stream be seen by other clients viewing the same video? For example if I were to do this: (where vidVideo is an instance of VideoDisplay in flex 3) vidVideo.cuePointManager.removeAllCuePoints(); var cuePointArr:Array = new Array(); cuePointArr.push({name:"stopClip", cuePointTime, type:"actionscript"}); vidVideo.cuePoints = cuePointArr; Will other clients viewing the same video be affected by these cue points? or are Actionscript cue points maintained only on that stream?

View 1 Replies

ActionScript 3.0 :: Cue Points On Video NO Flvplayback Component

Oct 19, 2011

Is there any way to read cue points from a flv which i load intro a netstream object? I dont want to use a component.

View 1 Replies

ActionScript 3.0 :: Simple UI For Video FLV With Cue Points And Buttons

Jan 27, 2012

I have built a very simple flash player using the video component and I used cue points in the flv, then I used simple buttons and find cue points code snippets to make my buttons go to a certain part of the movie. All that works very well. Now what I need to do is when a certain que point portion is playing have the button stay in a overstate and once that portion of the video is done or another button is clicked the first button return to upstate and the new portion or the new button have the overstate.

Code below
start_btn.addEventListener(MouseEvent.CLICK, fl_ClickToSeekToCuePoint);
function fl_ClickToSeekToCuePoint(event:MouseEvent):void {
var cuePointInstance:Object = vid.findCuePoint("ch1");
vid.seek(cuePointInstance.time);
[Code] .....

View 7 Replies

Data Integration :: Flash Video - Navigation Cue Points From Xml?

Dec 16, 2007

Is it possible to load navigation cue points from an xml file like you can do with captions or do they always have to be embedded in the encoding? If it's possible, can you point me to a resource that shows you how? I've searched and searched for weeks and found nothing!

View 5 Replies

ActionScript 3.0 :: Sync Image Slides To Video Cue Points?

Aug 27, 2008

I'm working in AS3. What is the best way to sync some image slides to cue points I have embedded in a video? Ideally the video would play and and the image will change according to the cue points.

View 1 Replies

Professional :: Handling Flash Video Cue Points In Javascript

Dec 13, 2010

how to get Javascript in an HTML page containing an FLV video to listen for cue points in the video? I understand how to get the cue points in, but most people only seem to want to handle the cue point events within Flash. I want to use Javascript to display a different text in a page element at each point. Does the method vary depending on what player you're using? How about when it's the standard Flash playback component? Does there need to be any special Actionscript in the SWF containing the FLV?

View 2 Replies

ActionScript 3.0 :: Bringing Up A Button And An Image Using Video Cue Points?

Jan 21, 2012

I have a 4:40 long video and I'd like to show a button and a background image (or a movie clip) at 4:30 and I want them stay on the screen after the video is complete. By the way I use Flash CS5.

View 14 Replies

ActionScript :: Cue Points For Closed Captioning In Video Control?

Sep 7, 2010

I am using using Flash Builder to create an AS3 video player which needs to support Closed Captioning. However, I am not using the FLVPlayback component. Is there a way of doing something like addASCuePoint() to flash.media.Video;, or is my only option using Flash' Timer to do my own check?

View 2 Replies

ActionScript 2.0 :: Video Object - Adding Cue Points To NetStream?

Feb 16, 2009

I have a video object inside a flash file. I am using NetStream to attach a video to the video object. How can I add cue points to the video ? Should I add a cue point to the video object or to the NetStream ? (I am using Flash 8.)

View 3 Replies

ActionScript 3.0 :: Get A Customizable Video Player With Cue Points For Flash?

Feb 7, 2011

do you know where I can get a customizable video player with cue points for Flash, written in AS3?

View 1 Replies

Flex :: Adobe Show Text At Specific Video Points

Feb 7, 2010

I'm using the VideoPlayer component in flex 4 to display a clip. I have about 3 or 4 notes that I want to appear at specific points of the video, sort of like caption but not quite. I'm trying to figure out how to use VideoPlayer time to cause another element to appear (text area with the note in it), but can't seem to get it.

View 1 Replies

ActionScript 3.0 :: Upload User Photo, Attach On Video Key Points?

May 5, 2010

Where to begin? Anything thoughts, or direction I should start with?

View 1 Replies

ActionScript 2.0 :: Lining Up Buttons Over Progressive Video Download With Cue Points?

Apr 13, 2012

I am looking to create something like [URL]

Basically a video that allows you to click on products and pull up more info on them as they appear in the video.

The video I will be using is 3 mins long with 10 products you can click on, so I guess I will need to progressively download it. If I could embed it in the timeline it would be a piece of cake. I would just have buttons motion tweened moving with the products in the timeline. But the file size will be too large to make this a sensible option.

My question is, I understand cue points can be used to activate actions for progressive video downloads, but how would I track the buttons over the products using progressive downloading when I can't see the video in the flash timeline?

View 13 Replies

ActionScript 3.0 :: Flash Using Flash To Navigate A Video Timeline?

Aug 10, 2011

I've produced a 1080p "step-by-step" video for someone and they now want to add an interactive element to it.

Essentially I'm going to want a menu system at the beginning that has several options.

As a couple of examples:

I'll need one option to play the whole video from start to finish. One option to play just steps 1-7 before returning to the selection menu. One option to play steps 1-8, then 27-32 straight after, before returning to the selection menu.

Is there a way that I can do this with ActionScript? Or would it be more straightforward to just re-cut the video into different clips and then tell the buttons to "play clip 1" or "play clip 2"?

View 1 Replies

Actionscript 3 :: Calculating Evenly Distributed Points On A Line Of Points

Oct 3, 2011

I have been tasked with trying to create a drawing tool that draws dotted lines as you drag the mouse across the stage. I can easily capture the points on MouseEvent.MOUSE_MOVE and store them in a vector and then draw the points as dots:

The problem is that I need to calculate evenly distributed points on an ever growing Vector of points so I can only draw the line between say every 5th point (say using modulus). I have been battling away with Bezier curve equations both Quadratic and Cubic but still can't quite figure out how to convert my Vector of points into an evenly distributed Vector of Points without sucking the life from the CPU.

View 1 Replies

Flash Supports Subtitles With Cue Points And XML Files For Flash Video

Jun 24, 2010

I understand that Flash supports subtitles with cue points and XML files for flash video. First, I don't know if that would work for a flash animation, and second, I'm looking for a much simpler solution. I am more than willing to manually add and time my subtitles myself on a new layer. What I need help with is finding the simplest way possible to make these subtitles toggle-able. Why? Because I seem to have a serious allergy to ActionScript, and though I can master programs like 3D studio Max and After Effects, I seem to screw up even the simplest of Actionscript jobs.

Is there some way I can make a button that simply makes my subtitles layer invisible across the whole thing? Maybe a command to change the font to a blank one, or to move the titles off screen? There has to be SOME sort of trick that won't require me to drop a load of code into each instance of text. I'm currently using Actionscript 3.0 with Flash CS4. I'd also love to have a pause button that would also stop any music or sound effects that are playing, but after struggling with that for years, I seriously doubt that's going to happen. I did google this subtitles problem, and search flashkit first. Nothing but VIDEO subtitle stuff, and I'm almost positive it wont work the same for a regular animation.

View 5 Replies

ActionScript 3.0 :: Use "Cue Points" In FLV Video Playback?

Aug 23, 2011

I have a video that is external, and is playing through the FLV Playback component.

I need to set Cue points in FLV video to trigger other MovieClips at certain times during FLV playback. I have read about them, but am unsure how to use them using Adobe Media Encoder. I am pretty sure I know how to set them in there, (unless there is a better way) but then how do you trigger the event?

View 0 Replies

AS3 :: Points & Lines - Getting Lines To Follow Points As They Are Dragged?

Jul 21, 2010

I am trying to create a mindmap where the user can drag points about the screen. I have gotten as far as drawing the line via actionscript, and drag+drop the points (defined as movie clips on stage). This is the existing script - I don't know how to get the lines to follow the points. Something to do with ENTER_FRAME or updateAfterEvent?

var line:MovieClip = new MovieClip();
line.graphics.lineStyle(1,1);
line.graphics.moveTo(ptOne.x,ptOne.y);

[code]....

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved