[virtualcommons-svn] SF.net SVN: virtualcommons:[103] mentalmodels/trunk/flex/src
Status: Beta
Brought to you by:
alllee
From: <kj...@us...> - 2009-04-17 22:40:48
|
Revision: 103 http://virtualcommons.svn.sourceforge.net/virtualcommons/?rev=103&view=rev Author: kjonas Date: 2009-04-17 22:40:37 +0000 (Fri, 17 Apr 2009) Log Message: ----------- Stub InstructionPageLoader created Modified Paths: -------------- mentalmodels/trunk/flex/src/TableTest.mxml mentalmodels/trunk/flex/src/customComponents/InstructionPage.mxml Added Paths: ----------- mentalmodels/trunk/flex/src/actionscript/InstructionPageLoader.as Modified: mentalmodels/trunk/flex/src/TableTest.mxml =================================================================== --- mentalmodels/trunk/flex/src/TableTest.mxml 2009-04-17 22:32:45 UTC (rev 102) +++ mentalmodels/trunk/flex/src/TableTest.mxml 2009-04-17 22:40:37 UTC (rev 103) @@ -2,6 +2,7 @@ <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:comp="customComponents.*" layout="absolute"> <mx:VBox> + <comp:InstructionPage id="instructionPage"/> <mx:HBox id="cast"> <!--<comp:Forecast id="legacy" numColumns="10"/>--> <comp:Forecast1 id="forecastPeople" numColumns="15" minValue="0" maxValue="30" initialize="init()"/> @@ -18,7 +19,8 @@ public function init():void { - for(var x:Number=0;x<4;x++)for(var y:Number=0;y<15;y++)forecastPeople.setItem(x,y,7.5); +instructionPage.txt.htmlText = "this is a test <img src=\"http://www.google.com/intl/en_ALL/images/logo.gif\"><br>asdfghjkl;"; +//for(var x:Number=0;x<4;x++)for(var y:Number=0;y<15;y++)forecastPeople.setItem(x,y,7.5); } public function testNext(evt:Event=null):void Added: mentalmodels/trunk/flex/src/actionscript/InstructionPageLoader.as =================================================================== --- mentalmodels/trunk/flex/src/actionscript/InstructionPageLoader.as (rev 0) +++ mentalmodels/trunk/flex/src/actionscript/InstructionPageLoader.as 2009-04-17 22:40:37 UTC (rev 103) @@ -0,0 +1,10 @@ +package actionscript +{ + public class InstructionPageLoader + { + public function InstructionPageLoader() + { + } + + } +} \ No newline at end of file Modified: mentalmodels/trunk/flex/src/customComponents/InstructionPage.mxml =================================================================== --- mentalmodels/trunk/flex/src/customComponents/InstructionPage.mxml 2009-04-17 22:32:45 UTC (rev 102) +++ mentalmodels/trunk/flex/src/customComponents/InstructionPage.mxml 2009-04-17 22:40:37 UTC (rev 103) @@ -1,6 +1,10 @@ <?xml version="1.0" encoding="utf-8"?> <mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:comp="customComponents.*" initialize="init()"> + <mx:Text width="800" height="300" id="html"> + <mx:htmlText/> + </mx:Text> + <mx:Script> <![CDATA[ import mx.collections.ArrayCollection; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |