2006-02-08 12:14 PM - last edited on 2023-05-24 12:08 PM by Rubia Torres
UI_DIALOG "Fire Exit Signs",444,266I'm getting an error at line 5 (the bold one) that there are missing parameters. But there shouldn't be. The parameter name is exactly the same as in the Parameters window, 2D script and parameters script, where it works. What's even more confusing is I've basically just copied this script from another one I did earlier, which works?
UI_PAGE 1
UI_INFIELD "sign_ty" !parameter name
0,0 !x,y position
419,250 !width, height
1 !versionFlag
fire_exits.tif !pictName
9 !nrImages
3 !nrRows
140, 90 !cellX, cellY
133, 83 !imageX, imageY
1,`North`,
2,`South`,
3,`East`,
4,`West`,
5,`North West`,
6,`South West`,
7,`North East`,
8,`South East`,
9,'No Arrow'
2006-02-08 02:15 PM
2006-02-08 02:42 PM
UI_INFIELD "sign_ty", !parameter name 0,0, !x,y position 419,250, !width, height 1, !versionFlag "fire_exits.tif", !pictName 9, !nrImages 3, !nrRows 140, 90, !cellX, cellY 133, 83, !imageX, imageY 1,`North`, 2,`South`, 3,`East`, 4,`West`, 5,`North West`, 6,`South West`, 7,`North East`, 8,`South East`, 9,'No Arrow'This should work.
2006-02-08 03:15 PM