ActionScript 2.0 :: Button Switch IF Statement For Video Player?
Oct 2, 2008
I am working on a video player that will have different Languages. The problem that i am have is that i can get the video to switch but i cant get the video to switch back. I have uploaded the file and here is the code that i have have a problem with.
lang.onRelease = function() {
if play = English)
{
[Code].....
View 1 Replies
Similar Posts:
Jun 18, 2007
I want to make a simple SWITCH statement with Button._name as variables for CASE
so i got this code:
Code:
Button.addListener(_root);
_root.onRelease = function() {
[Code]....
View 2 Replies
Jun 7, 2011
I'm very basic at flash, but sofar I've created a little portfolio page with a video background as a front page. I want to add a button to the background which will turn of the current video and play another video and when the button is pushed again it will play the first video again.[URL]
here's my as for the videobackground:
import VideoBg;
var videos:Array=new Array('videos/bird_short.f4v');
var num:uint=1;
[Code].....
View 11 Replies
Jul 29, 2010
What is the best way to switch a video to fullscreen from a button in AS3? Like the fullscreen button in FLVPlayback component - I'm aware the FullScreen tag needs to go into the HTML...
View 1 Replies
Feb 13, 2005
is there any switch statement in actionscript? if there is, how does it look like?
View 3 Replies
Mar 11, 2010
I currently have a code of a switch statement for as1- as2.[code]This code is for a dynamic tet with the var 'hint' (No ' ' )But in as3 there is no var and I am having trouble converting it to AS3 coding, can someone show me the correct conversion of the code to make it work with AS3. I will make the instance name 'hint'.
View 7 Replies
Nov 5, 2009
I have the following in my script:[code]where eProp is an Array.Tracing the eProp[3], shows the correct number (1 or 2) but the statement always jumps to the default part!In other words: If eProp[3] is 1 or 2, the switch do nothing, jumps to default.[code]What is wrong? AS can't evaluate Arrays? Or I did something wrong?
View 3 Replies
May 11, 2010
I generally use if statement for conditions. I would like to know the advantages of switch statement over if statement.
View 1 Replies
Apr 18, 2009
I am having an issue and cant figure it out..i had this working once but for some reason its not now...here is the [code]...
the trace statements work but no external swf's work.
View 4 Replies
Feb 27, 2006
Can you use ranges in a switch statement
E.g.
case 1 to 5:
case 20 to 30:
or even
case 1 or 2:
View 1 Replies
Jul 24, 2006
how to cycle backwards through cases in a switch statement.
based on it relative position??
Code:
var state=0;
nextB.onRelease=function(){
switch(state)
[Code]......
View 2 Replies
Aug 17, 2010
Working on a game where I load the level details from a XML file. In the XML file I list of the names of characters that I want to show on the screen; i.e. Snoop, Kilerz, Matts, etc.In my FLA file I have MovieClips that are named Snoop, Kilerz, Matts, etc.Currently I do this in my Character function:[code]so I can eliminate the switch statement as I have about 15 characters. When I use the new this[charId] I get the following error (for charId = "Snoop":error: Error #1069: Property Snoop not found on Character and there is no default value.
View 4 Replies
Mar 1, 2011
Id like to use a switch statement to check if a given value falls between certain values and then based on different values and then perform differently in each situation. I'm hoping i just have a syntax understanding deficit. Here's what i'm trying ...that doesn't work.
Code:
public function landingCheck():void
{
[code].....
View 7 Replies
Dec 17, 2008
I'm trying to use the value from a combo box in a switch case statement but it isn't working
Code:
var switchValue:int = 0;
switchValue = int(cmbColour.selectedItem.data);
switch(switchValue) {[code]....
View 4 Replies
Feb 11, 2009
how can I check the content of an array with a switch statement?
Code:
var array :Array =[0,0];
switch (array) {
[code].....
View 1 Replies
Oct 10, 2009
does anyone know if declaring new variables within a switch statement (inside of case: break actually creates new variables inside those switch statements, or are the variable declarations moved to the top of the function when compiled?
i know that when declaring new variables inside a for or while loop, the compiler declares those variables at the beginning of the function. is it the same for if or switch statements?
View 3 Replies
Nov 15, 2009
This is really hard to explain. Probably because its late and I am now totally confused and lost. Check out this page [URL] I want A, B, C, D, E all drag-able. when D is dragged B should mirror D's position X and Y plus E should follow D's X position, This works, try it. The opposite, When B is dragged, D should mirror B, and E should follow B's X, NOT working
[Code]....
View 2 Replies
Apr 5, 2011
I'm afraid I know the answer but I wanted to check first.
I want to run a single function based on multiple values.
[Code].....
View 2 Replies
Feb 24, 2011
I am trying to create a Flash styled shopping cart to integrate into my website. When the "Add to Cart" button is clicked, i am displaying the corresponding text down the side of the stage. However I need a "Total Price" Dynamic text field to display the Total price of all items clicked!I am new to flash and it's proving very difficult to me, as the only way i could think of doing this is creating Boolean variables with all the items and if "add to cart" had been clicked Boolean = True... But how do I code the addition of prices? and cater for all the variations that are possible?
View 15 Replies
Mar 5, 2010
I have a students xml from a database. The student_state column can have a value of "passed", among other values (hence the need for switch statement). When the list_changeHandler function is called, depending on the value of student_state, I want a form to display different fields. So I tried to dynamically create the form in actionscript, but it fails to show up when I run the flex application:
import mx.containers.Form;
import mx.containers.FormItem;
import mx.containers.HBox;[code].....
View 3 Replies
Jan 16, 2009
I'm trying to use switch/case staement instead of if/else but it's not working. Here's the code.
ActionScript Code:
//working code
function checkTarget(drag){[code].............
View 3 Replies
Jul 19, 2010
I've got a little script that scales a video to the stage. The scaleing function has a switch statement to indicate what kind of scaling to apply.
If I declare the case value of the switch statement internally all is fine. However if I load this value from an XML doc, even though the trace indicated the value has loaded, the switch never fires.
ActionScript Code:
/stage variables
var sH:Number;
var sW:Number;
[Code].....
View 3 Replies
Jan 24, 2012
Is it possible to have switch statement work with hasOwnProperty :
[Code]....
View 4 Replies
Feb 18, 2004
How do you do a range using switch statement in ActionScriptFor example:
score = txtScore.text
switch(score)
{
[code].....
View 3 Replies
Jul 13, 2008
Is there an efficient way to assign the following switch statement to two different buttons (movie clips)?
[Code]...
View 3 Replies
Oct 12, 2009
First time working with numeric comparison,[code]But, the code is not functioning. I don't want to use if .. else construct.
View 11 Replies
Feb 18, 2004
How do you do a range using switch statement in ActionScript For example:
[Code]...
View 3 Replies
Jun 1, 2009
In the following class
Code:
package
{
public class Factory
{
[Code]]....
A break point on the "Okay" line shows that x1 is null but x2 is equal to "<entity id="DRONE" points="100"/>".
If I take the whole block out of the switch statement, both x1 and x2 are equal to the expected xml.
View 6 Replies
Aug 29, 2009
I have a menu movieclip and an externally loaded swf on my main stage. The menu mc needs to control the externally loaded swf. For example the swf plays and pauses, then when any of the menu buttons are clicked the swf needs to play thru and be removed. currently I am dispatching an event for each button clicked with a switch statement. In the main timeline I need to listen for each of theses events and based on what button is clicked proceed to the correct content frame. How can I listen for different events and run one function that based on which event is registered perform a task with a switch or if statement?
View 4 Replies
Jun 20, 2009
I want to find out which type an object has. Therefore I thought of the 'switch' statement, but how would you do that? The following code does not work, but you will get the point of what I want to do.
Code:
switch (object) {
case is String:
trace("string");
case is Array:
trace("array");
[Code] ....
View 1 Replies