Hi all,

I want to compile my app in 8 languages using this IDE script:

  SelectWindow "MyProject.rb"
  DoCommand "BuildSettings"
  PropertyValue("App.ShortVersion") = "MyApp"
  PropertyValue("App.LongVersion") = "MyApplication"
  PropertyValue("App.PackageInfo") = "MyApplication"
  PropertyValue("App.MacCreator") = "1234"
  BuildWin32 = False
  BuildLinux = False
  BuildMacPEF = True
  BuildMacMachO = False
  BuildMacClassic = False

  DoCommand "BuildSettings"
  PropertyValue("App.MacAppName") = "MyApplication EN"
  PropertyValue("App.MacOSXAppName") = "MyApplication EN"
  BuildRegion = "Britain"
  BuildLanguage = "English"
  DoCommand "BuildApp"

  DoCommand "BuildSettings"
  PropertyValue("App.MacAppName") = "MyApplication FR"
  PropertyValue("App.MacOSXAppName") = "MyApplication FR"
  BuildRegion = "France"
  BuildLanguage = "French"
  DoCommand "BuildApp"

................. still 6 times

But when I run this script, only the last build is made !!
How to "stop" the script until a command "BuildApp" is finished, before the next "BuildApp" ?

Thanks

Marc

_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>

Reply via email to