AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

getElementsByName - How to collect form field data?

 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
Course Developer
Guest





PostPosted: Wed Jul 09, 2008 12:32 am    Post subject: getElementsByName - How to collect form field data? Reply with quote

Howdy! Hope somebody can help! Smile

Okay; I know how to use AHK and Javascript to send functions to the addressbar in FireFox.

For example: the following will add/replace content in an input field where name=MatchRight1, with the value of %NewContent%:
Code:

NewContent= Hello World!
Clipboard = javascript: (function(){ document.getElementsByName('MatchRight1')[0].value="%NewContent%"; })();
Send, ^l^v{ENTER}


Here's the question: How do I first collect the existing data from the field so I can modify it and send it back?

In the above code, I have tried changing .value="%NewContent%" to .focus() and then Send, ^a^c, but that didn't work.

Thanks in advance for any help you can provide! Smile
Ian
Back to top
tank



Joined: 21 Dec 2007
Posts: 616

PostPosted: Wed Jul 09, 2008 6:49 am    Post subject: Reply with quote

if i could talk you into ie the work is done already for you see my sig
if not i must admit im a little confused why it didnt work actually
try
Code:
javascript:void(document.forms(0).elements('MatchRight1').focus());

_________________
Read this
Com
Automate IE7 with Tabs
Back to top
View user's profile Send private message
Course Developer
Guest





PostPosted: Tue Jul 15, 2008 10:35 pm    Post subject: Reply with quote

Thanks Tank!
I'll give it a try.
Cool
Back to top
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group