ActionScript 3.0 :: Adding Decimals Giving Wrong Output
Apr 24, 2009
I faced a strange problem today while adding some decimal number in AS3. I have simply adding trace(1.025 + 0.025); statment. It didn't returned proper output i.e. 1.05., instead it has given as 1.0499999999999998.
know the reason behind this. Actually we are calculating some angle and leng in geometric function.And we are getting some diffrence in calculation.
View 3 Replies
Similar Posts:
Nov 26, 2009
I'm making a canadian tax calculator - and it all works BUT I need it to check the fields and if they're blank, make it process it as zero. ALSO, I've now discovered I need to make the fields display as money would. Is it possible to make the fields only show two decimal points, put a comma in (like --> 2,546.00) and have it everytime show two zeros (sometimes it displays as this --> 26.0 instead of 26.00. At the *least* I need it to show 26.0 >> like this ...26.00
View 1 Replies
Nov 14, 2006
I got this frame i created and gave it a linkage name of : "myframe"
myframe has a picloader mc and a picmask mc..
I loop through attaching "myframe" at proper depths 12 times and once it is attached, i use loadmovie or loadclip to attach an image to myframe.picloader and enforce the mask onthe pic.
once I load the image, i do some tweening effects in AS but the width and height is no longer correct.
myframe is supposed to be 130 x 100 but now im getting 621 by 400.2.
View 2 Replies
Mar 2, 2008
Why the output would be NaN?
Code:
stop();
convertToCNY_btn.onRelease = convertToCNY;
convertToUSD_btn.onRelease = convertToUSD;
function convertToCNY() {
trace("convertToCNY clicked");
[Code] .....
I actually have to use xml to get the exchange rate, but I'd figure I'd start off like this to see if it works. Obviously it doesn't, for reasons beyond me, as it always is XD.
View 5 Replies
May 17, 2011
In my AS3 code all the elements on the page are dynamically positioned depending on the current width and height of the SWF - providing it's not under a certain value, then the items are back in their original position.
When debugging in the Flash player the size all reports correctly however when run from a web browser it does not - initially.
This is my HTML & PHP code for the entire page:
HTML Code:
<?php
function hashId($fn) {
$hash=md5_file($fn);
[Code].....
But I cannot get the size to report correctly without, say, clicking a button.
It seems to me like I need to force flash to re-draw the screen, but I had no luck trying to do that.
View 8 Replies
Mar 5, 2012
ERROR 1046: Type was not found or was not compile-time constant:textline.
I have nested my animation into a movie clip and have tried to use a pre-loader on it. The nested movie clip opening screen as a button on and the second screen as back and forward buttons. The movie clip works fine no problem until adding it to the pre-loader. The code for the pre-loader is (below) on frame 1 frame 2 to is tells it to stop and also were my nested movie clip is
function loadProgress(my_content:ProgressEvent):void {
var percent:Number = Math.floor( (my_content.bytesLoaded*100)/my_content.bytesTotal);
myLoadText.text = percent + "%";
} function loadComplete(e:Event):void {
currentFrame + 1;
} loaderInfo.addEventListener(ProgressEvent.PROGRESS, loadProgress);
loaderInfo.addEventListener(Event.COMPLETE, loadComplete);
View 1 Replies
Apr 22, 2005
Any tutorials on adding right and wrong sounds to a game? Im making this game where on a wrong answer there is a wrong sound and on a right answer a right sound! How to get the code to do this!
View 1 Replies
Jan 26, 2010
I have a simple drag and drop project. I have 2 drag able objects and 4 drop targets for those objects. I also have output text that gives a message depending on what target the objects are drug to (1 and 1, 1 and 2, 1 and 3, 1 and 4, 2 and 1, 2 and 2, 2 and 3, 2 and 4 and so on). I would like to add a button to this project. I want the button to change the output text. So if you had an object on 1 and 2 then hit the button it would read "1b and 2b" and so on, or anything else I want it to say. If you hit the button again it would go back to the original text "1 and 2".
View 1 Replies
Apr 15, 2009
I have a text field that displays a number from a variable. How can I make it so this number is always formatted to 2 decimal places?
For example, 1 would be changed to 1.00 and 1.5 would be 1.50, etc.
View 1 Replies
Aug 25, 2009
I know how to remove all decimals with:
ActionScript Code:
Math.round (xTwo*0.39);
But, how do I keep 1 or 2 decimals?
View 6 Replies
Nov 3, 2009
Can I use a decimal in a variable name in AS2? I need to create a variable named SCC.Q2.
View 4 Replies
Nov 20, 2009
I'm quite new to AS3 (coming from php/c#) and like it very much. My problem: trace doesn't output anything in the Output window anymore?!
View 2 Replies
Nov 20, 2009
I'm quite new to AS3 (coming from php/c#) and like it very much.My problem: trace doesn't output anything in the Output window anymore?!
View 3 Replies
Jul 20, 2009
I have made a class for handling colors with decimals.It's not really impressive i think, but i made it because i needed something like this in my game: in the normal interpolateColor function of Color if you do: color1: 0xFFFFFE color2 0xFFFFFF and progress = 0.8, then the tint will be 0xFFFFFF, whereas with my class it will be 0xFFFFFE, and store a value of 0.8 for blue, so that the next time it is interpolated, that 0.8 will be taken into account.it then only needs a 0.2 to jump to 0xFFFFFF.Look especially at the last function, thats what the class is about.[code]....
View 2 Replies
Aug 3, 2011
In AS3, from a division I get a number like this one: 0.9130406010219044.Is there any way to reduce the number of decimals (aside from multiplying that number for one million)? Is there a way to reduce the numbers BEFORE the division is performed?
View 5 Replies
Nov 24, 2009
One more thing that I need for my calculator:
how do I turn the decimals into whole numbers if the number is:
10.56 I want my number to be 11
10.49 I want my number to be 10
these numbers are inside an input field.
View 6 Replies
Aug 14, 2007
As the title, is there a class method in Flash to limit and round of a number's decimals ?Like :roundToTwoDecimals(1.2362 ) = 1.24
View 8 Replies
Feb 23, 2010
I'm trying to do a pretty simple modulo equation but i'm getting a weird return.0.03 % 0.01I was expecting there to be no remainder, so the answer would be 0. However the return flash gives me is: 0.009999999999999998If I bump everything up to whole Numbers it works just fine: 3 % 1 = 0However I know eventually I'll be doing something like 3.4 % 1 and I'm concerned that at that point I'll run into this same issue.
View 4 Replies
Nov 23, 2011
I'm working on some banners in various sizes and I noticed that I can only enter a font size in full pixels but not in decimals. I can type them in but noting happens to the size.
View 1 Replies
Jan 15, 2011
why it is not simple! i just want to restrict input text to allow only number with 2
[Code]...
how can i make it with actionscript 2.0 ?
View 1 Replies
Nov 12, 2010
I wonder if there's a more straightforward way to achieve this.[code]...
View 3 Replies
Jan 15, 2011
I have a issue.. I want to display the score as a whole number without decimals, anyone know how this can be done?
the relevant code:
ActionScript Code:
public static const SCORE_PER_APPLE:Number = 1;
public static const SCORE_MULTIPLIER:Number = 1;
private var score:Number;
[Code].....
So yeah.. it displays every decimal. Is there a way to round up the numbers, or not displaying anything less than a whole number?
View 2 Replies
Jun 14, 2004
I've this problem with rounding up. My problem is more complex than i describe here but I'm sure i can figure out the rest myself once I got this working. I want flash to round up with two decimals at all time.
[Code]....
View 1 Replies
Mar 31, 2010
Two questions concerning the numericStepper component and I think they both have to do with how to access the textfield part of the component.
1. How do you change the color of the textfield border in the numericStepper component.
2. I'm using the numericStepper to step up/down by increments of .25 (25 cents) and would like it to always show 2 decimals. But when it reaches a whole number (like 25) it will not show the 2 decimals. Do I treat this like a textfield to force the text to have 2 decimals? And if so, how do I access the .text?
View 1 Replies
Oct 2, 2010
This one seems though, as there isn't even a regular "round-to-specific-decimal" function.. (I know the work around for that though)[code]...
View 2 Replies
Mar 28, 2007
An onLoadProgress listener object is returning a variable I am using to tell the user what percentage of the movie has been loaded. I am happy with the results of
Code:
myListener.onLoadProgress = function(empty10MC:MovieClip, loaded:Number, total:Number):Void{
//setText();
var percent:Number = loaded/total*100;
loadingTxt.text = beginTxt + percent + endTxt;
however the number returned is like 15 digits long! Is there any way I can limit the variable to display only 1 or 2 decimal places?
View 3 Replies
Jul 22, 2005
I'm teaching myself ActionScript and the book I'm reading just got into input text capabilities. The book shows me how to link input text to a variable and output that text to the output window using trace. My question is: how can I display the text that the user input onto the actual movie. For example... if I wanted the visitor to type their name into the input text box and click Submit and then a phrase shows up with their name such as "Hold on Name, my site will be done soon." How do I reference that variable and have it actually display in my movie?
View 5 Replies
Jun 22, 2006
var nextY = 0;
var nextY2 = 18;
for (var count = 0; count < result_lv.typeCount; count++)
{
[code]....
The type count is correct but the information for the project is wrong.
View 1 Replies
Nov 5, 2010
Does a Flash CMS site give you the best of both worlds? I want asite but I need it to be searchable. Does a Flash CMS site rank well enough to do the job? If it does not rank well, is it because the Flash portions would get no SEO but the HTML portions would?OR is it something inherently missing in the software that will keep it low on the rankings, no matter what the ratio of Flash versus HTML there is on that site? Would an HTML site with Flash plugins hurt my rankings much? Could I solve my problem best by having an HTML based landing page that gives access to 2 sites, one strictly HTML and one either Flash or Flash CMS based? Assuming the landing page and HTML portions are optimized properly, is the content that is on the HTML landing page and HTML site going to give me good SEO results, even though one of the options to choose is a Flash site?
View 3 Replies
Feb 27, 2009
PHP Code:
stage.addEventListener (Event.ENTER_FRAME, lala);
function lala (event:Event) {
var object = new object_mc;
[code]...
How do I correctly declare a variable for each duplicate? The final line doesn't work in AS3 but it does in AS2. I want the same variable for each duplicate that I can individually change. Also how do I make a function for each duplicate? In AS2 I can do it by:
PHP Code:
object = duplicateMovieClip(........);
object.onEnterFrame = function () {
.........
}
View 7 Replies