I have developed an application in run rev studio 3.5. I tested my application as a web based application using runrev 4.0 pre beta and it works as it would do if it was a standalone application which is very impressive.
The only part of my application that doesnt work when ran as a webfile is my print card button. The script I use to print my cards is:
Code: Select all
on mouseUp
set the printRotated to true
open printing with dialog
if the result is "Cancel" then exit mouseUp
set the printScale to .4
set the printMargins to 36,36,36,36 --1/2 inch margins
set the printGutters to 18,18 --1/4 inch gutters
repeat with i = 1 to number of cards
print card i
end repeat
close printing -- sends job to printer
end mouseUp
Cheers
Daniel