Jump to content

Run minimalised


 Share

Recommended Posts

What are all the options to run a script minimalised? I've heared about a program, but what progrma is that? And are there other ways?

I've looked in the helpfile and no results, but im problaby blind again as always ^_^

Link to comment
Share on other sites

Like this

#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>


    GUICreate("My GUI") ; will create a dialog box that when displayed is centered
    ;============================
    ;Run everything you want to do here
    ;============================

    GUISetState(@SW_MINIMIZE); will display Gui Minimized

    ; Run the GUI until the dialog is closed
    While 1
        $msg = GUIGetMsg()

        If $msg = $GUI_EVENT_CLOSE Then ExitLoop
    WEnd
[Cheeky]Comment[/Cheeky]
Link to comment
Share on other sites

I got an script that will say hi to some people on MSN, is that possible to be runned minimalised?

MINIMIZED.

Zompy, you are again in your same style? Read this first, then ask a specific your question. OK?

Edited by Yashied
Link to comment
Share on other sites

Link to comment
Share on other sites

The language is almost unpenetrable. My best guess is that it needs to run when MSN is minimized so it probably needs _WinAPI_ShowWindow().

On another note, has anyone written a script that will click "Fast Reply", insert the text "Have you looked in the help file?" and then click "Add Reply"? ^_^

WBD

Link to comment
Share on other sites

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...