ActionScript 3.0 :: Video Voting Button - Getting Lost With Parameter Types?
Aug 21, 2009
I've built a working video player which uses the following function to select and play one of 50 videos.
function playVideo(e:MouseEvent):void {
if (e.currentTarget == video1) {
vidLink = "http//video1.flv";
ns.play(vidLink);
[Code]...
View 0 Replies
Similar Posts:
Dec 13, 2010
I am getting this back:
TypeError: Error #2007: Parameter text must be non-null.
at flash.text::TextField/set text()
[code]....
View 1 Replies
Mar 11, 2007
If i have a function and im strict typing: such as
[Code]...
obviously the second doesnt work because y is a movieclip and x is a number, but i want to be able to set x to whatever type is being passed in.
View 1 Replies
May 23, 2009
In my code there's a function that shows an image on the screen (or loads the image and shows a progress bar). This function is called by clicking on a thumbnail, and it uses a parameter [e.target.name] refering to the property "name" of the thumbnail clicked, which is an integer (or I believe so). The thumbnails are placed inside the cointaner_mc MovieClip.
Code:
container_mc.addEventListener(MouseEvent.CLICK, clickThumb);
function clickThumb(e:MouseEvent):void{
if (my_full_images[e.target.name] == undefined){[code]...
but I want to call this function by clicking on a button, which would need to pass another type of parameter, in this case, a variable which refers to the number of the image displayed on the screen plus one.I tried this:
Code:
clickThumb(image_num + 1);
But it doesn't work, I get the following error:
1067: Implicit coercion of a value of type Number to an unrelated type flash.events:MouseEvent.
How could I call the function clickThumb and make it use "image_num + 1" instead of "e.target.name" ?
Could I dispatch the event (MouseEvent.CLICK, clickThumb), passing this value "image_num + 1" ?
View 2 Replies
Apr 29, 2011
Looking into HTML5 video tag, and researching which browsers support which video file types, and my initial thought is things just got harder than just using flash. I am wondering if there is some skeleton code (combined with development approach for videos) that someone has figured out to do the following: If flash is available, use it If not, try html5 video ogg format If that doesn't work, try html5 video h.264 format If that doesn't work, try html5 video webM format Based on what I am seeing, am I correct in thinking that now, in order to accommodate all users on all browsers, a video needs to be published in 4 formats? If so, this HTML5 video thing is an epic fail!
View 2 Replies
Jan 24, 2012
Consider the following function:
Code:
public function foo(bar1:int, bar2:uint, bar3:String, bar4:Boolean):void{}
What I want is to have the different types of data represented by custom named types which are essentially representing the original data types. I other word, I would like to proxy the data types and have a valid function as following:
Code:
public function foo(bar1:PAR_Bar1, bar2:PAR_Bar2, bar3:PAR_Bar3, bar4:PAR_Bar4):void{}
so PAR_Bar1 would proxy the `int` data type, PAR_Bar2 would proxy the `uint` data type, so on and so forth.
The reason I need this is because I'm using a debugger with a GUI that can run methods and allows changing function parameter values in real-time, the issue is that the debugger can't tell me what parameter I'm changing, it only displays the data type of a parameter. So if I need to change 10 different parameters all of type int, the debuggers display all of them as int and not by their names.
I think that if I use proxy types I can easily differentiate between parameters.
So, my question: Is it possible to proxy data types? I mean map specific data types to custom data types that would represent the base data types?
View 2 Replies
Apr 5, 2004
i would like to make a voting poll with flash mx, how can i do it ?
View 2 Replies
Jul 31, 2009
Is it possible to lose events, or somehow corrupt the event cue, by button mashing? Our buttonPress function calls dispatchEvent, which starts an animation. The last frame of the animation also calls dispatchEvent. After about 20 fast clicks on a button, the animation runs as it should, but the last frame seems to not call dispatchEvent,because the addEventListener function is not called.My hunch is that the last frame did call dispatchEvent, but somehow the event was lost due to the constant button spamming sending other events.
View 0 Replies
Nov 20, 2009
So I downloaded this as3flvplayer script, but it hasn't been updated in over a year and has no documentation. It is based off loading the video from XML, but I would like to change it to where I can specify a URL parameter instead.
like: example.com/player.swf?v=video1.flv
Here is the original: [URL]
View 1 Replies
Jul 14, 2011
when uing netsream.seek(), how can i make a new request to the server if the seconds parameter specifies a time outside of the currently buffered video data. I want to seek unloaded time
View 3 Replies
Dec 1, 2010
how is possible passing parameter inside button.Sample.
for(var i:Number = 0; i<totalArray-1; i++) {
var item_mc = mc.attach.attachMovie("boxEven", "boxEven" + i, i);
item_mc.title.htmlText = item_mc;
[code].....
View 1 Replies
Dec 1, 2010
how is possible passing parameter inside button.
[Code]...
The problem is when I click and any button the value in the button is every the last item loaded and never the real value clicked.
View 2 Replies
Dec 14, 2010
Can we skip an optional parameter and assign value to the parameter after the skipped one?
For example I have a function:
public function Dialog(message:String,title:String="Note",dialogsize:int=99):void
{
}
I can easily call the function with a message and a title:
Dialog("HELLO","Intro");
Is there a way to skip the title and just pass in the dialogsize? I've tried it but can't make it work:
Dialog("HELLO",,dialogsize);
Is it possible to skip some optional parameters without using (rest) parameter?
View 3 Replies
Jul 15, 2010
i have a flash button and i want to pass the button link (after click) as parameter.
View 2 Replies
Apr 9, 2012
I want to create a few buttons which users can choose from to change the XML file for my RSS Reader in Air for Android. This is what the button will need to update:
var rssURL: URLRequest = new URLRequest("http://newsrss.bbc.co.uk/rss/newsonline_world_edition/front_page/rss.xml");
The above XML is the default one I have chosen. What code would I need for them to do this?
View 1 Replies
Jul 18, 2011
The stop button plays as expected. The play/pause button plays as expected. The issue is when you press pause which will cause the play button to appear, then press stop. the video automatically plays and it shouldn't. I have bolded the control button script for convenience.
[Code]...
View 1 Replies
Dec 7, 2009
I have created my first flash video and wish to allow the visitors to play the movie themselves instead of having the movie play automatically also have a stop or pause button too.
View 2 Replies
Dec 8, 2009
I am trying to read a XML file and check a parameter for duplicates of that parameter in the file. There could be up to 200 entries with this parameter which is a number. How can I check to see if there are any duplicates?
View 2 Replies
Feb 23, 2011
I'm trying to create a simple "universal" media player which presents the same user interface (or as similar as possible) for video and audio playback. Unfortunately, FLVPlayback seems not to be able to handle audio files as far as I can tell, so I'm using a Sound and SoundChannel.
My video playback is handled using an FLVPlayback component which is "wired" to standard controls on-the-fly when needed. What I want to do is wire them to the Sound / SoundChannel when I'm playing a sound so that the same UI widgets work in both cases. I'd like to avoid building all my components from scratch because the FLVPlayback component does a lot of nice stuff "for free" but it's starting to look tricky.
The standard PlayPauseButton is a MovieClip with two layers, one containing the Play button (and with the instance name play_mc) and the containing the Pause button (pause_mc). Inside one of these is a movie with some code like this:
stop();
this.upLinkageID = "PauseButtonNormal";
this.overLinkageID = "PauseButtonOver";
this.downLinkageID = "PauseButtonDown";
[Code]....
View 1 Replies
Aug 14, 2009
Forgive me for this stupid noob question but I want to call a function (loadList) that originally gets triggered after a mouseevent from another function (addToXML) that does not have an event.
The loadList function takes info from a XML var, sticks it into an array which then gets loaded into a tile list and that is working fine.
The addToXML function when called adds elements to the XML var after which I want to call the first function with the event parameter so it refreshes the items in the tile list.
I know it can do this by creating a new array and loading that into the tile list in the addToXML function, but it be much simpler to just recall the function.
I have tried things like
Code:
addToXML.addEventListener(Event.COMPLETE, loadList);
but all the event constants I have tried give me error messges like "1061: Call to a possibly undefined method addEventListener through a reference with static type Function."
View 3 Replies
Jun 5, 2011
I created a FLASH header for a website. My client wants me to remove a small line of text from it, but I no longer have the original .fla file. The text is over a simple gradient background, and I could probably just cover the text with a color rectangle.
View 5 Replies
Aug 1, 2009
I encrypted my swf by SWF Encrypt and I lost my fla.... :/Now I can't decompile this swf because it is encrypted.is It any possibilty to recover this .fla ? program, method ?
View 1 Replies
Jan 15, 2009
I've got a dynamic textfield clip which is placed twice on the stage. It also includes a button. Funny thing is, the first trace works (tracing its _y value: 0 for clip 1 and 200 for duplicate clip 2). When I press the down button of both clips however it traces undefined though it's the same line. How does onPress mess up the targetting of both clips? [code]
View 6 Replies
Jul 17, 2009
I created an image in Photoshop that included a gradient layer fading from transparency to a foreground color (in this case, black). I saved this image as a PNG file and imported the file onto my Flash stage. The gradient appears on the image as expected when viewing the stage in the Flash editor, however, when I test the movie, the gradient no longer appears.
View 2 Replies
Aug 17, 2010
I am trying to edit a flash file that was done in MX. I only have CS5. When i open the file, save and export there is a slight problem. Once published and uploaded, a dynamic text box which is meant to load text from the CMS appears blank. Is there something which can be lost in translation when saving from MX to CS5?
View 1 Replies
Aug 4, 2011
My problem is that my old computer *exploded* last week and i was making a project for my dad so I lost my (.fla) file. But, I have an animation of that same project in (.swf) on my USB Key because I've exported it just before my computer crash just to watch what It was looking like. So my question is, is it possible to open my (.swf) in Flash Pro and get all my snippet code back and all my frame back and everything else (like if it was my (.fla) project?)
View 3 Replies
Dec 22, 2010
When I start debugging a Flex project, I have a error because some xml aren't find, so i copy manualy all the files from the project (/src) to (/bin-debug).This happen to some xml files no every single file.
View 1 Replies
Nov 23, 2009
how to parse my xml to get it this way. The part im having issues with is in red.
ans[0][0] = Jimmy Carter
ans[0][1] = Thomas Jefferson
ans[0][2] = Barack Obama
[Code].....
View 1 Replies
Feb 13, 2010
I'v attached a listener to a movieclip on stage but I can access any "global" varaiables which are out side the listeners function.I lose the scope or something what can i do about it? here is some code.
PHP Code
player.controlbar.muteButton.addEventListener(MouseEvent.CLICK,mute0,false,0,true);
public function mute0(e:MouseEvent):void {
[code].......
View 3 Replies
Dec 20, 2010
I have a flash file which I want to loop, and have used this action on the last frame:
on(load) {
gotoAndPlay(1);
}
Seems to work, but I need to convert the file to FLV and am losing the loop when I do this.
View 1 Replies