ActionScript 3.0 :: Check If A Negative Number Is Less Than Another Negative Number?
Jul 17, 2011
check if a negative number is less than another negative number. The if condition logic seems to be in order as far as i can tell but it doesent work for some reason :
Code:
public function minuscheck(testnumber:int):void
{
if (testnumber < -1)
[code]....
View 6 Replies
Similar Posts:
Jan 25, 2009
how to turn a variable number from positive to negetive using AS2? eg:
Code:
myVar1 = 40;
//use code to change to negetive number
myVar1 = -40;
View 4 Replies
Jun 6, 2008
I need to check if a number is negative and if so, trace "true" and if not "false".
View 2 Replies
Aug 15, 2009
I'm working on a AS3 project where users will decide whether a random number is whole number or not.There are three boxes (box1, box2, box3), which will display random numbers. Under each box there are two check buttons (for example: bt1 and bt2).There are also two boxes counting correct and incorrect answers (correct1 and correct2). There is a button generating random numbers again (bt_2).The negative random numbers are not recognized by my conditional. Or I don't know how to handle conditional with negative numbers. Positive or negative numbers display the correct check mark? Here is my AS3
//counters
var i:uint=0; // correct answersvar u:uint=0; // incorrect answers
// making check mark invisibleco1.visible=false; // correctco2.visible=false; [code].....
View 2 Replies
Aug 15, 2009
I'm working on a AS3 project where users will decide whether a random number is whole number or not.
There are three boxes (box1, box2, box3), which will display random numbers. Under each box there are two check buttons (for example: bt1 and bt2).
There are also two boxes counting correct and incorrect answers (correct1 and correct2). There is a button generating random numbers again (bt_2).[code]...
View 9 Replies
Nov 13, 2007
Is there a way to convert a negative number into a positive using actionscript?
View 5 Replies
Mar 25, 2010
I have a stack of 3 Mcs, 1, 2 and 3, one over the other, at the same layer.
I want to make an action, that makes the top level MCs, when clicked, to go under the other 2 MCs, and so on.
Is it possible? I tried to make it, but discovered that it's not possible to define negative depth for a MC.
View 3 Replies
Aug 24, 2010
how or why it is happening??
example:
var myText:TLFTextField = new TLFTextField();
//lots of initialization to myText.
var myFormat:TextFormat = new TextFormat();
[Code]....
The last statement is the one with the trouble
View 1 Replies
Aug 12, 2011
f I trace new Date().toUTCString() I get something like: Fri Aug 12 07:14:06 2011 UTC.perfect. If I trace new Date().getTime() I get some long negative number which is decreasing as I continue to trace it. This is totally unexpected.
View 10 Replies
Feb 7, 2011
How do you generate a Number that is randomly postive or negative?
View 3 Replies
Aug 29, 2006
How would one produce a random number, ranged from say, -100 to 100?
View 3 Replies
Jul 16, 2011
Is there a direct way how to turn a negative number to positive using bitwise operations in Actionscript 3? I just think I've read somewhere that it is possible and faster than using Math.abs() or multiplying by -1. Or am I wrong and it was a dream after day long learning about bytes and bitwise operations?
What I saw was that bitwise NOT almost does the trick:
// outputs: 449
trace( ~(-450) );
If anyone find this question and is interested - in 5 million iterations ~(x) + 1 is 50% faster than Math.abs(x).
View 4 Replies
Jan 20, 2006
there is any method to check if a number is a decimal number or not? i searched in the help-panel, but didn't found something.
View 6 Replies
Jan 2, 2011
The only things i can think of is something like thistrace(Math.sqrt(4) is int)is there any other way?
View 9 Replies
Sep 28, 2009
Is there a way to check if a random number is a whole number or a decimal number?
View 9 Replies
Jul 16, 2009
Dear Guys I Want To Generate A Random Number Between 2 Number BUT Without Generating 2 Same Number I Mean If For Example Already Generated Number "2" Next Time Did Not Generate It , Is There Any Solution
View 5 Replies
Dec 29, 2011
Im using swipe on my android app and would like to define the boundary. But the container is a LOT bigger then the stage and will reach a negative value. How would I setup my if statement for this?
View 13 Replies
Aug 23, 2009
i have a label object.The background is in a color (set by user)The background color is in the format HTML (#FF4466 by example)I want to change automatic the color of the text inside, but i want the color make the text visible ! don't want a red font on red background!so i thought about the negative filter we have in picture program like photoshop, paintshop..etc. This effect return the opposite color
View 2 Replies
Apr 11, 2010
I want to make a text highlight in flex textArea but its htmlText doesn't support <font bgcolor='#FFFF00'> part of my text </font> so I'm searching for a font witch is the opposite of Courier new, when I embed it in flash, and write with that color I get highlight effect for that part of my text , as I type <font family="negativeOfCourier" color='#FFFF00'> part of my text </font>
View 2 Replies
Jun 1, 2010
i'd like to negate a number and would like to know if there's a built in method that will convert a negative number to a positive OR a positive into a negative, depending on the number.
i know about Math.abs(), but that only seems to convert negative into positive. is there a method that will do both?
View 3 Replies
Jun 10, 2011
Is there any Fastest way for this line?
ballAngelRadianVector = -ballAngelRadianVector;
And also this:
ballDegree = fee - ballDegree ;
View 1 Replies
May 4, 2011
I can get the cube root of a number by setting the index to a third:
ActionScript Code:
Math.pow(27, 1/3)
In this case though, the result is NaN
ActionScript Code:
Math.pow(-27, 1/3)
Why doesn't flash just assume that the result I am after is the simple result of -3? Also, how can I get around this?
View 4 Replies
Jan 19, 2007
Whats the best way to flip variable:Number polarity from + to - and back.Is there an actual method, or do you just assign the var to itself...eg...
speed = 5;
speed = -speed
View 2 Replies
Feb 19, 2010
how to format a dynamic text in "negative"? I mean for example white characters on black "box".
View 2 Replies
Oct 18, 2009
As far as I know, you can't refer to an array using negative indices in actionsscript, can you? I know it's possible in C, C++ and D, but not in actionsscript - to my knowledge. See here's my problem:
Code:
for (var i = 0; i<menucount; i++) {
xpos += menuitems[i-1]._width/2+miborder+menuitems[i]._width/2;
[code].....
View 4 Replies
Jul 16, 2009
I Want To Generate A Random Number Between 2 Number BUT Without Generating 2 Same Number I Mean If For Example Already Generated Number "2" Next Time Did Not Generate It,
View 4 Replies
Oct 18, 2009
This project was originally written in as1 and I'm in the process of converting it to as3.I have a question regarding arrays.As far as I know, you can't refer to an array using negative indices in actionsscript, can you? I know it's possible in C, C++ and D, but not in actionsscript - to my knowledge.[code]Am I not right in assuming, that this array call produces menuitems[-1] in the first run?All variables are properly declared - in fact this code works just fine, and I don't understand that.
View 3 Replies
Nov 9, 2009
Is there a way to test if a number is negative or positive.I have some clips that position themselves on and off the stage. IF one moves in the other moves out the same direction the other is moving in. This also works the same in reverse. I'm trying to do this by checking the current clips position and see if its a negative or positive number. If its a positive then I can move it onto the stage and move the other off in the same direction. Maybe there is another way of doing this but I thought if I could check its value and see if its negative or positive it would be a start.
View 5 Replies
Dec 6, 2011
I'm trying to edit the actionscript of catching game in which a object fall from top to bottom and if the catcher fail to catch the object and the object hit the bottom, the score is subtracted. [code]In addition, how do I end the game after the catcher fail to catch at least 5 objects to go to "game over" screen with final score displayed?
View 10 Replies
May 12, 2009
I am creating a roulette type game that calculates the winning number based on the rotation of the main wheel. I am using if/else statements to determine the winning number based on the rotation. I am tracing the rotation in the output panel. I would like my rotation to go from 0-360, but the output panel traces 0-180 then it starts counting from "-180-0"
The wheel can spin multiple times. how to keep the numbers positive from 0-360 and not have to write my if else to accomodate the negative numbers?
View 5 Replies