The following script, which works fine on the Mac, gets flagged by Windows 7
in a windows standalone.

The line that is cited: Send 'mouseUp' to button b is displayed in bug
report on the standalone that it cannot find a handler with the above line.
After the message, printing of a single page starts. 

on doStuff3
   put the num of this card into tStartCard
   lock screen
   
   repeat with y = 1 to the number of cards
      if the mark of card y <> true then
         next repeat
      end if
      lock messages
      go card y  
      unlock messages
      repeat with b = 1 to the number of buttons
         if the style of button b = "checkbox" then 
            send "mouseUp" to button b
         end if
      end repeat
  
   end repeat
   lock messages
   go card tStartCard
   unlock messages
   unlock screen
end doStuff3 

Any suggestions?

-- 
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Problematic-script-on-Windows-7-tp3029606p3029606.html
Sent from the Revolution - User mailing list archive at Nabble.com.
_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to