Hi, I don’t need help with this but I thought I’d post it to bring attention to this…
I’ve just tired doing a simple sum but AS is adding an extra 0.01 to my equations for some reason. All I’m doing is taking a value, adding 100, then subtracting 100 but getting a different result from what I started with!
ActionScript Code:
[FONT=Courier New][LEFT][COLOR=#808080]*// Start off with a value*[/COLOR]
[COLOR=#000000]var[/COLOR] myValue:[COLOR=#0000ff]Number[/COLOR] = [COLOR=#000080]7[/COLOR].[COLOR=#000080]6[/COLOR];
[COLOR=#0000ff]trace[/COLOR]COLOR=#000000[/COLOR];
[COLOR=#808080]// Add 100 to myValue[/COLOR]
[COLOR=#000000]var[/COLOR] myValue:[COLOR=#0000ff]Number[/COLOR] = myValue+[COLOR=#000080]100[/COLOR];
[COLOR=#0000ff]trace[/COLOR]COLOR=#000000[/COLOR];
[COLOR=#808080]// Subtract 100 from myValue, should be 7.6[/COLOR]
[COLOR=#000000]var[/COLOR] myValue:[COLOR=#0000ff]Number[/COLOR] = myValue-[COLOR=#000080]100[/COLOR];
[COLOR=#0000ff]trace[/COLOR]COLOR=#000000[/COLOR];
[/LEFT]
[/FONT]
Very strange!
lewi-p