ActionScript 2.0 :: Access FLVPlayback Components And Change Parameters?
Dec 22, 2010
ActionScript Code:
for (var v = 0; v <= 10; v++) {
var flv = attachMovie("FLVPlayback", "my_FLVPlybk" + v, v+1, {width:20, height:20, x:100, y:20});
}
With this code I have created 10 flvplayback components and inserted in the screen. How to access to each of this components i have created and change parameters like pause() them stop() play() add contentPath etc., I need that only after the loop is finished not while the loop is still on. Something like
findComponent("my_FLVPlybk1").stop();
View 2 Replies
Similar Posts:
Feb 18, 2011
Is it possible to globally find/replace FLVPlayback parameters (e.g. contentPath, skinAutoHide, etc.) so that parameters can be changed globally throughout movie? I'm using Flash CS3 with ActionScript 2. Or, is there a way to override the FLV parameters at runtime using AS2?
View 7 Replies
Jan 19, 2010
First post here, I am a flash newbie. I have a fully completed player I have created using standard CS4 component, FLVPLayback, PlayButton, PauseButton, MuteButton and Seekbar. Everything works fine. I would now like to add and additional large centered play/pause button a la youTube.
I am completely stumped, I have tried duplicating the play button instance and quite a few other things (copying the actionscript from the original button that works) to the new button. I've investigated 'linkage' all to no avail, I can't get it to work.
View 9 Replies
Sep 16, 2010
FLVPlayback custom params
How do I pass custom parameters to FMS using a FLVPlayback just likeI can with NetConnection.onConnect()? e.g. Normally I pass custom params to FMS like this:netConnection.connect("rtmp://mydomain.com...", param1, param2, ... .etc); How do I pass param1... etc. to FMS if I'm using an FLVPlayback component?
View 2 Replies
Oct 4, 2011
I have a video which has an flvplayback inside. I have been using it for others flv. But with these 3 flv, when I set the path in the component parameters, flash shuts down. I have used aftereffects, media encoder to convert them from mov and avi to flv.
View 0 Replies
Oct 2, 2009
I am trying to create a component which can receive an additional value from mxml [code]...
View 6 Replies
Aug 31, 2010
I'm currently trying to use the FLVPlayback component and pass a source FLV that's living on a cloudfront webserver. The problem is that the cloudfront requires authentication in the form of query strings in the source FLV. For example:[code]It adds on "&FLVPlaybackVersion= 2.1" to the end.I saw a different article that said I should add a dummy variable at the end like "&dummy=.flv" because I was told that Flash is basically looking for an .flv extension at the end and you can trick it, but it doesn't work because they add on additional code.
View 9 Replies
Dec 12, 2010
i have couple of videos that i want to play in succession. my theory on how to do this was to add an event listener that would call function to change the source of the FLVPlayback component and play once the initial video finished playing. The problem is that i don't know what parameters to pass to the eventlistener and the acting function. I just need someone to fill in the blanks to the following code
[Code]....
View 1 Replies
Jul 9, 2008
I have been trying for days to write my own custom NCManager class that allows us to connect to a Limelight stream. We have to issue a NetCOnnect.call() that has the command "FCSubscribe" and the stream name. I've written a 100% custom player(url...) (have to register!) but what I want to to resolve that player with the video-on-demand player(url...) into a single Flash project.I want to allow our Graphics guys (aka Flash developers) to be able to use the standard Adobe FLVPlayback components and skins and also be able to p lay back files, streaming content and Limelight content. To this end I thought that writing a custom NCManager class would be the way to go.
I have 99.9% succeeded: my class gets the connectToURL(),connects to Limelight, subscribes and all is well but I am really really stuck now on how to tell the FLVPlayback component that it .can start playing back now that the stream is connected.FLVPlayback and VideoPlayer parts appear to be AS2 and I cannot call the rtmpStatusInfo() function on the VideoPlayer part to tell it that it is good to go.I am so close I can taste it: If I create a NetStream object and play() it, I can hear the content to I know that if I could only get the FLVPlayback / VideoPlayer dynamic duo to playback then the job would be done.
I have attached the code, warts and all in the hope that either somebody has done this before or can tell me what I have misunderstood about the internal state-machine / FSM logistics that VideoPlayer et al implement.By reading the source code and my debugging statements I can see that I have maneuvered it towards the ultimate goal of playback but I don't know how to make that final step.
PS: I *know* that reconnect() is non-functional but if I uncomment the call all it does is go around the loop again; the real problem is I cannot tell the VideoPlayer that it can play (via rtmpStatusInfo) the data etc
PPS: The meta-data related stuff *only* gets called if I uncomment the NetStream code; this was to check that I had a valid playback stream, which I do at that point.
View 13 Replies
Sep 24, 2008
How can I get access to the parameters that are passed into the swf, such as My.swf?xyz=123 ? How can I get the value of xyz?
View 3 Replies
Aug 8, 2008
So I'm trying to do something like this....<param name="movie" value="comp.swf?rootDomain=3" />where I have a variable called 'rootDomain' in my html, as a parameter.I want to be able to call that from my flash, but whenever I try it comes up as undefined.I'm using this code in my flash..
on(release){getURL (_root.rootDomain + '/news/'), "_self"
}
I don't know if I'm just wrong, if it's syntax or what, but how do I reference that variable in the html with my code?
View 1 Replies
Sep 26, 2010
I have a project in flash cs5 with some buttons and textInputs. Ive linked my project up with Flash Builder and now want to access my textInput from within my Flash Builder source. i gave the textInput instance name of "txt1" in Flash CS5 but when i try to reffrence it in my Flash Builder project there is no option to set it as type TextInput. I can only set it to type MovieClip and when i do that and publish it tells me cannot convert from fl.controls.TextInput to MovieClip.
View 1 Replies
Nov 2, 2010
I try to access a simple component that is part of a NavigatorContent:
Code:
<s:NavigatorContent id="tabDebugOutput" label="DebugOutput">
<s:VGroup>
<s:TextArea id="debugOutput" top="5" right="50" width="800" height="120"/>
[Code]....
How can I access the component (independent from their current placement in the layout?) ?
View 0 Replies
Oct 13, 2009
I want to play a video, for it I decided to use a FLVPayback with a skin, and it works very well when I test it in Flash CS4, also when i called it from my server with the "network access" only preference. But when i embeded into a html... it plays the video but the skin does´t shows up.
here is my code:
package
{
import fl.video.FLVPlayback;
import flash.display.Sprite;
import flash.display.*;3
[Code].....
View 1 Replies
Nov 16, 2009
I need to get access to the buttons inside an flvplayback skin. After a bit of googling I've come across several solutions for AS2 but it doesn't seem to function in a similar way. I know skin_mc is a private function of the flvplayer but I can't for the life of me figure out how to access it as an object that retains its properties all I get back is a string with the path to the skin swf.
View 4 Replies
Apr 6, 2005
I need to get access to the buttons inside an flvplayback skin. After a bit of googling I've come across several solutions for AS2 but it doesn't seem to function in a similar way. I know skin_mc is a private function of the flvplayer but I can't for the life of me figure out how to access it as an object that retains its properties all I get back is a string with the path to the skin swf.d.
View 10 Replies
Mar 22, 2012
I want my FLVPlayBack to run at different speeds , specially run video with fast speeds. i want to know how can i acheive using action script.
i had searched for this in different ways and tried out different things ,
1) i have tried adding cuePoints using actionScript and use SeekToNextNavCuePoint for seeking it , but it does not seek to cue point which i added using actionsctipt , not sure for what exactly seekToNextCuePoint should be worked for?
2) somewhere i seen if we change framerate of stage , it will also change framerate at which video runs. i also tried this , but didnt worked for me.
3) i have seen that if we change frameRate of NetSream which strems video it also work... i am looking for this way as well.
View 3 Replies
Nov 21, 2011
I have a as3 project, a magazine like project.I have like 10 pages, and some of those pages, has a FLVPlayback component to stream flv videoes.I have one problem, and it goes like this:
When i enter a frame, with a FLVPlayback component and start playing the video, everything works fine. But when i then switch to another page, the video file keeps playing in the background.
View 1 Replies
Mar 21, 2012
i need to play FLVPlayback Video at different speeds , can i do this by changing frame-rate of FLVPlayBack and how can i achieve this using as3?
View 2 Replies
Nov 29, 2010
No matter whether you embed a flash video using Flash Satay, swfobject, or some other method, there are a number of parameters that can be passed to the embedded video. I'd like this to be a community wiki for the following questions: What parameters can be used to embed a flash video? How can the parameters be accessed via ActionScript?
View 1 Replies
Feb 8, 2012
From an HTML form, I wish to launch my existing working flex application passing in parameters E.G, login details.[code]...
View 1 Replies
Feb 1, 2011
So I usually use an object in the constructor to receive the parameters like new Class({param1:00,param2:0099,etc).To be able to access those parameters from other functions inside the class I create an object, and copy it:
Code:
public class MyClass {
var params = {};
public function MyClass(p){
[code]....
View 6 Replies
Oct 3, 2011
I'm building a flex 4.5 app that has a custom component extending SkinnableContainer. This custom component is basically a kind of collapsible panel. When you open it you see all the controls in the contentGroup, when you close they go away and you are left with the title. This is done in the skin by having the contentGroup included only in the open state.
I have a bunch of these containers in the app, some open by default and some closed. So in mxml the structure looks like:
<ui:MyCustomContainer open="false" label="bla">
<s:HGroup>
<s:Button />
<ui:AnotherComponent />
[Code].....
Note that if you hit the click me button before opening the second container we are unable to get the value from the control in the initially collapsed group. Opening the group once allows access to the value. Collapsing the group is still ok. It's the first time that's the problem. I have added creationPolicy to the container and itemCreationPolicy to the content group in the skin but no luck!
View 1 Replies
Feb 3, 2009
I am using flash CS3 with ActionScript 3.0. Suppose, I created a button component and a Combo-box component. Hence, SWF file consists of a Button and a Combo-box component. Now, my requirement is, How to access the instances and properties of these components(Button and Combo-box), so that I can create HTML webpages depending upon the Combo-box selection and the Button click events occurred on flash components? Note: Here, we need to pass/send the flash components' instances to HTML. How can we do it?
[Code]...
View 1 Replies
Feb 3, 2009
I am using flash CS3 with ActionScript 3.0. Suppose, I created a button component and a Combo-box component. Hence, SWF file consists of a Button and a Combo-box component. Now, my requirement is, How to access the instances and properties of these components(Button and Combo-box), so that I can create HTML webpages depending upon the Combo-box selection and the Button click events occurred on flash components? Here, we need to pass/send the flash components' instances to HTML. How can we do it? All I want is to access the flash components in HTML.
View 3 Replies
Jul 29, 2011
How do I get round the following error: Access of undefined property pMatrixBack . How do I access this component from within the ascript file?[code]...
View 2 Replies
Sep 18, 2011
I am pretty new to flex, specially to mxml part. There are some confusing things for me.[code]...
So question is how do I access that button's properties. I want when something happens in Xyz file, button's (someId) visibility to become false. If Abc.mxml was AS class file then it would be easy, just make object etc., but how to get if it's mxml file.
View 1 Replies
Nov 28, 2003
i figured i would try and tackle tweaking a component for fun. the one thing i cant figure out is how to space the boxes further apart.
i know that if you change the cell spacing in the paramaters it spreads it out vertically , but i only want to change the spacing in the width not the height
View 1 Replies
Sep 11, 2009
With mx:Box I can set the direction to be either "horizontal" or "vertical". I'd like to reverse the order of the components in the box though. For example:
Before:
|button1| |button2| |button3|
After:
|button3| |button2| |button1|
I've created a custom component that lives in a mx:Box and would like to do this in as simplest a way as possible.
View 1 Replies
Sep 24, 2010
how can I dynamically change the contentPath in FLVPlayback-Component, when one video is complete and the other one should follow? the code below it doesn't work for me. I don't show the full URLs, but the problem is definitely somewhere else. As separate contentPaths they work perfectly. I don't know why this shouldn't work, do I need smth. else to force FLVPlayback to refresh the content?
[Code].....
View 4 Replies