Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Difference in ME vs Win2K behavior

From: SunandaDH:aol at: 23-Jul-2003 4:46

David:
> Any suggestions about what I am doing wrong?
If two of Bill Gates' operating systems behave differently, it's not you who's doing something wrong! I'm just guessing a fix I can't test it -- but try command /c REBOL file1.r command /c REBOL file2.r param1 command /c REBOL file2.r param2 command /c REBOL file3.r param4 Failing that, do a command /? and see if there are any newer, snazzier switches available to cure the problem. Failing that, you might need to write a "driver" REBOL program and execute that to do all the others: REBOL [] do %file.r do/args %file2.r param1 do/args %file2.r param2 do/args %file2.r param4 But you'd have to make sure that the scripts do not have a Halt or Quit in them. And, you'd want to replace any Unview/all with Unview/only face-name. Sunanda.