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
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