Index: trunk/fl5/src/com/longtailvideo/jwplayer/view/components/PlaylistComponent.as
===================================================================
--- trunk/fl5/src/com/longtailvideo/jwplayer/view/components/PlaylistComponent.as	(revision 454)
+++ trunk/fl5/src/com/longtailvideo/jwplayer/view/components/PlaylistComponent.as	(revision 455)
@@ -10,4 +10,5 @@
 	import com.longtailvideo.jwplayer.utils.Stretcher;
 	import com.longtailvideo.jwplayer.utils.Strings;
+	import com.longtailvideo.jwplayer.view.PlayerLayoutManager;
 	import com.longtailvideo.jwplayer.view.interfaces.IPlaylistComponent;
 	
@@ -326,8 +327,10 @@
 			clip.back.height =  height;
 			buildPlaylist(false);
-			if (config['position'] == 'over' || _player.fullscreen) {
+			if (config['position'] == 'over') {
 				stateHandler();
-			} else {
+			} else if (PlayerLayoutManager.testPosition(config['position'])) {
 				clip.visible = true;
+			} else {
+				clip.visible = false;
 			}
 		}
@@ -383,5 +386,5 @@
 		/** Process state changes **/
 		protected function stateHandler(evt:PlayerStateEvent = null):void {
-			if (config['position'] == 'over' || _player.fullscreen) {
+			if (config['position'] == 'over') {
 				if (player.state == PlayerState.PLAYING || player.state == PlayerState.PAUSED || player.state == PlayerState.BUFFERING) {
 					visible = false;
