views:

95

answers:

1

When I build using MonoDevelop using the MonoTouch framework it appears the iPhone Simulator always loads in the background, is there any way to bring this to the front instead of always having to click it in the dock to bring it up?

Can't find anything in preferences.

+3  A: 

Hi there,

Include a compiled AppleScript in your build process:

tell application "iPhone Simulator"
activate
end tell

Cheers, niels

Niels Castle
Will test when I get a chance, thanks Niels
GONeale
Neat, let us know if it does the trick for you
Niels Castle