Difference between revisions of "AMI Script"

From 3forge Documentation
Jump to navigation Jump to search
Tag: visualeditor
Tag: visualeditor
Line 1: Line 1:
<syntaxhighlight lang="amiscript">
+
= AMI Script Introduction =
FormRadioField frf = session.getPanel("there's no way");
+
 
tablepanel tp = session.getPanel("another one");
+
== Conventions ==
int num = 0;
 
String temp = null;
 
double dub = 12.0 + 13.0;
 
if (true)
 
    layout.alert("hey mir");
 
else
 
    session.alert("not hey");
 
</syntaxhighlight>
 

Revision as of 00:00, 24 March 2021

AMI Script Introduction

Conventions