Jump to content

hugobossv8

Members
  • Posts

    5
  • Joined

  • Last visited

hugobossv8's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Ok, sorry...I figured this out now...it looks like I'm using a newer version of AutoIT and I needed to add these #include statements: #include <WindowsConstants.au3> #include <Constants.au3> #include <GuiConstants.au3> #include <StaticConstants.au3> After I did that, it's working now! Thanks! Excellent!
  2. thank you so much for sharing LazyCat! I'm having problems with the code however. When I run it by selecting "Go" in the SCITE editor, I get the errors below. Can you please help me to figure out what I should do to fix this? Thanks you! WARNING: $SS_RIGHT: possibly used before declaration. GUICtrlCreateLabel("Title:", 101, 18, 27, 17, $SS_RIGHT) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ WARNING: $SS_CENTER: possibly used before declaration. $hLabelTitle = GUICtrlCreateLabel("", 133, 18, 436, 17, BitOR($SS_CENTER, ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ WARNING: $SS_GRAYFRAME: possibly used before declaration. $hLabelTitle = GUICtrlCreateLabel("", 133, 18, 436, 17, BitOR($SS_CENTER,$SS_RIGHT,$SS_GRAYFRAME, ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ WARNING: $SS_WHITEFRAME: possibly used before declaration. $hLabelTitle = GUICtrlCreateLabel("", 133, 18, 436, 17, BitOR($SS_CENTER,$SS_RIGHT,$SS_GRAYFRAME,$SS_WHITEFRAME, ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~^ WARNING: $SS_SIMPLE: possibly used before declaration. $hLabelTitle = GUICtrlCreateLabel("", 133, 18, 436, 17, BitOR($SS_CENTER,$SS_RIGHT,$SS_GRAYFRAME,$SS_WHITEFRAME,$SS_SIMPLE) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~^ WARNING: $SS_NOTIFY: possibly used before declaration. $hTargetPic = GUICtrlCreateIcon($ICON_TARGET_FULL, 0, 24, 20, 32, 32, BitOR($SS_NOTIFY, ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ WARNING: $WS_GROUP: possibly used before declaration. $hTargetPic = GUICtrlCreateIcon($ICON_TARGET_FULL, 0, 24, 20, 32, 32, BitOR($SS_NOTIFY,$WS_GROUP) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ ERROR: $SS_RIGHT: undeclared global variable. GUICtrlCreateLabel("Title:", 101, 18, 27, 17, $SS_RIGHT) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
  3. Ok, it looks like somebody posted this already...sorry for the repeat post...looks like the answer is here: http://www.codeproject.com/KB/dialog/windowfinder.aspx I'll try to go through this to see if I can figure it out.
  4. Hi, I'm trying to create a GUI with an interface control like the Finder Tool widget used in the AutoIt v3 Window Info tool. I don't need it to get all the info of the window it's drgged to though, all I need is for there to be a drag and drop widget that you can drag to other windows and then it saves the Title name of the window you drag it to into a variable. Are there any examples of how to create such widget? Any help would be much appreciated! Thanks!
  5. Is there a way to write script that will save the value from ControlGetText when moving the mouse over a control, just like the AU3Info.exe window does, except I want to save the value of a control I click on to a variable. Any help is much appreciated!
×
×
  • Create New...