Skip to content

Commit

Permalink
Embedded images for web version
Browse files Browse the repository at this point in the history
git-svn-id: http://cimlogbook.googlecode.com/svn/trunk@31 7e92c088-b245-0410-a16f-c3386edacc87
  • Loading branch information
arpit_mathur@cable.comcast.com committed Mar 28, 2008
1 parent 3b56a9a commit 09d4989
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 20 deletions.
1 change: 1 addition & 0 deletions .actionScriptProperties
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<sourceAttachmentPath/>
</compiler>
<applications>
<application path="LogBookWeb.mxml"/>
<application path="LogBook.mxml"/>
</applications>
<modules/>
Expand Down
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<project name="Memoria - AIR Logging Console" default="compileLogBook">
<project name="LogBook - AIR Logging Console" default="compileWeb">
<loadproperties srcFile="build.properties"/>
<taskdef resource="flexTasks.tasks" />

Expand Down
Binary file modified release/web/LogBookWeb.swf
Binary file not shown.
38 changes: 19 additions & 19 deletions src/LogBookWeb.mxml
Original file line number Diff line number Diff line change
Expand Up @@ -79,20 +79,20 @@ THE SOFTWARE.
/* from code behind******/
[Bindable]
public var logPage:LogPage;
//temporarily public
protected var levelFilter:Number=-1;
public var selectedCategories:Array= new Array();
//variables for file save
private var textString:String
private var connectionName:String;
public function createLogPage(connectionName:String):void{
this.logPage = new LogPage(connectionName);
}
public var logPage:LogPage;
//temporarily public
protected var levelFilter:Number=-1;
public var selectedCategories:Array= new Array();
//variables for file save
private var textString:String
private var connectionName:String;
public function createLogPage(connectionName:String):void{
this.logPage = new LogPage(connectionName);
}
/* end code behind*/
Expand Down Expand Up @@ -227,10 +227,10 @@ THE SOFTWARE.
<mx:VBox width="100%" height="100%" verticalGap="10" horizontalGap="0" styleName="projectBackground">
<mx:Canvas id="topNavBar" width="100%" height="60" borderStyle="solid" borderSides="bottom" dropShadowEnabled="true" styleName="topBar"
verticalScrollPolicy="off" horizontalScrollPolicy="off" >
<mx:Image source="icons/LogBookIcon_48.png" width="48" height="48" x="10" y="5" />
<mx:Image source="@Embed(source='icons/LogBookIcon_48.png')" width="48" height="48" x="10" y="5" />
<mx:Text id="lbTitle" styleName="logbookTitle" text="LogBook" x="65" y="5"/>

<mx:Image source="images/divide.png" height="48" top="5" right="{rightNav.width+30}"/>
<mx:Image source="@Embed(source='images/divide.png')" height="48" top="5" right="{rightNav.width+30}"/>

<mx:ButtonBar iconField="icon" id="rightNav" dataProvider="{rightNavData}"
right="10" y="10" horizontalGap="5" height="30" itemClick="onSettingsItemClick(event)" />
Expand All @@ -241,11 +241,11 @@ THE SOFTWARE.
<mx:HBox right="10" top="5" verticalAlign="middle" >
<mx:Label text="Level:"/>
<mx:ComboBox id="levelFilterCB" width="150" dataProvider="{logLevelOptions}" change="onLevelFilter(event)"/>
<mx:Image source="images/divide.png" height="18"/>
<mx:Image source="@Embed(source='images/divide.png')" height="18"/>
<mx:TextInput id="searchField" width="200" change="onSearchFieldChange()"/>
<mx:Image source="images/divide.png" height="18"/>
<mx:Image source="@Embed(source='images/divide.png')" height="18"/>
<mx:Button id="clearLogs_btn" label="Clear Logs" click="clearLogs()" />
<mx:Image source="images/divide.png" height="18"/>
<mx:Image source="@Embed(source='images/divide.png')" height="18"/>
</mx:HBox>
</mx:Canvas>
<mx:HDividedBox width="100%" height="100%">
Expand Down

0 comments on commit 09d4989

Please sign in to comment.