June 30, 200421 yr Newbies Hi! I have a number value in a field, ex: 3. I will like to print a layout based on what the field contains. Can this be done thorugh a script? Thanks!!! Ceci
June 30, 200421 yr Assuming the field is global and you mean print a particular layout based on it, then you could do something like If [globalnum = 1] Go to Layout [one] Else If [globalnum = 2] Go to Layout [two] ... End If Print [ ]
June 30, 200421 yr Well, of course if this number follows your layout ordering, you could GoToLayout[LayoutNumber in Field, YourGlobal]
June 30, 200421 yr Author Newbies what I mean is: I have a number field called <number of labels> (to be printed). If I enter a "3", I wish to print that label 3 times. Can I do this? Thanks! Maria
June 30, 200421 yr Hmm..kinda different querry. 3 times. Isn't that 3 x1 time ? Why not a loop with your global for an end loop if gCounter = yourNumber SetField[gcounter, 0] Loop EndLoop If [gCounter = YourNumber] SetField[gcounter, gCounter+1] Print EndLoop or something alike...
Create an account or sign in to comment