Jump to content

fmen

Active Members
  • Posts

    130
  • Joined

  • Last visited

Profile Information

  • Location
    Florida

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

fmen's Achievements

Adventurer

Adventurer (3/7)

1

Reputation

  1. Searching the forum for the very same question, I came upon this post. Unfortunately, the question remains unresolved. Any fresh input into a solution would be greatly appreciated by myself and the original poster, I am sure. Thanks.
  2. Thanks for all your hard work, Datenshi. Rapidqueuer was a great project. It was just a matter of time before rapidshare made major changes. I'm sure this is not the last one, either. Looking forward to your work with Megaupload....
  3. Very encouraging, Datenshi. The firt two times, the program timed out without downloading the file, but the third time was a charm. A little more polish and you have it.
  4. Well yes, version 3.3.0 but it is the same version on all of my computers. If I remove #include <GUIConstants.au3>, I do not get the error. You are right, of course that updating to the newest version resolves the problem.
  5. I get the following error: >"C:\TEMP\AutoIt3\SciTe\..\autoit3.exe" /ErrorStdOut "C:\Temp\JF\Practice.au3" C:\TEMP\AutoIt3\Include\ListViewConstants.au3 (52) : ==> Can not redeclare a constant.: Global Const $CCM_FIRST = 0x2000 Global Const ^ ERROR However, my only includes in the script are: #include <GUIConstants.au3> #include <WindowsConstants.au3> Funny thing is that it only occurs on one of my many computers. Any ideas. Thanks PS: I can post the script if needed.
  6. Danwilli, thank you much for the fix. I understood the logic, but unfortunately could not translate it into code. Still not sure how adding $a and $a+ accomplished the feat but I will continue trying to figure it out .
  7. Wow, I see that the small changes made to the "BitAND(WinGetState" allowed the buttons to function, but gui no longer goes to a hidden state when Notepad is inactive.... Sorry...
  8. Thank you very much for that, Melba.... I would not have figured that out. The gui shows and hides appropriately now, but the gui buttons no longer function. For example, Case $msg = $Swap WinActivate("Untitled") Send("!fx") will not close Notepad. I am not sure why. Thanks again.....
  9. I am trying to get a gui to show when the program, "JellyFish" is active and hide when it is not active. The hidden part works fine but the gui flashes off and on when "JellyFish" is active. Opt("SendKeyDelay", '.01') Opt("WinTitleMatchMode", 2) Opt("TrayIconDebug", 1) #include <GUIConstants.au3> HotKeySet("{ESC}", "Terminate") ;_______________________________________________ If Not WinExists("JellyFish") Then Run("J:\RS\JF\jfp3032.exe") WinWaitActive("JellyFish") WinMove("JellyFish","", 32 ,182, 981, 710) ;______________________________________________________________________________ $GuiWidth = 100 $GuiHeight = 520 $xPos = 880 $yPos = 137 $Gui = GUICreate("Jelly", 100, 100,$xpos, $yPos, $WS_POPUP, _ BitOR($WS_EX_TOPMOST, $WS_EX_TOOLWINDOW)) $Swap = GUICtrlCreateButton ("Swap", 15, 20 ,75 ,15) $Finish = GUICtrlCreateButton ("Finish", 15, 40 ,75 ,15) $Manual = GUICtrlCreateButton ("Manual", 15, 60 ,75 ,15) $Roll = GUICtrlCreateButton ("Roll", 15, 80 ,75 ,15) GUISetState(@SW_SHOW) ;_______________________________________________________________________________ Do Sleep(10) $msg = GUIGetMsg() If Not WinExists("JellyFish") Then Call("Terminate") If Not WinActive("JellyFish") Then GUISetState(@SW_HIDE) Else GUISetState(@SW_SHOW) Endif Select Case $msg= $Swap WinActivate("JellyFish") Send("^w") Case $msg= $Finish WinActivate("JellyFish") Send("^a") Case $msg= $Manual WinActivate("JellyFish") Send("!sd") Case $msg= $Roll Run ("J:\RS\JF\Roll.exe") ;Terminate() Case $msg= $GUI_EVENT_CLOSE MsgBox(0,"You clicked on", "Close") EndSelect Until $msg = $GUI_EVENT_CLOSE ;_______________________________________________ Func Terminate() Exit 0 EndFunc This part is obviously the part that stinks: If Not WinActive("JellyFish") Then GUISetState(@SW_HIDE) Else GUISetState(@SW_SHOW) Endif Thanks
  10. OK. got it and tried it. I get the following error: Line 68 Subscript used without non-Array variable. Looking forward to giving it a whirl as the greasemonkey script is kind of flaky, working one day and not the next. Thanks
  11. Great idea, can't wait to try it. Unfortunately, I get an error trying to download from your site. I've been using Megaupload auto-fill captcha++ for greasemonkey. You may want to look at the script as it is very tiny and does a great captcha job (http://userscripts.org/scripts/show/56989). It would be great if this could be incorporated into Rapidqueuer. Regards....
  12. @McCreator, I am a new Opera convert after years of using Firefox. Your UDF looks fantastic. Is there a helpfile with examples that would help me use your UDF. The thing I miss most about firefox is the ability to drag and drop a link so that it would open in a new tab (using the addon super drag n drop). I can do this in Opera by enabling Drag=255 in [user Prefs]. Drag and drop will work many websites but not all (eg my.yahoo homepage). Would your UDF be able to help with this? If not, have you found a workaround? Thanks.
  13. Thanks for the quick reply.... I am peripherally aware of FF.au3 and even tried using it a while back. Unfortunately, it is way beyond my meager abilities to make much sense of it. Furthermore, it would be great if there were a way of doing the above in other applications such as Opera, or Chrome etc where FF.au3 would not be effective.
  14. In Firefox or other browsers or applications, edit fields have a distinctive blinking cursor. This is different from the mouse cursor. Does AutoIt have a means of localizing the edit cursor similarly to MouseGetCursor(). as in: Do Sleep(1000) Until MouseGetCursor()= 2 What I'd like to do is wait for a firefox page to load based on the appearance of the blinking cursor in the username edit field. Once the blinking cursor appears, I can then Send("username") A point in the right direction would be appreciated. Thanks
  15. Wow! I hadn't checked the thread for a while, since the 2.2 version was working so well and was shocked to find my name as a contributer on the 2.3 version. What an honor! That's very, very generous of you. Thank you for that and of course for writing such a fantastic program.
×
×
  • Create New...