Jump to content

markedagain

Members
  • Posts

    10
  • Joined

  • Last visited

Everything posted by markedagain

  1. the issue is there is 4 buttons all starting a diffrent action with js starting the work to be done, so i really need to click the button. no matter at the end i just use mouseClick and coordinates for that part of the automation
  2. ok, so i have a job that requires me to do the same work 150 times , so i decided to write a quick script. using the ff.au3 i got most of the form interaction working. but on 1 of the pages when i do _FFClick("da70b9f44e6cb167b06c3fb6b69dba9cc7bcdd57","name",0) momentarly when looking at the source code of the page in firebug the element all of a sudden has disabled="" added to the form and the button does not really get clicked. and 1 sec later the disable attribute is removed once again is this a security feature of the site or normal behaviour of ff.au3 ? here is what the element looks like before the command is sent and when the command is sent <input type="submit" name="da70b9f44e6cb167b06c3fb6b69dba9cc7bcdd57" value="Reissue Certificate" tabindex="11"> <input type="submit" name="da70b9f44e6cb167b06c3fb6b69dba9cc7bcdd57" value="Reissue Certificate" tabindex="11" disabled="">
  3. ok so second question , can i execute a autoit script from another autoit script but pass paramateres to it?? like run(myscript.exe -h "somthin")
  4. *Bump* Hey all , maybe my question was not well put. can i put autoit in a Class? so i can do something like ;when we detect new window is open $myObj = new myScript $myObj.hdl = window[k][1] $myObj.run so if i had many windows i want to create many objects and they all act independently
  5. Hey All, not even sure how to ask this. but im trying to accomplish something im used to do very easly in C++. i have a script that i modified with OCR. I want to create a class or object of this function and attach it to each time a chat box is opened. so if i have 5 chat box's the Ocr function will independently track all 5 windows with OCR. i dont think this is possible with AutoIt. So im thinking i prob will have a endless loop checking to see if any new chat box's open, if a new one opens run a new script on this active window. although i would like to pass a parameter to this script (something like the handle of the window to attach it to) or else im not sure how to start the autoti script specficaly for a windows or my second idea was have autoit rewrite a new script everytime a new chat box opens and name the script accordingly and run it.(at least ill get paramater hard coded into new script) does 2 ideas are in my head cause i dont think i can create many objects of the same script and have them all independently run in the same script. if i am mistaken please let me know this will save me dozens of hours
  6. not sure if my mssgs with pm where sent. so im posting here in case you can download the zip file of the samples from here http://www.autoitscript.com/forum/index.ph...st&id=17676 there is 3 samples, they all seem to do some other type of error using all the same UDF
  7. hey jos, i have been using youir script for some time now. i did run into some problems using MrCreators hover over udf. [link]http://www.autoitscript.com/forum/index.php?showtopic=55120[/link] btw sorry to cross post, i posted there yesterday and he told me to check my obfuscator, and since its your i post here now. it seems even the most basic obfuscation seems to throw off the hover over commands. any idea or suggestions?
  8. the bofuscater is the the one that Jos wrote here on the site [link]http://www.autoitscript.com/forum/index.php?showtopic=43853&hl=obfuscater[/link] ill try to play around with the parameters, and ill post on that topic to. M
  9. first off GREAT Script. but when i obfuscate the code the hovers dont seem to work no more. any suggestions?
  10. Hey guys, i have been using autoit for some time now and i really enjoy this great tool. My issue is when i run my script on a Virtual Descktop my mouseClick Coords seem to be WAY off. i have set all the options to click inside the active window but for some odd reason it clicks 100's of pixels away. even using the WinInfo my Coord seem to be good. (i also seem to have issue with getpizelcolor on VM) a simple thing like this seems to click different areas on my screen. Opt("PixelCoordMode", 0) Opt("MouseCoordMode", 0) WinActivate($temp) MouseClick("left",$mX, $mY,1,5) any ideas? Am i missing a setting or something? the only diffrence is that i wrote the code in Vista and im testing in XP but as i said even WinInfo seems to give me the right coords Mark
×
×
  • Create New...