
Originally Posted by
Maikeru
How about online shops? Kaya ra kaau na sa flex, and it is not that difficult to make (considering the 1 month span of time). You have the option to go mobile as well. Or you can support both mobile and not mobile

Mobile unta akong ganahan bro. An application that is at the useful or fun to have. 
However, I may need some help with my Flash Builder code 
> Whenever I try to run this code:
Code:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" layout="horizontal">
<fx:Script>
<![CDATA[
import mx.controls.Alert;
private function onClick():void{
Alert.show("Hello "+userName.text);
}
]]>
</fx:Script>
<fx:Declarations>
<mx:Label text="Your Name: " />
<s:TextInput id="userName" />
<s:Button label="Press Me!" click="onClick()" />
</fx:Declarations>
</mx:Application>
(Nagsunod rako ani sa usa ka tutorial sa youtube.)
Walay output mugawas sa akong browser. I've been searching for answers sa internet about blank outputs but to no avail, wala koy nakit-an. 
Is there something wrong sa akong code? How will fix a blank output page?
(PS: I also tried having just to have a simple code of showing "Hello World" in an Adobe Air application pero the same gihapon ang result - BLANK Output window)