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

后端 未结 8 2123
独厮守ぢ
独厮守ぢ 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 $*
    

提交回复
热议问题