i want to make a cd that let´s people install what they like, using checkbox´s
for the job.
so i made this that dos not work
[checkbox1]
onclik
result1 = Button.GetState("checkbox1");
[checkbox2]
onclik
result2 = Button.GetState("checkbox2");
.
.
.
.
.
.
and so on......
with a button that makes the final instalation
[install]
onclik
if ( result1 ~= 1 ) then
File.Run("AutoPlay\\Docs\\program1", "", "", SW_SHOWNORMAL, true);
end
if ( result2 ~= 1 ) then
File.Run("AutoPlay\\Docs\\program2", "", "", SW_SHOWNORMAL, true);
end
.
.
.
.
.
.
.
So, can anyone give me a hand ?? thank you

