Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

LotusScript for Macintosh

Status
Not open for further replies.

Corvarola

Programmer
Joined
Mar 11, 2004
Messages
1
Location
IT
Good morning to everyone,

In Windows environment I use the following LotusScript to show a file in TIFF format.

Sub Click(Source As Button)
visual = "c:\windows\kodakimg.exe test.tif"
taskId% = Shell(visual, 1)
End Sub

What SCRIPT I must use in the MACINTOSH environment?

I tried whit this, but it return the error: "File not found".

Sub Click(Source As Button)
visual = "Preview.app test.tif"
taskId% = Shell(visual, 1)
End Sub

Best regards
Corvarola Maurizio






 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top