ActionScript 2.0 :: Interacting With FLV Cuepoints?

Oct 22, 2009

First, I should mention that I haven't used Flash for years and I'm feeling a bit out of my depth.I've created an offline presentation for a client using ActionScript 2, authored with Flash CS3 (to run off a laptop).The presentation has an FLV (currently attached to the stage via the FLVPlayback component) which must play through it's entirety and at the end present 3 questions. Each question will present an answer once clicked. The user will then be presented with a "watch again" button which should restart the FLV from the beginning.

The second time the FLV plays back it should pause at 3 key points and present the user with questions and answers as before. Once the user has dealt with the Q&A's they should see a button to continue and the FLV should continue playing from where it was paused.I'm happy making the various interactive Q&A's, but have no experience of interacting with video. After a brief search in the web "cue points" look like the best tool for the job.

View 9 Replies


Similar Posts:


ActionScript 3.0 :: F4v Cuepoints Not Working

Aug 10, 2010

I have an object that when I use an flv with a CuePoint, it all works fine. When I changed the flv out with an f4v, also with a CuePoint, the code does not work.[code]

View 2 Replies

ActionScript 3.0 :: Cuepoints Without Flv Component?

Aug 14, 2009

I'm creating a video player with closed captioning and navigation. Is it possible to as AS cuepoints to a video object and not a component.
 
Like this:
 
//Create video screen and position it
var vid:Video = new Video(320, 240);
vid.attachNetStream(ns);

[Code].....

View 2 Replies

IDE :: CuePoints Work In Some FLVs, Not Others?

Mar 12, 2009

I am having an issue with setting CuePoints in a FLV that is not natively FLV. My code works on files that were exported directly from AfterEffects to .FLV. However, some of the video files I am working with are originally .MOV files. When I pass them through either Adobe or Flash Media Encoder, the CuePoints are not recognized. It seems very strange.

Here is the code, although the code works perfectly with native FLVs, so I don't think that is the problem. I'll put it on here just in case.

Code:
myFLVPlayBack.onRollOver = function () {
playHover.gotoAndPlay(2);
}

[Code].....

View 1 Replies

ActionScript 3.0 :: Add Cuepoints After Setting Source

Dec 2, 2010

I had to add the cuepoints after setting the source.Iam trying to use cuePoints on a flvPlayer component but it wont work for me.I have a flvPlayer 2.5 in my timeline (vid_mc) and this code:[code]

View 1 Replies

ActionScript 3.0 :: How To Create Reactions To CuePoints

Dec 14, 2010

I am having some issues creating reactions to CuePoints when using NetStream();. I can get what I want to work when the video is embedded directly onto the stage by using the following code:

vid.addEventListener(MetadataEvent.CUE_POINT, cp_listener);
function cp_listener(eventObject:MetadataEvent):void {
obj = eventObject.info.parameters;
for (key in obj) {
if (key == "CuePointName1") {
[Code] .....

The trace statement is returning the name of the CuePoint correctly, but 4 times like this:
CuePointName1
CuePointName1
CuePointName1
CuePointName1
Which I assume is why the if statement isn't picking it up.

View 3 Replies

C++ :: Program Interacting With Web

Jan 4, 2012

How or what do I need to know programming wise in order to interact with the web using c++. For instance i want to wrote a program that automatically sends invites to players on yahoo chess. How would i go about doing this?

View 2 Replies

ActionScript 3.0 :: Receive CuePoints With FLVPlayback Component?

Jan 25, 2010

I've been trying to get cuepoints out of my flv video with the following code without success:

[Code].....

View 1 Replies

ActionScript 3.0 :: CuePoints Using FLVPlayback In Projector Executable?

May 26, 2010

I have a Flash CS3 project that uses the FLVPlayBack component to play 5 FLV files. Each of the files has between 1 and 15 navigation CuePoints embedded in the video (MOV files encoded using Flash Encoder).

When I test the app using Ctrl-Enter from the IDE all works fine.

When I test the published projector EXE on the hard disk all works fine.

When I burn all the files to CD-ROM and start the projector EXE not all is fine.

When I click on one of my buttons that will navigate to the desired cuepoint within the FLV, it acts like it is unable to find the cuepoint and thus goes to the end of the FLV file.This is very annoying and I can not find anything listed anywhere. I suspect it has something to do with buffering or something because the CD-ROM is slower than the hard drive.When playing the video all I am doing is:

vidPlayer.stop();vidPlayer.source = "name of flv file";vidPlayer.play();

When I navigate to the cuepoint I am using the following:

vidPlayer.seekToNavCuePoint(cueName);

View 1 Replies

Actionscript :: Professional : Flash CS5 Dropping Cuepoints?

Jun 29, 2010

I've just upgraded from CS3 to CS5 and have discovered an annoying issue with cue points. When I open an existing FLA that has a movie with actionscript cuepoints and try to replace it with another movie (an updated version), Flash drops all my cue points and I have to re-enter them. Is there some way to prevent this?

View 2 Replies

Professional :: CuePoints Not Working Properly Netstream?

Jul 15, 2010

Im trying to get cuepoints working on an old as2 project.I have a netstream video component and want the cuepoints embedded in the FLV to trigger buttons to appear. I have embedded them as Event Cuepoints. 
 
ns.onCuePoint = function(infoObject:Object){    trace(infoObject.name);    if(infoObject.name == "CP1") {         trace("yes working");    }}; 

[code]...
 
This shows all of the cuepoints within the FLV. I cant figure out how to change the code to trigger actions WHEN the FLV hits a Cuepoint.

View 2 Replies

ActionScript 3.0 :: Creating Video Object - How To Add CuePoints

Mar 9, 2007

My question deals with adding a cuepoint in actionscript 3 using code. In flash 8, I made use of the FLVplayback component which included a method addASCuePoint(). In Actionscript 3, I am now using the standard method of creating a video object, except i can't figure out how to use actionscript to add a cuepoint. In the AS3 LiveDocs entry for NetStream , it list only event and navigation as cuepoint types. Previously there was a third type of cuepoint: actionscript.

Code:
public function LoadVideo(){
var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
var vid:Video = new Video(320, 240);
[Code] .....

I am guessing one option is to create an onEnterFrame function that compares the NetStream.time to each value in my cuepoint array, and then do a addEventListener(EventType.ENTER_FRAME, onEnterFrame); Although this might work it requires my application to loop through my cuepoint array every single frame, which isn't really efficient.

View 1 Replies

Flash :: Android 2.2 Interacting With 10.1 And Use From App?

May 22, 2010

I'm searched adobe and android developers sites, but can't find any details on this. Is it possible to use Flash as a part of my app? E.g. like a widget/GUI element? Or it's integrated in browser only and can't be simple accessible? I know, Adobe AIR apps are supported as standalone .apk. So it must be some API/SDK (from Google) to connect with Flash player. Is there any details, how to program it (more clear: launch swf from my app and interact with it)?

View 2 Replies

Flash :: Interacting With A Flex App From CS3

Mar 15, 2011

I have a panorama viewer in Flash in which I want to embed a small Flex application. I've managed to load the Flex swf into the Flash like this:

[Code]....

View 3 Replies

ActionScript 3.0 :: Interacting With Other SWF Files?

Oct 1, 2010

I had embedded .swf file. I want to save screenshots from this. How ever, the author has not given any option to do so.

[Code]...

View 3 Replies

Flash 10 :: Lag While Interacting With The Frame

Mar 20, 2012

I've recently gotten myself Flash CS 5.5 and I'm having quite an issue developing applications using the ActionScript frame. Whenever I type inside the AS frame there's major lag. It takes ~1 second for the content to appear after I've typed it using my keyboard. I've got an i7 CPU so there shouldn't be any issues directly related to my CPU's power.

View 3 Replies

ActionScript 3.0 :: Create A Flv File Thats Got Multiple Event Cuepoints

Sep 20, 2010

I used After Effects to create a flv file thats got multiple event cuepoints. When i try to use these cuepoints in Flash, it says :

[Code]...

81.88 is the first position where two Cuepoints are set on the same point of time. I named them 81.88a and 81.88b in After Effects but it wont make a difference. Each of these points has some important parameters (cornerpoint data) so that i need them all.

View 1 Replies

ActionScript 2.0 :: Preloading FLV With Cuepoints - Animations Slow To Start

Jan 7, 2009

This is the first time I have used a FLV with cuepoints. I have a flv which loads into my swf which I have added cuepoints to on import. I have a series of buttons over the flv and when you rollover these you skip to various points in the flv. This works in principal but in reality it is a little slow, especially when it first loads. I am assuming this is because the FLV is still loading (although I am testing this locally and it will never be used on the web). If this is the case I think I need to make sure the entire flv is loaded before i show it. Secondly, is this the reason the rollover animations are slow to start or is this an inherent problem when using FLV? Is there anything else I can do to make it more responsive?

View 3 Replies

ActionScript 3.0 :: Skipping Between CuePoints In Custom Video Class?

Apr 25, 2009

I am creating a custom video class and was wondering is anyone knows how to turn cue points embedded in an flv into a time in an array.

I have tried the following but, although it doesn't give me any errors, it simply rewinds 1 second rather than skipping back to the correct cuePoint. I can't figure out why? :

Code:
public var _durationArray:Array = new Array();
public function makeArray(info:Object):void {
for (var i:Number = 0; i < info.cuePoints.length; i++) {

[Code].....

This previous code is amongst other code, which makes does things. Then in a new class I call it inside a function (which triggers fine):

Code:
_vidStream.seek(_durationArray[0].time);

View 1 Replies

Javascript :: Web Browsers Interacting With Desktop?

Aug 29, 2010

What languages/techniques are used for letting the web browser interact with the desktop, e.g. dragging files to the web browser, dragging files from web browser to desktop, and maybe more features that I'm not aware of.

View 2 Replies

ActionScript 3.0 :: Multiple SWF Instances Interacting With Each Other?

Sep 8, 2009

On a webpage there would be multiple swfs. There could be one, there could be 15. It depends on the client.Each instance is the same swf but with different parameters. The swf is a simple toggle button, play/pause.When the page initially loads up, nothing happens.All the swf's default to the pause icon.An ID is passed from the html using flashvars i.e., FlashVars="Playerid=1" in the code, for each instance.When a user clicks on one swf (here is the problem), all the instances need to be listening and if they are not the clicked swf they need to change from play to pause if they were the previously playing swf or if the were in the 'pause' state to do nothing.

I was looking at using localConnection but it seems that a single swf can only listen to multiple swfs but multiple swfs cannot listen to one swf.I need them all to be continually listening for a user interaction (addEventListener.CLICK) and then all acting accordingly.I tried an enter.frame event for every instance to check if they were no longer the chosen track and update accordingly but it didn't work out.I have been playing with sharedObjects, storing the currentID (after being clicked), the previously played swf and whether the status is playing or paused.None of my efforts worked properly.Having re-written the above question many times, It is still a little unclear. I'll try again.

There will be say ten tracks from an album. Next to each track name will be a simple flash button the user can press to hear a 30 second sample. On clicking the icon, if no track is currently playing the icon will change from pause to play and the track will then play. If there IS a track already playing (say track 3) then on clicking say track 1 will stop track 3, change it's icon and then start track 1 and change it's icon from pause to play.The problem is that each swf on the page is exactly the same apart from an ID from flashvars and trackname which will be from an XML file or passed as a parameter when instantiated such as flashvars.

View 0 Replies

ActionScript 3.0 :: Stop A Class From Interacting?

Nov 11, 2010

I have a class that has a couple of events after each other:It loads an image, loads another image, fades in a player, and plays a video.Now when the user goes to somewhere else, this instance keeps on doing all it's stuff.. Setting it to null doesn't help..

View 4 Replies

ActionScript 3.0 :: Create A Function Which Will Search The Cuepoints For A Specific Time?

May 24, 2010

I have the following XML file structure:

Code:
<VideoData>
<CuePoints>[code]....

And I am trying to create a function which will search the cuepoints for a specific time, I'd also like the function to be re-useable, so I could just feed it a xml tree path and a search term then it would return a reference to the matching node.So far I have only managed to return what is in the node:

Code:
public class Search
{
public static var returnData:Array = new Array();[code].....

View 2 Replies

ActionScript 3.0 :: Interacting With Dynamic Movie Clips

Jul 25, 2007

I have loaded a swf using AS3, using the

Code:
import fl.containers.UILoader;
import fl.controls.Label;
import fl.controls.ProgressBar;

so MC is called myUILoader, I want to navigate to another section of the FLA and I put an if statement on the function for the button:

Code:
function mMenuNav1(event:MouseEvent):void {
var nav:String = "home";
mmBtnsOn();

[Code].....

Why the sound doesnt stop after the child has been removed and why I can't stop the MC????

View 10 Replies

ActionScript 3.0 :: MovieClip In SWF File - Interacting With Variables?

Aug 1, 2009

Basically I have a SWF file, there is a movieclip in this SWF file with instance name "stage" and I can alter the parameters of "_level0.stage" from within this SWF file to change the way it acts. But now, I am making a second SWF file, which loads the first SWF file, and from this new SWF file I want to interact with the same "_level0.stage" variable from the first SWF, does that make sense? This is the AS3 code for the second SWF, I have a movie clip with instance name "LoadSWF" in this SWF.

Code:
var movieLoader:Loader = new Loader();
var movieRequest:URLRequest = new URLRequest("load.swf");
movieLoader.load(movieRequest);
LoadSWF.addChild(movieLoader);
load.swf is the file which contains movie clip "_level0.stage"

I've tried referencing this movie clip from this code using
"_level0.LoadSWF.stage"
but it doesn't find it?

View 1 Replies

ActionScript 3.0 :: Interacting With Html Documents From Flash

Apr 9, 2011

I'm a newbie in actionscript. I created a world map in flash. The map has regions (Europe, North America, Latin America, etc.). The regions on the map are defined as buttons.

The final flash map will be embedded in an html document (map.html). The idea is that when you click for example the "Europe" button on the flash movie, this will open an html document called Europe.html and will show it underneath the map flash (inside map.html). The "Europe.html" for example contains a list of countries. In this mission I have 2 problems:

1. What script I have to attach to every region button on the flash map so it will call the right html file into the div on the map.html?

2. What script do I have to put inside the html document?

View 5 Replies

ActionScript 3.0 :: Flash Interacting With A Simple XML Database?

Aug 30, 2011

I need to build a simple database (3 elements total) using XML and make the swf interact with it.What I need is an interface that pops out if you've done a better score (better than the 3 saved in the XML).
 
Then you insert your name, send it with the proper button (or clear the field with the reset one) and then get a new classification in the txt field below dividing the players with their score. To do this, since I wasn't able to do it on my own, I've found a ready-script and this is it:

[Code]...

View 6 Replies

ActionScript 3.0 :: Interacting With Html Documents From Flash?

Apr 9, 2011

I created a world map in flash. The map has regions (Europe, North America, Latin America, etc.). The regions on the map are defined as buttons.

The final flash map will be embedded in map document (map.html). The idea is that when you click for example the "Europe" button on the flash movie, this will open an html document called Europe.html and will show it underneath the map flash (inside map.html).

The "Europe.html" for example contains a list of countries.

In this mission I have 2 problems:

1.What script I have to attach to every region button on the flash map so it will call the right html file into the div on the map.html?

2.What script do I have to put inside the html document?

View 2 Replies

ActionScript 2.0 :: Interacting Movies Between Two Different Frames Of Website?

Jun 5, 2002

make a variable readable from other flash movies, on the same website, but just in different frames. For example, if one frame was a menu, and the other frame had a picture of some sort, could i program my movie so that if a user clicks on a button on the menu side, the movie on the other side will display a different picture?

View 5 Replies

ActionScript 3.0 :: AIR- Interacting Native Windows Of An Application?

Apr 9, 2009

1. Is there any way to send events from one native window of an application to another native window of the same application? For ex. a login window pops up when the app starts in the main window. Once the login is successful, an event should be posted to the main window, so that it starts displaying other things. Right now, I am posting an event, but it is not reaching the main window (nothing shows up in trace and breakpoint is not hit in the main window).

2. Is there a way for any window to grab focus? For ex. the login window above grabs the focus till the creds are keyed in. I mean, the user should not be able to select the main window at all till this window is active.

View 3 Replies







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