Jump to content

Recommended Posts

Posted

I don't think you can apply it to a “regular window” (i supose you mean by that a window with default styles?).

But today you have such wonderful functions like _Timer*, so if you need to update something, set data on the controls, etc., you can use them (see the help file).

 

  Reveal hidden contents

 

 

AutoIt is simple, subtle, elegant. © AutoIt Team

Posted

  jercfd said:

Does anyone else have a suggestion or a least a theoretical idea?

Do you mean soimething like this?

#include <timers.au3>

Dim $LeftPos

$GuihWnd = GUICreate("drag and run")
GUISetBkColor(0xffffff)

$ExampleLabel = GUICtrlCreateLabel("Drag Me (but not by controls) (IMG:http://www.autoitscript.com/forum/style_emoticons/autoit/wink.gif) ", 0, 60, 250, 20)
GUICtrlSetFont(-1, 12, 600, 0, "Tahoma")
GUICtrlSetColor(-1, 0xDD0000)
GUISetState()

$t1 = _Timer_SetTimer($GuihWnd, 20, "Example")

While GUIGetMsg() <> -3
    Sleep(10)
WEnd

Func Example($a, $b, $c, $d)
    $LeftPos += 1
    GUICtrlSetPos($ExampleLabel, $LeftPos, 60)
    If $LeftPos >= 300 Then $LeftPos = -250
EndFunc  ;==>Example
Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.
Posted
  jercfd said:

Yeah. This will work for me. Didn't know that you could use _Timer_SetTimer like that

Well MrCreatoR pointed out that you could could use them, but I just made an example because you didn't seem to accept his suggestion.
Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.

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
  • Recently Browsing   0 members

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