Is there a way to add Google Chrome as an external web browser in Flash Builder Standalone for Mac?

后端 未结 8 2085
独厮守ぢ
独厮守ぢ 2020-12-13 02:51

It currently seems impossible to add Google Chrome as an external web browser in Flash Builder Standalone for Mac. In this context, Eclipse only cares about \"Unix executabl

相关标签:
8条回答
  • 2020-12-13 03:51

    Update

    As of Eclipse 4.3.1, the script approach (below) no longer works, but the simpler option of simply selecting "Google Chrome.app" as an external browser (using Eclipse UI) is fixed.

    Old (obsolete) answer

    My workaround was to create a shell script that opens Chrome (see below), and point Eclipse to this script. In this way Chrome is opened with 2 tabs - the home page and the requested page - but this was good enough for me.

    #! /bin/sh
    open /Applications/Google\ Chrome.app $*
    
    0 讨论(0)
  • 2020-12-13 03:52
    /Applications/Google\ Chrome.app/Contents/MacOS
    

    escape the space in the path to the google chrome executable. OS X only cares about unix executables, because its posix based as well, it doesn't actually have much to do with eclipse.

    0 讨论(0)
提交回复
热议问题