Wednesday, 4 May 2016

BOOLEAN CALCULATOR AS3



---------------------------------------------------------------------------------------------------
AS3 CODE:
READ MORE

https://www.google.co.uk/search?q=%3Awww.calculadora.net&rlz=1C1GNAM_en-GBGB688GB688&oq=%3Awww.calculadora.net&aqs=chrome..69i57j0l5.200j0j4&sourceid=chrome&ie=UTF-8

[FLASH]Calculator.swf - ICT Games

www.ictgames.com/Calculator.swf

original calculator courtesy of Macromedia. NaN. 0. 0.0. 0.09. 0.098. 0.0987. 0.09876. 0.098765. 0.0987654. 0.09876543. 0.098765432. 0.0987654321.
You visited this page on 03/05/16.

Embed Calculator - Large Calculator

www.embedcalculator.com/BigCalculator.php

Embed on of our free online calculators on to your web site of blog, including this large calculator. Several other models, sizes and backgrounds for online ...

SWF Calculator | OPSEU Local 350

https://local350.wordpress.com/academic-contract/swf-calculator/

The following is a SWF calculator courtesy of our union friends at Fanshawe College SWF Template for Excel v2.1.

Downloading File /calc.swf - Scientific Calculator - OSDN

en.osdn.jp/projects/sfnet_scientificcalculator/downloads/calc.swf/

Free download page of Project Scientific Calculator's calc.swf.Fully functional scientific calculatorwith natural input.

[FLASH]broken-calculator.swf

www.statisticsonline.org/subtangent/broken-calculator.swf

Loading... 0%. Loading... 100%. Level 1. Broken Calculator. Eric has smashed his. calculator, but it might. still be useful... Next. Level 6. Level 2. Level 3. Level 4.

[XLS]SWF Calculator

humberfacultyunion.org/files/contract/SWF%20Calculator.xls

1, SWF CALCULATOR. 2. 3, This calculator is useful to see changes in your SWF if your class numbers change and if your evaluation factors change. It will do ...

[FLASH]Calculator SWF - Itandhome.com

www.itandhome.com/calculate/calculator.swf
Calculator keys 0-9 + - * / = . % ( ) sqrt x2 xy x! 1/x e g G N M+ MR MConv 2nd C AC ANS. Shortcuts 0-9 + - * / ENTER . % ( ) \ x ^ ! r e g G N f p M R v @ ESC A ...
You visited this page on 03/05/16.

[FLASH]Talking Calculator - Angles365

www.angles365.com/classroom/fitxers/4t/numbers/calculator.swf

Loading Calculator... Talking Calculator. c . Clear. 7. 4. 1. 0. 2. 3. 5. 6. 8. 9. –. X. +.
You visited this page on 03/05/16.

[FLASH]calculator.swf - Cisco

https://www.cisco.com/assets/prod/rt/flash/branch-wan-calc/calculator.swf

TO USE THIS Cisco Branch-WAN Business Calculator YOU MUST CONSENT TO THE TERMS OF THIS LICENSE AND DISCLAIMER. IF YOU DO NOT AGREE ...

Telecharger un fichier swf gratuit : Online graphing calculator - My HRW

https://my.hrw.com/math06_07/nsmedia/tools/Graph_Calculator/graphCalc.swf

A description for this result is not available because of this site's robots.txt – learn more.
http://www.embed.com/Calculator.php
http://www.embed.com/flash/StandardCalculator.swf
http://www.angles365.com/classroom/fitxers/4t/numbers/calculator.swf
http://www.ictgames.com/Calculator.swf
http://mathies.ca/learningTools.php
http://oame.on.ca/CLIPS/
http://www.statisticsonline.org/subtangent/broken-calculator.swf
http://www.xtec.cat/~smora/activitats/calculadora.swf
swf Calculadora
pguzmang/Calculadora-AS3
https://github.com/pguzmang/Calculadora-AS3
---------------------------------------------------------------------------------------------------
//AS3 CALCULATOR
//https://github.com/pguzmang/Calculadora-AS3

//PART1

var numero1:int;
var operando:String;
var nuevo:Boolean = false;

//PART2

numero0_btn.addEventListener(MouseEvent.CLICK, zeroEventListener);
function zeroEventListener (e:Event):void{
var resultado:int = int(resultado_txt.text);
if(nuevo) {
resultado_txt.text = "0";
nuevo = false;
}
else {
if(resultado != 0) {
resultado_txt.text += "0";
}
}
}
numero1_btn.addEventListener(MouseEvent.CLICK, oneEventListener);
function oneEventListener (e:Event):void{
var resultado:int = int(resultado_txt.text);
if(resultado == 0 || nuevo) {
resultado_txt.text = "1";
nuevo = false;
}
else {
resultado_txt.text += "1";
}
}
numero2_btn.addEventListener(MouseEvent.CLICK, twoEventListener);
function twoEventListener (e:Event):void{
var resultado:int = int(resultado_txt.text);
if(resultado == 0 || nuevo) {
resultado_txt.text = "2";
nuevo = false;
}
else {
resultado_txt.text += "2";
}
}
numero3_btn.addEventListener(MouseEvent.CLICK, threeEventListener);
function threeEventListener (e:Event):void{
var resultado:int = int(resultado_txt.text);
if(resultado == 0 || nuevo) {
resultado_txt.text = "3";
nuevo = false;
}
else {
resultado_txt.text += "3";
}
}
numero4_btn.addEventListener(MouseEvent.CLICK, fourEventListener);
function fourEventListener (e:Event):void{
var resultado:int = int(resultado_txt.text);
if(resultado == 0 || nuevo) {
resultado_txt.text = "4";
nuevo = false;
}
else {
resultado_txt.text += "4";
}
}
numero5_btn.addEventListener(MouseEvent.CLICK, fiveEventListener);
function fiveEventListener (e:Event):void{
var resultado:int = int(resultado_txt.text);
if(resultado == 0 || nuevo) {
resultado_txt.text = "5";
nuevo = false;
}
else {
resultado_txt.text += "5";
}
}
numero6_btn.addEventListener(MouseEvent.CLICK, sixEventListener);
function sixEventListener (e:Event):void{
var resultado:int = int(resultado_txt.text);
if(resultado == 0 || nuevo) {
resultado_txt.text = "6";
nuevo = false;
}
else {
resultado_txt.text += "6";
}
}
numero7_btn.addEventListener(MouseEvent.CLICK, sevenEventListener);
function sevenEventListener (e:Event):void{
var resultado:int = int(resultado_txt.text);
if(resultado == 0 || nuevo) {
resultado_txt.text = "7";
nuevo == false;
}
else {
resultado_txt.text += "7";
}
}
nummero8_btn.addEventListener(MouseEvent.CLICK, eightEventListener);
function eightEventListener (e:Event):void{
var resultado:int = int(resultado_txt.text);
if(resultado == 0 || nuevo) {
resultado_txt.text = "8";
nuevo == false;
}
else {
resultado_txt.text += "8";
}
}
numero9_btn.addEventListener(MouseEvent.CLICK, nineEventListener);
function nineEventListener (e:Event):void{
var resultado:int = int(resultado_txt.text);
if(resultado == 0 || nuevo) {
resultado_txt.text = "9";
nuevo = false;
}
else {
resultado_txt.text += "9";
}
}

//PART3
suma_btn.addEventListener(MouseEvent.CLICK, sumaEventListener);
function sumaEventListener (e:Event):void{
numero1 = int(resultado_txt.text);
operando = "+";
nuevo = true;
}
resta_btn.addEventListener(MouseEvent.CLICK, restaEventListener);
function restaEventListener (e:Event):void{
numero1 = int(resultado_txt.text);
operando = "-";
nuevo = true;
}
multiplicacion_btn.addEventListener(MouseEvent.CLICK, multEventListener);
function multEventListener (e:Event):void{
numero1 = int(resultado_txt.text);
operando = "*";
nuevo = true;
}
division_btn.addEventListener(MouseEvent.CLICK, divEventListener);
function divEventListener (e:Event):void{
numero1 = int(resultado_txt.text);
operando = "/";
nuevo = true;
}

//PART 4

clear_btn.addEventListener(MouseEvent.CLICK, clearEventListener);
function clearEventListener (e:Event):void{
resultado_txt.text = ""

}

igual_btn.addEventListener(MouseEvent.CLICK, equalEventListener);
function equalEventListener (e:Event):void{
var numero2:int = int(resultado_txt.text);
resultado_txt.text = Calculadora(numero1, numero2, operando);
}

function Calculadora(operando1:Number, operando2:Number, operador:String):String{
var resultado:Number;
switch (operador){
case "+" :
resultado = operando1 + operando2;
break;
case "-" :
resultado = operando1 - operando2;
break;
case "*" :
resultado = operando1 * operando2;
break;
case "/" :
resultado = operando1 / operando2;
break;
default :
trace("No es una opción válida");
break;
}
return String(resultado);
}



EmoticonEmoticon