Jump to content

Dazzler

Active Members
  • Posts

    29
  • Joined

  • Last visited

Profile Information

  • Location
    Gibraltar
  • Interests
    Been using AutoIT for almost 6 years now. Have set up regresion test frameworks (in 2 companies so far) using just AutoIT. AutoIT just works... and well. Unlike most software/web sites/apps these days.

Dazzler's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Yes! Fandabbadozy! Consider me in your fan club, Firefox. I'll order the T-shirt, mug and mouse mat please.
  2. Ack. IE resists. There is no "Windows Internet Explorer" in the window name/title. This must be the block. Still many thanks for the progress so far.
  3. 1 down 1 to go. Works for Chrome but IE is holding out. Good work Firefox.
  4. WinMove works with Firefox but not IE or Chrome. Anyone else encountered this problem? I have passed the correct window name (I used WinGetTitle("[active]") to be sure) Versions: IE 9. Chrome 28
  5. Do what? I put this "obfuscator mergeonly" into the search and got no results
  6. Running via F5 from the .au3 file. AutoIT versions the same.
  7. Dear People, A simple question from a simple person. My debugger normally kicks out the error and line in the console. But when I run the same file on another machine, I get the error in a msgbox. And this doesnt help at all as no line number is passed. How do I ensure I get the default debugging in the console? Many thanks
  8. The font color is purple The background is grey The border is black I'd like to change the border to my selection #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> $gui = guicreate("TEST", 200, 100) $label = guictrlcreatelabel("LABEL", 5, 5, 80, 20, $WS_BORDER) GUICtrlSetBkColor(-1, 0xb0c4de) GUICtrlSetColor(-1, 0x483d8d) GUISetState(@SW_SHOW) While 1 $msg = GUIGetMsg() select Case $msg = $GUI_EVENT_CLOSE ExitLoop endselect WEnd
  9. Gurus, I can set a label's ink color with: GUICtrlSetColor I can set a label's background colour with: GUICtrlSetBkColor But using $WS_BORDER, the border color is set as the ink color. Can I have the border color as another color again?
  10. Dear People, I have used a large jpg to cover most of a GUI. Then put a number of labels on top. the GUiGetMsg doesnt acknowledge the labels. if I remove the GUICtrlCreatePic, the labels are detected. I have tried buttons; still no success. How can I put controls on top of a GUICtrlCreatePic and have these controls picked up by GUiGetMsg? Many thanks
  11. You are a chuffing genius! That's perfect. Many thanks
  12. Easy one for those that have done this. No luck on the helps/forums for me. Open IE, make it quarter screen, scroll the screen to the bottom. How do I scroll the screen to the top using autoit command? Many thanks
  13. People, I have had no success with the Windowsconstants. I need a tiny, teeny GUI. No minimize, maximise, captions etc. Just a 3 by 3. Failing that. Is it possible to have a GUI where the GUI background is transparent ie anything behind shows through? Thank you.
×
×
  • Create New...