I am trying to do a basic tutorial like MXML Application on Flash Builder 4.6 trial version
This is my code in deneme1.mxml 's Source part
<?xml version="1.0" encoding="utf-8"?>
<s: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">
<fx:Script>
<![CDATA[
protected function button1_clickHandler(event:MouseEvent):void
{
// TODO Auto-generated method stub
label1.text="ateş buradaydı";
}
]]>
</fx:Script>
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<s:Button id="button1" x="319" y="176" label="Button" click="button1_clickHandler(event)" visible="true"/>
<s:Label id="label1" x="222" y="176" text="Label"/>
</s:Application>
This is what I get in Desing mode
I am not doing very much action just trying to see something on the browser Chrome or IE9 but I only get a blank page.
As you can understand from my entrance of my question I am very newbie and don't know why the components are not showing.
What am I doing wrong?What am I supposed to do to make this work?
EDIT: I tried a sample code that I found here, copied and pasted the code it still does not show up on the browser.I downloaded the package added the mxml file to the project run it still no and the swf file that was generated does not show anything neither.However, the swf file comes with the package shows up.I can't think of any reason for this problem.Has anybody had a problem like this before?