Jim Hurley wrote:
This seems to be all right to me, but just to be sure.

Rather than have a handler poll the OS each time it is run, would it be possible to modify a handler just once in an openstack handler like the following:

on openstack
  put the script of button 1 into tScript
  if the platform is "macOS" then
    replace "--unlock screen" with "unlock screen" in tScript
  end if
  set the script of button 1 to tScript
end openstack

This works in the IDE environment, but will it work in a stand alone?

I know a script can't modify itself, and that a stack can't make permanent changes in a stand alone, but can a stand alone modify component scripts each time the stack is opened as indicated above?

You can only swap out scripts with 10 lines or fewer at runtime.

Better to use an "if" in the script:

  if the platform is "MacOS" then
     unlock screen
  end if


-- Richard Gaskin Fourth World Media Corporation Developer of WebMerge: Publish any database on any Web site ___________________________________________________________ [EMAIL PROTECTED] http://www.FourthWorld.com _______________________________________________ use-revolution mailing list [email protected] http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to