source: trunk/as3/clickproxy.xml @ 170

Revision 170, 1.3 KB checked in by jeroen, 4 years ago (diff)

completed first version of testing page, made all plugins backward compatible and fixed outstanding 4.4 bugs

Line 
1<plugin>
2        <title>Clickproxy</title>
3        <filename>clickproxy.swf</filename>
4        <version>1</version>
5        <compatibility>Compatible with 4.1</compatibility>
6        <author>LongTail Video</author>
7        <description>This plugin sends mouseclick information to javascript when a user clicks on a playing video.
8                Use it to build interactive video applications in javascript.
9                Some nice examples from Lars Nyboe Andersen can be found here:
10                - http://home5.inet.tele.dk/nyboe/flash/mediaplayer4/clickproxy/clickproxy_mux.html
11                - http://home5.inet.tele.dk/nyboe/flash/mediaplayer4/JW_FLV_Media_Player_Piano/
12        </description>
13        <href>http://developer.longtailvideo.com/trac/browser/plugins/clickproxy</href>
14
15        <flashvars>
16                <flashvar>
17                        <name>listener</name>
18                        <default>clickListener</default>
19                        <description>This is the javascript function that receives the mouseclick info.
20                                The function receives an object with the following variables:
21                                - id (id of the player in the javascript DOM)
22                                - version (version of the player, e.g. 4.2.90)
23                                - client (plugin client, e.g. FLASH WIN 9.0.124)
24                                - position (this is the playback position of the video)
25                                - mousex (this is the x position of the mouse in the display)
26                                - mousey (this is the y position of the mouse in the display)
27                                - state (this is the playbackstate of the video)
28                        </description>
29                </flashvar>
30        </flashvars>
31
32</plugin>
Note: See TracBrowser for help on using the repository browser.