Made next/prev buttons bigger and replaced icons so they're less ambigous

git-svn-id: http://bigbluebutton.googlecode.com/svn/trunk@815 af16638f-c34d-0410-8cfa-b39d5352b314
This commit is contained in:
Denis Zgonjanin 2008-12-24 18:25:35 +00:00
parent be064b7a18
commit 30a4d94e30
5 changed files with 6 additions and 5 deletions

View File

@ -303,6 +303,7 @@ package org.bigbluebutton.modules.presentation.view
_presWin.slideView.slides = proxy.slides; _presWin.slideView.slides = proxy.slides;
_presWin.slideNumLbl.text = (_presWin.slideView.selectedSlide + 1) + " of " + _presWin.slideView.slides.length; _presWin.slideNumLbl.text = (_presWin.slideView.selectedSlide + 1) + " of " + _presWin.slideView.slides.length;
_presWin.slideView.visible = true; _presWin.slideView.visible = true;
_presWin.btnResetZoom.visible = true;
if (facade.hasProxy(SlideProxy.NAME)) { if (facade.hasProxy(SlideProxy.NAME)) {
var sp:SlideProxy = facade.retrieveProxy(SlideProxy.NAME) as SlideProxy; var sp:SlideProxy = facade.retrieveProxy(SlideProxy.NAME) as SlideProxy;

Binary file not shown.

After

Width:  |  Height:  |  Size: 345 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 349 B

View File

@ -28,10 +28,10 @@ package org.bigbluebutton.modules.presentation.view.components
[Embed(source="../assets/images/pdf_icon.png")] [Embed(source="../assets/images/pdf_icon.png")]
public var pdf:Class; public var pdf:Class;
[Embed(source="../assets/images/forward_blue.png")] [Embed(source="../assets/images/arrow_right.png")]
public var forward:Class; public var forward:Class;
[Embed(source="../assets/images/backward_blue.png")] [Embed(source="../assets/images/arrow_left.png")]
public var backward:Class; public var backward:Class;
[Embed(source="../assets/images/magnifier.png")] [Embed(source="../assets/images/magnifier.png")]

View File

@ -87,13 +87,13 @@
toolTip="Upload PDF document for presentation." click="dispatchEvent(new Event(PresentationWindowMediator.OPEN_UPLOAD))"/> toolTip="Upload PDF document for presentation." click="dispatchEvent(new Event(PresentationWindowMediator.OPEN_UPLOAD))"/>
<mx:Label id="presenterNameLabel" visible="false" text=""/> <mx:Label id="presenterNameLabel" visible="false" text=""/>
<mx:Spacer width="50%"/> <mx:Spacer width="50%"/>
<mx:Button id="backButton" icon="{backwardIcon}" visible="false" width="20" height="20" <mx:Button id="backButton" icon="{backwardIcon}" visible="false" width="40" height="20"
toolTip="Previous slide." click="dispatchEvent(new Event(PresentationWindowMediator.PREVIOUS_SLIDE))"/> toolTip="Previous slide." click="dispatchEvent(new Event(PresentationWindowMediator.PREVIOUS_SLIDE))"/>
<mx:Label id="slideNumLbl" text=""/> <mx:Label id="slideNumLbl" text=""/>
<mx:Button id="forwardButton" icon="{forwardIcon}" visible="false" width="20" height="20" <mx:Button id="forwardButton" icon="{forwardIcon}" visible="false" width="40" height="20"
toolTip="Next slide" click="dispatchEvent(new Event(PresentationWindowMediator.NEXT_SLIDE))"/> toolTip="Next slide" click="dispatchEvent(new Event(PresentationWindowMediator.NEXT_SLIDE))"/>
<mx:Spacer width="50%"/> <mx:Spacer width="50%"/>
<mx:Button id="btnResetZoom" icon="{magnifierIcon}" visible="true" width="20" height="20" <mx:Button id="btnResetZoom" icon="{magnifierIcon}" visible="false" width="20" height="20"
toolTip="Reset Zoom" click="dispatchEvent(new Event(PresentationWindowMediator.RESET_ZOOM))"/> toolTip="Reset Zoom" click="dispatchEvent(new Event(PresentationWindowMediator.RESET_ZOOM))"/>
</mx:ApplicationControlBar> </mx:ApplicationControlBar>
</pres:MDIWindow> </pres:MDIWindow>