Code: Select all
on mouseUp
## Note the number of cards of your stack
ask "Go to url:"
put it into tURL
## Check if user clicked CANCEL...
if the result = "cancel" then
# ... get out of here!
exit to top
end if
if tURL is url then
## Finally! :-)
launch url tURL in widget "web"
end if
end mouseUp