View Single Post
  #1  
Old 07-05-2011, 08:32 AM
Twilikari Twilikari is offline
Registered User
Twilikari's Avatar
Join Date: Nov 2010
Location: America
Posts: 86
Twilikari is on a distinguished road
Calculator GUI Help

I was practicing my scriting, and I somewhat succesfully FIXED a calculator script. Too some of you, it may look veryyyy familiar. But I wanted to take it one step further. i wanted to make into a fully operational calculator GUI. I've never even attempted to make a GUI however, and I am completely lost. Any help is greatly appreciated!

I'm not looking for someone to do it for me, more of guide me. I want buttons for numbers in the GUI, and some kind of output for the answer.

PHP Code:
function onCreated() {
  
temp.2;
  
temp.1;
  
temp.3;
  
temp.onAdd(temp.atemp.b);
  
onResult(temp.a);  
  
temp.onSubtract(temp.atemp.c);
  
onResult(temp.a);  
  
temp.onDivide(temp.btemp.a);
  
onResult(temp.a);  
  
temp.onMultiply(temp.1temp.c);
  
onResult(temp.a);  
}

function 
onResult(temp.result) {
  echo(
"Result: " temp.result);
}

function 
onAdd(ab) {
  
a+b;
  return 
a;
}

function 
onSubtract(ab) {
  
b;
  return 
a;
}

function 
onDivide(ab) {  
  if (
== 0) {
    
"Error: Can't divide by 0!";
  } 
  if (
!= 0) {
    
;
  }  
  return 
a;
}

function 
onMultiply(ab) {
  
b;
  return 
a;

Thank's for the help, in advance! ^~^
Reply With Quote