
Mind you, I am not by any means denigrating Ian's work on the initial stacks, but don't think you should play down the value added by your own additions.
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Code: Select all
on mouseUp
lock screen
answer file "choose" with type "SVG image|svg"
if it is empty then exit mouseUp
put it into tFile
put URL ("binfile:" & tFile) into tSVG
put drawingSvgCompileFile(tFile) into tImage
set the text of image "i1" to tImage
set the topLeft of image "i1" to 20,20
unlock screen
end mouseUp