Professional :: Generate A Variable That Gets +1 Or -1 Depending On Clicks?
Sep 13, 2010
Is there a way to set up an unseen variable in flash sort of like keeping score?The best way I can describe it is from the BASIC language I used to use back in the day, where on a click you can make x=x+1, or x=x-3, or whatever depending on the button you click on.And then it would display the score (i.e. whatever is the current value of x) in the corner? give me a link or the actual code you would assign to a single button that will add or subtract to a displayed score in the corner.
View 10 Replies
Similar Posts:
May 4, 2011
I'm making a platform game where all of my level components (ground, background etc.) are within an array called 'levelArray' so I can move all the elements the same amount at the same time. I'm just starting to implement my second level, and I need to change 'levelArray' to contain different level elements. I've tried to put an 'if' statement to change the definition of the variable:
[Code]...
View 3 Replies
Mar 25, 2009
I am having problems with this if else statement. I have a variable (frame number 30) passing into my swf from another swf. This I know is working correctly.
But - I need to be able to direct to different frame numbers depending on the variable, this is working.
But when I place this code:
[Code]...
View 2 Replies
May 11, 2011
I have several textfileds in a movie clip and I want to change text in a textfiled depending on which textfield you have clicked on. So if I have clicked on at textfiled named "text1" i want:
[Code]...
And then will text1 have the same text as "inputfield", but this dosen't seems to work only if you had a textfield called "textvariable" but that is not what I want. So any ideas how you can make this function?
View 6 Replies
Feb 9, 2012
I have a project where I want to display a certain movieClip based upon what variable was set earlier. I have 5 different MovieClips that need to display depending on variables.
I have the variable set and working, but how can I script this to make it that if a certain variable say Var1 is set, then it chooses to display Var1_mc?
Can I just have it load the correct one, or do I just have it change the alpha setting of the correct one?
View 8 Replies
Apr 28, 2004
I have set the variable in my page using <param name="flashvars" value="menustate=<?php $pagename; ?>"> which works perfectly fine when I use a dynamic textbox in flash with the var name menustate.
But I need to send a MC to frame 2 if 'menustate = 2'. Anyhow, I just want to know how to control a MC with an external var. I can't use loadVars () because this var is coming from any page, not just one.
View 5 Replies
Jun 11, 2010
Is it possbile to make 'bumblebee' a variable?
var mybee:bumblebee = new bumblebee();
View 5 Replies
Mar 25, 2009
I am having problems with this if else statement. I have a variable (frame number 30) passing into my swf from another swf. This I know is working correctly.
[Code]...
(in case it was a string vs number issue.) it just stops - it does not go to frame 30. I need this because I need the file to stay on frame 1 if no variable is passed in. Am I doing something obvious wrong? Is there a better way to do this?
View 1 Replies
Oct 11, 2011
I need a variable to increment a value in each click of the mouse clicks in the end according to the final results.
View 2 Replies
Aug 31, 2009
Essentially I'm just trying to rotate an object (mc) clockwise or anticlockwise depending on the value of a variable called 'angle'.If 'angle' is positive it should go anticlockwise.If 'angle' is negative it should go clockwise.
Option 1
PHP Code:
if(angle > 0) {
mc.rotation += rotateIncrement;
}
[code]....
View 3 Replies
Sep 28, 2010
I am trying to generate variable names dynamically to get the X coordinate for many MovieClips on my stage.
This sort of works:
stop();
var End_X_mcArm01_Dot0:Array = [];
for (var Four_counter:int=1; Four_counter<=1; Four_counter++)
{
[Code].....
It stores the X coordinate in the variable End_X_mcArm01_Dot0[Four_counter] which is great. But I want to store these values for use later in my FLA.
If you turn the comment off on the second trace it errors although it appears to have created a variable called "End_X_mcArm01_Dot01".
View 4 Replies
May 11, 2011
How do I create a new arraycollection that can generate a unique variable name? Like:
AC+nu as in AC1:ArrayCollection
AC+nu as in AC2:ArrayCollection
AC+nu as in AC3:ArrayCollection
AC+nu as in AC4:ArrayCollection
nu++;
View 2 Replies
Nov 2, 2004
how to do this and not found much, so here goes:
I want to generate a variable number of random numbers less than 16 with no duplicate numbers
Ive posted the fla, and what i'm doing is generating a random number and putting it into an array then using a for loop to cycle through the array for each new random number to check if its already there. if it is, then i want to regenerate that number.
if you test the fla you'll see that all i get in my array is some lovely zero's and i sort of know why this is, but don't know how to stop it.
View 6 Replies
Sep 23, 2010
I'm building a project that has a character navigate through a room by clicking on the floor. Right now, the walls, character, and floor are all children of the same display object for sorting purposes. My question: is there a way to disable mouse clicks to the walls and character while allowing clicks to the floor? Using mouseChildren appears to be an all or nothing deal and I can't seem to isolate individual floor/wall/character objects for use with mouseEnabled.
View 4 Replies
Feb 9, 2010
All Flash is playing fine except now in IE7 +, when someone clicks on the Portfolio link, the preloader comes up but it doesn't advance to the 2nd frame with the content. However, if you click the Portfolio button again, it works fully. No issues on a Mac anywhere and no issues with Firefox in Windows. All content is in Flash and there are a couple of other movies that load as well but I've no idea where to start looking to fix this 'two-click' issue. It's set for Flash player 9 with AS2.0 and I used DWCS4 to insert. [URL]
View 3 Replies
May 21, 2010
I don't know how you solve the Gamma issues for users using PC and Mac. The thing is I have a video with the flvplayback component. Is it possible to, depending on the OS (the only way that I think of knowing if that person is using PC or Mac), have it pick a video or another (which would be the same but with different Gamma.
View 1 Replies
Apr 30, 2010
I have flash cs4, and I am using a list component. I know how to open swf when somebody clicks on the list, but is there any way to tell the component to open a .pdf file on a new window using the list component?
View 3 Replies
Jul 12, 2011
I have a site with 908 buttons. Basically a person clicks a button, makes a donation (through paypal) and then that button gets their name displayed when the mouse hovers over it. Essentially the button becomes the property of the person who makes the donation. how to disable each button when someone clicks it. Disabling a button isn't the problem. I need it disabled only when the person has made a valid donation. Each button has a unique instance name (b001 - b908). There must be a way.
View 9 Replies
May 31, 2010
I am currently working on a simple program that when the user clicks a button it adds 1 to a textbox for whatever button has been pressed. For example they click a heads button it puts 1 into the box, they click 1 in the tails button and it displays another 1 in the the box. What I am having a problem with is that once the total number of clicks has been done (15) I want it to stop and not allow anymore clicks.
Here is my code so far:
btn_Heads.addEventListener(MouseEvent.CLICK, runHeads);
btn_Tails.addEventListener(MouseEvent.CLICK, runTails);
btn_Clear.addEventListener(MouseEvent.CLICK, clearData);
var coinArray:Array = new Array();
var headsTotal:int=0;var tailsTotal:int=0;
var counter:int=0;
[Code] .....
The code runs all and well but when the total value reaches 15 I want it to stop and not allow anymore clicks.I was trying a for loop. Basically all I need it to do is that the Box's that are getting numbers put in them I need the total 1 to stop at 15 and not allow anymore changes.
View 1 Replies
Jul 13, 2010
how to navigate to one frame or another depending on whether there is a correct or incorrect answer for the learning interaction. I am using the CS3 drag and drop.
View 2 Replies
Jun 7, 2005
Is there a way of making a normal loadVars.load load a url depending on a variable you set in the swf?
var reciever = new LoadVars();
loadurl = "test_onload_3.cfm?propertyID="+MY_VARIABLE_GOES_HERE;
reciever.load(loadurl);
so that I can set my variable and then load the variables with the propertyID that I choose in the swf??
View 4 Replies
Jul 24, 2009
is there anyway to change a songs playback speed depending on a speed variable. heres the kicker tho im limited to using only as2.
View 2 Replies
Nov 24, 2004
Here's what i'm trying to do: Hide a MC depending on the path variable as:
[Code]...
Well that doesn't work, for some reason, i can't use a string as a multiple level path..
View 5 Replies
Nov 28, 2011
I would like to make a flash banner which inserts City name depending on ip address of user viewing the banner!
View 3 Replies
Nov 2, 2010
This seems like someting I should already know but I am working on a user interface that I want to be skinable. I have about 8 different graphical elements and I want to change the appearance of these 8 different movieClips just by clicking a single button. I thought I would just create a new keyframe in my main time line and then manipulate the movieClips but that changed the appearance of the movie clip on frame 1 as well. Clarification: I want to change the color of my user interface background and I want to change the color of some clickable images as well. I want frame 1 to have a white background and I want frame 2 to have a red background. Do I need to create more movie clips and drag them onto my stage or can I just use the existing movieClips since all I really want to do is change colors?
View 5 Replies
Jul 31, 2011
Feel a little stupid to ask this question. I have searched the forum for answers, but I havn't found any.I have a developer certificate from apple, and I need to convert it to a .p12 file.I double clicked the "developer_identity.cer" file and it gets imported into keychain access.The file does NOT show up in the "my certificates" or "keys" categori, but it is listed in the "certificates" categori.When trying to export I can not choose .p12 as format.
View 2 Replies
Feb 15, 2010
We have video cameras from Point Grey Research that are typically used for instrumentation and measuring.To oversimplify, the Flycapture software library they provide essentially captures single frames as 2-dimensional arrays of 16-bit greyscale values. We want to measure and process this information in real time. We also want to take this video, write some simple overlays on it (rectangular outlines, histograms, etc.) and make it available for viewing on a local area network using an ordinary web browser.
That is, we need to programmatically generate a live FLV stream on the fly--where the source of the video is not actually a device, but our program. The resolution and bandwidth requirements are modest; 320x240 30 fps 8 bit-grey = less than three megabytes per second. Some very simple, fast, easy compression would do, and in fact compression is not really needed at all.
I'm puzzled as how to where to start. I've browsed dozens of free and commercial packages, and they all seem to assume that the video source is a device.
The FLV and RTMP specs are intimidating. I can't easily identify any trivial subset (e.g. no compression) that would be easy to implement myself, nor have I found free or inexpensive commercial libraries that would do it for me.
View 1 Replies
Jun 17, 2011
Dyamic text box timer problem?
var score:int=0;score += 10;
addEventListener(MouseEvent.CLICK, fl_MouseClickHandler);
function fl_MouseClickHandler(event:MouseEvent):void{ mytextbox.text = String(score);}
on first click it adds number 10 then it doesnt goto 20 on the next clicks?
View 3 Replies
Nov 2, 2004
how to do this and not found much, so here goes:
I want to generate a variable number of random numbers less than 16 with no duplicate numbers
Ive posted the fla, and what i'm doing is generating a random number and putting it into an array then using a for loop to cycle through the array for each new random number to check if its already there. if it is, then i want to regenerate that number.
if you test the fla you'll see that all i get in my array is some lovely zero's and i sort of know why this is, but don't know how to stop it.
View 3 Replies
Sep 8, 2010
Why not have the Adobe Flash CS5 product directly generate mp4 and other formats in addition to SWF?From my chair (as an Adobe Flash CS5 user) it
-Going about using other additional software has direct effect on a software budget.
-Costs extra manhours to gather information of how it is done.
-Costs extra manhours/user time to process.
-Perhaps even increases the likelihood for errors and noise in re-processing already processed files (SWF->{F4V,MOV,MP4}) (F4V->{MP4,MOV},)relative to the original source FLA file?
View 3 Replies