I created a DGS Panel and created a Radio Button. Start function twice when I start the Radio Button. Sample:
rb1 = dgsCreateRadioButton (35, 285, 157, 25, "Nos NORMAL", false, panel)
rb2 = dgsCreateRadioButton (35, 315, 157, 25, "Nos NFS", false, panel)
rb3 = dgsCreateRadioButton (35,340,157,30, "Nos HYBRID", false, panel)
-----
if source == rb1
OutputNotification ("Nos Stilin NORMAL Here it is", 4)
executeCommandHandler ("nos", "normal")
elseif source == rb2 then
outputNotification ("Nos Stilin Today by NFS", 4)
executeCommandHandler ("nos", "nfs")
elseif source == rb3 then
outputNotification ("Nos Stilin is Here by HYBRID", 4)
executeCommandHandler ("nos", "hybrid")
last
-----
RESULT = outputNotification ("Nos Stilin Made by NFS", 4)
executeCommandHandler ("nos", "nfs")
outputNotification ("Nos Stilin Today by NFS", 4)
executeCommandHandler ("nos", "nfs")
---------------------------------
I Solved the Problem