close/exit.

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • doombo
    Forum Member
    • Jan 2002
    • 14

    close/exit.

    ok, i'm checking for different programs in the client computer, if i find the version i'm searching i close/exit the autorun, the problem is i have a shutdown action, and a that runs an application, the thing is i have a close button too so if i click the close button it runs the application, how can i close the autorun from th button whitout runing my applicationb.


    please help!!
  • Darryl
    Indigo Rose Staff Member
    • Jul 2001
    • 1908

    #2
    Re: close/exit.

    What you could do is use a variable in the Boolean condition. For example, let's say that you define a variable called
    %ManualClose%. Now you could initialize this variable to a value of FALSE to begin.

    Next, add an Assign Value action to your Close button that assigns a value of TRUE to the variable %ManualClose%.

    Next, go to the Shutdown event and place a Boolean condition for your Execute Program action that is something like:
    %ManualClose% = FALSE

    Now if the user clicked the close button, the program would not be launched, although if otherwise such if the user closed the menu without your close button the program would be launched.

    Hopefully I interpreted your question correctly.



    ------------------
    Sincerely,

    Darryl Hnatiuk
    Indigo Rose Corporation

    Comment

    • doombo
      Forum Member
      • Jan 2002
      • 14

      #3
      Re: close/exit.

      thanks Darryl Hnatiuk, you did interpreted my question correctly.
      Than you.

      Comment

      Working...
      X