-
Notifications
You must be signed in to change notification settings - Fork 6
Conditionals
fabiantheblind edited this page Oct 12, 2012
·
1 revision
/*
Use structures to make decisions and repetition
with more operators for that
< > <= >= == || && !=
*/
####Conditional
if ( ){ }
{ } else { }
{ } else if ( ) { }
/*
create conditions like this
*/
ar a = 5;
ar b = 7;
ar c = 13;
if(a > b){
alert(b + " is smaller than " + a);
}else{
alert(a + " is smaller than " + b);
}
if((a + b) >= c){
alert(c);
}else if((a + b) == (b + a)){
alert("equal");
}else if((a > c) && (b > c)){
alert("combined");
}else{
alert("something else");
}
if(a != "foo"){
alert("bah!");
}
This wiki is maintained by:
fabiantheblind
Collaborators:
- How To Install And Run Scripts
- References And Links
- Tools
- First Session
- Comments
- Extended JavaScript Guide
- Variables And Operations
- Conditionals
- Arrays
- Output And Interaction
- Objects
- Classes
- Loops
- Functions
- Recursive Functions
- The ID Scripting DOM
- ExtendScript
- Inspect Properties
- app
- Documents
- Pages And Margins
- Masterspreads
- Layers
- GeometricBounds and Coordinates
- Text
- Line Feeds And Carrige Returns
- Simple Find And Change Grep
- Simple Find And Change Text
- Text Analysis
- Text Analysis ID FC
- Text Find Locations
- InsertionPoints
- Styles
- Objectstyles
- Rectangles Ovals Polygons
- Matrix
- Outlines Groups Alignment
- Graphic Lines
- Spiro
- Colors And Swatches
- HSL Color Wheel
- Pathfinder
- Fonts
- Transformation Matricies
- Duplicate And Transform
- Includes
- Storing Data In A Target Engine
- Create And Read Files
- Read In JSON From File And Eval
- Delay And View
- ScriptUI Resource Strings