Entering data into fields in a web form
Entering data into fields in a web form
- Subject: Entering data into fields in a web form
- From: Jeffrey Dean <email@hidden>
- Date: Sat, 1 Feb 2003 10:07:36 -0900
Hello,
I am trying to enter data in a web form to avoid copying and pasting
one field at a time. Here is the script I am using. Netscape comes
forward but the data is not entered in the fields. Is this possible
with Applescript? If not is there a way to do it?
Thanks,
Jeff
tell application "Panorama"
set cardNum to Value of Cell "cardNum"
set nameOnCard to Value of Cell "nameOnCard"
set addressOnCard to Value of Cell "addressOnCard"
set zipOnCard to Value of Cell "zipOnCard"
set totalForCard to Value of Cell "totalForCard"
set cardMonth to Value of Cell "cardMonth"
set cardYear to Value of Cell "cardYear"
end tell
tell application "Netscape"
activate
set RefID to value of InvoiceID
set AccountNo to value of cardNum
set NameonAccount to value of nameOnCard
set AVSADDR to value of addressOnCard
set AVSZIP to value of zipOnCard
set CCAmount to value of totalForCard
set CCMonth to value of cardMonth
set CCYear to value of cardYear
end tell
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.