| Revision 517,
389 bytes
checked in by pablo, 4 years ago
(diff) |
|
Dock.addButton and Controlbar.addButton return a movieclip (for v4 plugin compatibility)
V4 Emulator now a true singleton (fixes plugin setup)
|
| Line | |
|---|
| 1 | package com.longtailvideo.jwplayer.view.interfaces { |
|---|
| 2 | import flash.display.DisplayObject; |
|---|
| 3 | import flash.display.MovieClip; |
|---|
| 4 | |
|---|
| 5 | public interface IDockComponent extends IPlayerComponent { |
|---|
| 6 | function addButton(icon:DisplayObject, text:String, clickHandler:Function, name:String = null):MovieClip; |
|---|
| 7 | function removeButton(name:String):void; |
|---|
| 8 | function show():void; |
|---|
| 9 | function hide():void; |
|---|
| 10 | } |
|---|
| 11 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.