View Single Post
  #3  
Old 01-07-2010, 09:19 PM
Liberated Liberated is offline
not doing alot
Liberated's Avatar
Join Date: Feb 2008
Posts: 1,366
Liberated has a spectacular aura about
Quote:
Originally Posted by cbk1994 View Post
Looks good



You can do "/=", "-=", etc.
but i have to change Calculator_input.text.
and if i would do
PHP Code:
Calculator_input.text -= this.number1;
i would get Calculator_input.text Calculator_input.text this.number1;
when i need Calculator_input.text this.number1 Calculator_input.text
the wrong way arround :s
same with /= but for multiplying and adding it doesn't matter which one comes first.

for example
PHP Code:
Calculator_input.text 5;
this.number1 2;
i need this.number1 Calculator_input.text = -3
but 
if i would do =- i would get Calculator_input.text -= this.number1which is
 3 but in the order which it is entered in the calculator i need the first way

__________________
Quote:
Originally Posted by Tigairius View Post
I promise when I get rich I'll send you an iPhone. I'll send everyone an iPhone.
Reply With Quote