2014-04-25 03:13 PM
2014-04-25 08:59 PM
ui_dialog..... ui_pict_button....in the interface script.
if glob_ui_button_id=1 then
alu= 1
parameters alu= 1
endif
2014-04-26 09:49 AM
2014-04-26 06:50 PM
2014-05-04 10:09 AM
2014-05-04 07:44 PM
if glob_ui_button_id=1 then
alu= not(alu)
parameters alu= alu
endif
This should work;
if glob_ui_button_id=1 then
if alu= 1 then
alu= 0
else
alu= 1
endif
parameters alu= alu
endif
2014-05-05 08:12 AM