Code: Select all
on mouseUp
put "http://finance.yahoo.com/q/pr?s=AAPL" into myURL
put url myURL into tData
answer tData
end mouseUp
Thanks in advance for any help you can give.
Regards,
Larry
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Code: Select all
on mouseUp
put "http://finance.yahoo.com/q/pr?s=AAPL" into myURL
put url myURL into tData
answer tData
end mouseUp
Code: Select all
on mouseUp
put "http://finance.yahoo.com/q/pr?s=AAPL" into myURL
put url myURL into tData
put tData into field 1
-- for htmlText format
--set the htmlText of field 2 to tData
end mouseUp