Changeset 85
- Timestamp:
- 10/17/08 05:01:59 (5 years ago)
- Files:
-
- 6 edited
-
branches/4.2/com/jeroenwijering/models/HTTPModel.as (modified) (1 diff)
-
branches/4.2/com/jeroenwijering/player/Player.as (modified) (1 diff)
-
branches/4.2/com/jeroenwijering/player/SPLoader.as (modified) (1 diff)
-
branches/4.2/com/jeroenwijering/plugins/Playlist.as (modified) (3 diffs)
-
branches/4.2/player.swf (modified) (previous)
-
trunk/as3/player.swf (modified) (previous)
Legend:
- Unmodified
- Added
- Removed
-
branches/4.2/com/jeroenwijering/models/HTTPModel.as
r81 r85 121 121 url += '&client='+encodeURI(model.config['client']); 122 122 url += '&version='+encodeURI(model.config['version']); 123 url += '&width='+model.config['width']; 123 124 if(getToken()) { url += '&token='+getToken(); } 124 125 stream.play(url); -
branches/4.2/com/jeroenwijering/player/Player.as
r83 r85 67 67 token:undefined, 68 68 tracecall:undefined, 69 version:'4.2.8 4'69 version:'4.2.85' 70 70 }; 71 71 /** Reference to all stage graphics. **/ -
branches/4.2/com/jeroenwijering/player/SPLoader.as
r81 r85 92 92 if(skn) { 93 93 ldr.load(new URLRequest(str),ctx); 94 } else if (str.indexOf('http://') == 0) { 95 ldr.load(new URLRequest(str),ctx); 94 96 } else { 95 97 ldr.load(new URLRequest(basedir+str),ctx); -
branches/4.2/com/jeroenwijering/plugins/Playlist.as
r83 r85 50 50 public function initializePlugin(vie:AbstractView):void { 51 51 view = vie; 52 if(view.config['playlist'] == 'none') { return; }153 52 view.addControllerListener(ControllerEvent.ITEM,itemHandler); 54 53 view.addControllerListener(ControllerEvent.PLAYLIST,playlistHandler); … … 324 323 if(view.playlist[idx][itm] > 0) { 325 324 buttons[idx].c[itm].text = Strings.digits(view.playlist[idx][itm]); 326 if( buttons[idx].c['back']) {325 if(front) { 327 326 buttons[idx].c[itm].textColor = front.color; 328 327 } … … 334 333 buttons[idx].c[itm].text = view.playlist[idx][itm]; 335 334 } 336 if( buttons[idx].c['back']) {335 if(front) { 337 336 buttons[idx].c[itm].textColor = front.color; 338 337 }
Note: See TracChangeset
for help on using the changeset viewer.
