
rifts
Members-
Posts
18 -
Joined
-
Last visited
Everything posted by rifts
-
i figured out a way to do it thanks for looking
-
hey everyone i have a javascript code which makes a word toggle links under it for example before clicking on it it looks like this: Stories: then once its clicked on it looks like: Stories: story 1 story 2 story 3 how can i make it so when you click stories it creats that list and also goes to story 1 here is the code i have <h2 style="margin-left : 25px;"><img src="/images/sort_ASC.gif" id="img_DegreeList5" alt="" /><a href="javascript:toggleDegreeList(5);" style="color:#336699;">Teaching Tales</a></a></h2> <div id="DegreeList5" style="display:none;"> <ul><ul> <li><a href="teaching_tales1.php">Story 1</a></li> <li><a href="teaching_tales2.php">Story 2</a></li> </ul></ul> </div>
-
I'm sorry for starting this entire situation. I got my answer... you can not use Chrome. Thanks and next I'll be more descriptive.
-
thank you. I saw that someone made an extension to use FireFox with autoit and I was wondering if that has happen for chrome. added: here is the firefox thing i was talking about http://groups.google.com/group/mozlab/msg/acb2e006911f9db0
-
I know there are all the IE functions but I was wondering if anyone knows a way to use google chrome instead?
-
wow thank you so much that is exactly what i needed!! now just lots of editing and adding haha thanks again
-
so there isnt an easy to way to just uses mousemove(xxxx) where like xxxx would be the var of the extract button?
-
ok well I was just using the textarea as a test but what im actaully trying to do is have autoit detect the "extract" button and move the mouse to it and then click on it. I need it to autofind the button without using coords.
-
hey im using this code i snagged from another post #include <IE.au3> ;This opens your IE to google.com $oIE = _IECreate ("http://emailx.discoveryvip.com/") $hIE = _IEPropertyGet($oIE, "hwnd") WinSetState($hIE, "", @SW_MAXIMIZE) ;This gets a Form Object by its name. The form it tries to find is named ;When it gets the form, $oForm is the Form Object. $oForm = _IEFormGetObjByName ($oIE, "extractor") ;This looks in the form object for a form element object named ;When it finds "q" $oQuery is the form element object $oQuery = _IEFormElementGetObjByName ($oForm, "rawdata") ;This sets the value of the $oQuery form element object _IEFormElementSetValue ($oQuery, "Hello") MouseMove(wtf goes here) _IELoadWait($oIE) everything works fine except i can not get the mouse to move to the area named "rawdata". Is it even possible to move the mouse without using the coords.? Thanks ps I dont want to use the coords because they vary depending on if the sites was changed and they vary computer to computer Thanks again
-
ahh thank you sir
-
when using this $oIE = _IECreate ("http://google.com/") how can i make it open the window maximized thanks
-
Finding button online, not using coords?
rifts replied to rifts's topic in AutoIt General Help and Support
Thanks Fulano, I appreciate all the help and patience! -
Finding button online, not using coords?
rifts replied to rifts's topic in AutoIt General Help and Support
I dont know much about UDF but I did find <FORM name="extractor"> and <INPUT name="BUTTON" type="BUTTON" class="button" onclick="findEmail()" value="Extract"> -
Finding button online, not using coords?
rifts replied to rifts's topic in AutoIt General Help and Support
It doesnt really need to trigger javascript does it? I just needs to find in the form the button for extract i thought? I saw a post on here where someone was asking about autofilling in a login form and they explained something about looking at the source code and finding the name of the form and the field. I'm sorry if that makes no sense I will try to find that post. thanks that was a lot easier to find then i thought it would be here is the post i was referring to http://www.autoitscript.com/forum/index.php?showtopic=111154 thanks again -
this almost works... everything loads up fine but it doesnt change brush sizes or colors does anyone know why? or how to fix?
-
Finding button online, not using coords?
rifts replied to rifts's topic in AutoIt General Help and Support
hum I think i'm not explaning exactly what I'm looking for well enough. looking at the source code for that site I found this line refering to the extract button <INPUT name="BUTTON" type="BUTTON" class="button" onclick="findEmail()" value="Extract"> can i use this information somehow with autoit so when i load my script my mouse will go directly over the extract button? -
Finding button online, not using coords?
rifts replied to rifts's topic in AutoIt General Help and Support
yeah I understand what you mean, but my question is regarding if it is possible for an autoit script to locate the "extract" button without first manually finding the coordinates. -
at work I use this program http://emailx.discoveryvip.com/ I was wondering if there is a way to find the "extract" button without just using the coords since they change depending on browser and such. thank you