Embedding Flash Player in a C++ or Java application?

前端 未结 8 1964
甜味超标
甜味超标 2020-12-06 06:47

I would like to embed Flash Player directly inside a C++ or Java application.

I found an article that describes how to do this for C#: http://www.adobe.com/devnet/fl

8条回答
  •  情深已故
    2020-12-06 07:28

    What you should use is Netscape Plugin API. It's native and it's what all the good browsers use to load flash player plugin. While the actual flash player is not open source, this API is.

    If you're not gonna ship a copy of flashplayer with your app:

    Your app should check at runtime for flash player and should alert the user if it doesn't find it (usually by giving a link to Adobe to download it). Flashplayer plugin is usually installed at %AppData%\Mozilla\plugins on Windows.

提交回复
热议问题