--- E_viewer.sc 2008/02/22 16:42:24 9 +++ E_viewer.sc 2008/02/22 17:28:36 11 @@ -9,15 +9,15 @@ .font comic filename="fonts/comic.swf" .box menu_background width=130 height=60 color=navy fill=gray line=0 - .box page_progress_bar width=110 height=10 color=gray fill=white line=2 - .box page_current_page width=10 height=10 color=black fill=gray line=2 + .box page_progress_bar width=110 height=10 color=white line=2 + .box page_current_page width=10 height=10 color=black fill=white line=0 .box button_idle width=20 height=60 color=blue fill=salmon line=5 .box button_hover width=20 height=60 color=red fill=salmon line=6 .box button_pressed width=20 height=60 color=gray fill=salmon line=5 .box border_left width=10 height=300 color=gray fill=gray line=3 - .edittext info text="info" color=black size=100% width=60 height=60 align=center border=none noselect variable=infoText + .edittext info text="info" color=black width=110 height=20 align=center border=none noselect variable=infoText font=comic size=12pt .outline o_cadre: @@ -152,6 +152,7 @@ .put next pin=center x=110 y=30 scale=40% alpha=50% rotate=0 .put page_bar x=15 y=50 + .put info x=15 y=45 .end # change this animation for show/hide effect of menu @@ -159,18 +160,15 @@ .frame 1 .put C_menu alpha=0% - .put info alpha=0% .frame 5 .change C_menu alpha=100% - .change info alpha=100% .stop .frame 10 .change C_menu alpha=0% - .change info alpha=0% .stop .end @@ -185,14 +183,6 @@ info._alpha = 50; info.embedFonts = 0; - var monStyle = new TextFormat(); - monstyle.bold = false; - monStyle.italic = false; - monStyle.border = false; - monStyle.font = "_sans"; -// monStyle.font = "comic"; - _root.menu.info.setTextFormat(monStyle); - _root.menu.info._y = 20; // doesn't work in .put (?) function showMenu() { /* @@ -214,8 +204,8 @@ if ( pos == 0 ) pos = 1; - _root.menu.infoText = String(page) + " / " + String(total) - + "\r" + String(pos) + _root.menu.C_menu.infoText = String(page) + " / " + String(total) +// + "\r" + String(pos) ; _root.menu.C_menu.page_bar.gotoAndStop( pos ); };