Script Length
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2005-05-23
06:28 PM
- last edited on
‎2023-05-24
12:10 PM
by
Rubia Torres
Barry Halloran
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2005-05-28 03:24 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2005-05-31 11:11 AM
@Barry:
if a<5 and b<7 and c=0 and d=0 and e<15 and f>-2 and g>-8 and h>-15 and i<25 then print "it works"works fine. I don't know about limitations in the if .. then statement.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2005-05-31 11:13 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2005-05-31 12:35 PM
F. wrote:I confirm. No limits for "if ... then" statements.
I don't know about limitations in the if .. then statement.
Max length line is 255 characters, including spaces.
GS recommends max 120 for lines, and 31 for file names.
The number of parameters is limited to 512.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2005-05-31 01:00 PM
The number of parameters is limited to 512AC 8.x+ 512 parameters
AC 7 128 parameters (AFAIR)
AC 6.x 64 parameters (AFAIR)
This are the silent improvements in GDL. I have had some trouble with a few objects in AC 6, because I needed more than 64 parameters. But there was a trick to use Arrays as storage and a couple of multiple used normal parameters to push the values by an user interface and the parameter script into the arrays.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2005-05-31 01:45 PM
F. wrote:Workarounds, always workarounds.
This are the silent improvements in GDL. I have had some trouble with a few objects in AC 6, because I needed more than 64 parameters. But there was a trick to use Arrays as storage and a couple of multiple used normal parameters to push the values by an user interface and the parameter script into the arrays.
With the time, we have learned how to become Masters in workarounds.

F. wrote:I must admit i didn't try to test this limit.
The number of parameters is limited to 512

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2005-05-31 01:55 PM
With the time, we have learned how to become Masters in workarounds.... and how to make impossible things work.