ActionScript 2.0 :: Round A Number To The Nearest 5 Or 10?
Nov 28, 2004I have the following numbers: 10.98, 1.23, 5.66. I want to round the last digit to the nearest 5, to get: 11.00, 1.20, 5.70.
View 3 RepliesI have the following numbers: 10.98, 1.23, 5.66. I want to round the last digit to the nearest 5, to get: 11.00, 1.20, 5.70.
View 3 RepliesI have been trying to find some code that lets me round a number to the nearest multiple of another number.So if for example we have number 44 the nearest multiple of seven would be 42.
View 1 RepliesI have the following numbers: 10.98, 1.23, 5.66. I want to round the last digit to the nearest 5, to get: 11.00, 1.20, 5.70.
View 3 Replieshow to round up to the nearest X?
eg. I want to round up to the nearest multiples of 90
I am building a control to allow me to set a meeting time, and I would like it to use as a default, the current time rounded up to the nearest 15 minute interval. So if it is currently 6:07, it would read 6:15 as the start time.
Does anyone know how this might be accomplished, or have run across a code snippit that would put me on the right track?
I want to round a whole number down to the nearest whole 10th. Like 52, becomes 50. Or 49, becomes 40. Or 2005, becomes 2000. Does that make sense? I imagine it has a math.floor approach, but I can not figure it out.
View 5 Replieshow do you round a number to 4 digits... so 3.45356345345 is 3.456 and 1 is 1.000
View 5 RepliesI need to be able to round a given number to an even number that is divisible by 10, 100, or 1000 depending on it's size.
For example:
4 would be 0 -- Round to nearest 10
6 would be 10 -- Round to nearest 10
54 would be 50 -- Round to nearest 10
[code]....
I've been scanning the WWW for a formula to do this in as3, but have come up empty handed.
I have a problem with this code :
<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"[code].....
I get the right number when I click on only '+' or only on '-'But if I click '-' until 0.7 and '+', it stays at 0.7
The same append when I click '-' until 0.9 when '+', it stay to 0.8. Why? How can I do to increment or decrement a Number by 0.1?
how do you round a number to 4 digits...
so 3.45356345345
is 3.456
and 1
is 1.000
i got an easy question that i couldn't find the answer to. what line of code do i need to use to change 123.456789 to 123.45.
code
oldNum = 123.456789;
newNum = ???
When getting the rotation of a movie clip I sometimes get a number like this: -1.4033418597069754e-14
And this number seems to break simple math. see my code below:
var thisRot:Number = rotation;
trace("thisRot: " + thisRot);
//outputs - thisRot: -1.4033418597069754e-14
[Code].....
How can -1.4033418597069754e-14 round down to 0? And Math.round(thisRotAbs) also results in 0. So how can this be? And how can 180 - -1.4033418597069754e-14 = 180?
Is there a way, or even better a class available in flash to help me round a number to a specific point. For example, I have need to have a number rounded to the nearest 15th, how would I do that?
View 7 Replieslets say i do some simple AS3 math and get a Number of 199. How can i use a Array with values of "preferred" numbers, compare the 199 to the array and round up or down to the closest value in the array?
[Code]...
I want to round the 199 up to 200(closest match) and have the myMatch = the rounded number from the array.
I'm trying to syncronize an audio and some text by highlighting it. In the main movie I have counter variable which calls charCounter3.as and timeVars variable which calls timeSettings.as I have onEnterFrame function that highlights the text while sound is playing.
My code is:
function onEnterFrame(e:Event):void {
pos=soundChannel.position;
var minutes:uint=Math.floor(soundChannel.position/1000/60);
var seconds:uint=Math.floor(soundChannel.position/1000)%60;
debug_txt.text='position: '+pos;
[Code] .....
Highlighted text needs to be updated on audio forwards and backwards. I think onEnterFrame isn't being able to catch the timeArr values.
I have a Number type variable that is outputting as 3.46666666 I want it to round it up to 1 decimal place i.e., 3.6 so I can display it in a text field what do I do any ideas?
View 2 RepliesIs there a way to use Math.Round to ensure that ALL text boxes are on whole number, X,Y coordinates?
View 4 RepliesMy friend and I are working on a flash project in actionscript 3, and we are trying to move several movieclips by a portion of a pixel. Since we have filters on these movieclips, flash rounds their location to the nearest pixel, making the motion look jumpy. Is there anything that can be done to stop flash from rounding their location to the nearest pixel?
View 6 RepliesI am trying to detect bodies which are near current. To do it, I've created quite a big collision shape, around the current body, and made it sensor. Collision event was triggered, but it's not what I need. Main thing is that collision event is called only first time when another body entered the detection field... And I want to be able to detect changes in bodies location, after it. (I am considering the fact that other bodies are moving inside detection field)
View 1 Replies[Code]....
two balls are stationary on stage and I am dragging ball 1 between them. I want my program to deny the ability to do this (technical terms) and move the ball automatically to the closest point available that does not overlap either of the other two balls i.e. the left side of the dragged ball may touch but not over lap ball 3. I have a feeling the circular equation: (x-a)^2 + (Y-b)^2 = c comes into it but it may need pythagoras instead as the balls are all circular but not all the same size. The best way I can see for this is to write a multi-part equation for the bounds of boths balls and then finding the nearest point, but not sure how to do this in as3, perhaps using the 'for each' tag.
AS2, + CS4 Flash I am trying to develop a 'Nearest Store Locator' in flash for part of my website. Basically instead of having all of my stockists and stores listed on the website, I would like to have an input box, where a user can put in their Postcode, and the flash swf will search the stores we stock by the postcode(s) and bring up the closest 3 - 5 stores. Is this possible to do,
View 1 RepliesDear 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 RepliesI 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 RepliesI want to round 4.239 to 4.24
View 2 RepliesWhat is math.round() do? In kirupa's Random numbers tutorial, he explained the use of math.floor(), but said round() was for another time. Yet I see that, and not .floor() in use in the random movement tutorial.
View 1 RepliesI have a graphics object.I want it to doa full turn all the way round.To give the impression that it's turning around.What I can do is create an object, put another instance on a key frame later, and on that instace simply flip the object horizontoally.When I play the animation...It has the effect of doing half the turn.what I want is something that flips all the way round!I've played with trying to do this...But i just cant get it to work.
View 1 Repliesi have a big set for a new animation im doing but i only want to view one part of it at once and have some sort of camera panning effect going round my stage. is there a plug in or somthing for this. i have looked everywere. I know it can be done as i have seen it before
View 1 RepliesI want to make a rotating cube with rounded edges.I already saw lots of cube sources, but i need one with rounded edges.My maths actionscript is not so good.
View 1 RepliesI have a simple AS1 script running on a button:
//
on (release) {
a = Number(answer2);
w = Number(withvat);
v = Number(vat2);
answer2 = (w / 117.5 * 100);
vat2 = (w / 117.5 * 100 * 0.175);
}
It works but the results are sometimes many decimal places long. Any way I can make my results round to two decimal places (accurately). So 5.6994 becomes 5.70 etc.
Is it possible to round the corners of a flash stage, so that when I insert the SWF into dreamweaver, it inserts more of an oval instead of a rectangle?
View 2 Replies