View Single Post
  #10 (permalink)  
Old 04-03-2009, 08:54 AM
urbanriver urbanriver is offline
Junior Member
 
Join Date: Mar 2009
Posts: 19
Default

Nevermind I was using the wrong return value.

Was:
Code:
if (Dialogs.msgBox("Would you like to email your image to Snap Support?", "Capture Screen", 4 | 32) != 1) {
Should have been:
Code:
if (Dialogs.msgBox("Would you like to email your image to Snap Support?", "Capture Screen", 4 | 32) != 6) {

I've got to say I'm impressed with the support and the software so far, I'm looking forward to understanding more about how things work in SWFKit, thanks again!

;D

Last edited by urbanriver; 04-03-2009 at 08:55 AM. Reason: Typo
Reply With Quote