Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 4 of 4
  1. #1
    Join Date
    Apr 2006
    Posts
    32

    Hidden application

    Hi
    how can i put a key to restore the hidden application when user press it for example i hidden the application and i want to restore the application when i press the Ctrl+M+6
    thanks for your help and sorry for my language.
    Last edited by sara2006; 05-29-2006 at 04:50 AM.

  2. #2
    Join Date
    Apr 2005
    Location
    In Wonderworld
    Posts
    246
    Put this On Show

    Code:
    Page.StartTimer(100);
    then this OnTimer

    Code:
    if System.IsKeyDown(65) then 
    Window.Restore(Application.GetWndHandle())
    else
    if System.IsKeyDown(81) then 
    Window.Hide(Application.GetWndHandle());
    end
    end

    When you press "A" the application restores and if you press "Q" then the application gets hidden


  3. #3
    Join Date
    Apr 2005
    Location
    In Wonderworld
    Posts
    246
    Allso look up Virtual Keys in the help file, for a list of keys that you might want to use.
    allso you could use this on a seond timer, if you want to have different timers

  4. #4
    Join Date
    Apr 2006
    Posts
    32
    thanks a lot Wonderboy

Similar Threads

  1. Run application hidden until......
    By mwreyf1 in forum AutoPlay Media Studio 6.0
    Replies: 2
    Last Post: 01-27-2006, 01:37 PM
  2. HOWTO: Distribute an AutoPlay Application with Setup Factory 6.0
    By Support in forum AutoPlay Media Studio 4.0 Examples
    Replies: 0
    Last Post: 10-25-2002, 02:33 PM
  3. INFO: Dynamically Resizing an Application at Runtime
    By Support in forum AutoPlay Media Studio 4.0 Examples
    Replies: 0
    Last Post: 10-21-2002, 02:23 PM
  4. HOWTO: Make an AutoPlay Application Expire
    By Support in forum AutoPlay Media Studio 4.0 Examples
    Replies: 0
    Last Post: 10-09-2002, 10:10 AM
  5. INFO: How to Set the Default Application Directory
    By Support in forum Setup Factory 6.0 Knowledge Base
    Replies: 0
    Last Post: 09-25-2002, 12:02 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts