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

后端 未结 8 2110
独厮守ぢ
独厮守ぢ 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:45

    You could create an executable here: /usr/local/bin/chrome with these contents:

    #!/bin/sh
    open -a 'Google Chrome' $1 &
    

    And then ensure Chrome's Preferences settings for "Web Browser" are this for external web browser "Google Chrome":

    Name: Google Chrome
    Location: /usr/local/bin/chrome
    Parameters: %URL%
    

    alt text

提交回复
热议问题