filemaker open url
filemaker open url
- Subject: filemaker open url
- From: "Robert C. Jacobson" <email@hidden>
- Date: Tue, 5 Aug 2003 14:10:49 -0400
I'm attempting to script a button in FileMaker Pro 3 to open a URL,
with the URL text depending on the contents of the cell "MS KB number".
The following works from Script Editor:
tell application "FileMaker Pro"
go to database "patches"
set foo to {cell "MS KB number"}
tell application "Finder" to open location "
http://support.microsoft.com/?kbid=" & foo
end tell
But in FileMaker I get a transaction error. I googled that, and came up with this "fix":
with transaction
set foo to {cell "MS KB number"}
end
tell application "Finder" to open location "
http://support.microsoft.com/?kbid=" & foo
but I still get the error. How do I get this to work?
Thanks
--
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Robert Jacobson email@hidden
BS, Aeronautical Engineering Univ. of Md., College Park
Flight Ops. Team - SOlar Heliospheric Observatory (SOHO)
(301) 286-1591
_______________________________________________
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.