« Data Binding Chapter Available | Main | Where be the posts? »
May 18, 2005
Embedding HTML in a Flex App?
Check out Christophe's article on embedding HTML in a Flex app by using an IFRAME. There are plenty of times when this approach will be inappropriate, but when it's right it's pretty sweet.
Posted by mchotin at May 18, 2005 10:47 PM
Trackback Pings
TrackBack URL for this entry:
http://weblogs.macromedia.com/mtadmin/mt-tb.cgi/1722
Comments
I was not able to find and doc on how i pass a dataprovider for my minor tickers in a line chart. i need a chart with ticks showing years with minor tickers showing me the 12 months in between. i am not having any idea how my DP should look like for getting this
pls help me in this and pls mail me for any clarifications
Thanks
Posted by: Martin at July 13, 2005 12:07 PM
Hi,
i have a flex application, which is basically composed by a divided
box, on the left theres a tree navigation created by an xml file
thru an asp file, on the right there are the results that appears if
you click on the tree sections. This results are into a database,
and are called through the function SelectedNode.@....
As you can see from the code attached down here, results are divided
in a serie of Label and 2 TextInput, this last two, should contain a
link, that is also took from the database file, but it doesnt work,
i tried several way, and i dont know how to do it, some of you have
any idea please?
It should be linked: selectedNode.@Web
and: selectedNode.@eMail
I appreciated...
Max
mx:Script>
![CDATA[
[Bindable]
public var selectedNode:Object;
[Bindable]
public var XLC:XML;
public function initList(event:Event)
{
XLC = event.target.result;
}
public function treeChanged(event:Event) {
selectedNode=Tree(event.target).selectedNode;
}
]]>
mx:HDividedBox width="100%" height="320">
mx:VBox width="234" textAlign="center" height="320"
verticalAlign="middle">
mx:Label text="{selectedNode.@RagioneSociale}"
fontFamily="Verdana" fontSize="14" fontWeight="bold"
textAlign="center" width="250" color="#ffffff"/>
mx:Label text="{selectedNode.@Indirizzo}"
textAlign="center" width="250" color="#ffffff" fontWeight="bold"
fontSize="11"/>
mx:Label text="{selectedNode.@Localita}"
textAlign="center" width="250" color="#ffffff" fontWeight="bold"
fontSize="11"/>
mx:Label text="{selectedNode.@YTP}" width="250"
fontWeight="bold" fontSize="14" color="#000000"/>
mx:Label text="{selectedNode.@AttivitaPrep}"
width="250" fontWeight="bold" color="#ffffff" fontSize="12"/>
mx:Label text="{selectedNode.@Settore}" width="250"
fontWeight="bold" color="#ffffff" fontSize="12"/>
1ST LINK:
mx:TextInput text="{selectedNode.@Web}" editable="true"
width="250" fontWeight="bold" backgroundColor="#527FC1"
color="#ffffff" fontSize="11"/>
2ND LINK:
mx:TextInput text="{selectedNode.@eMail}"
editable="true" width="250" fontWeight="bold"
backgroundColor="#527FC1" color="#ffffff" fontSize="11"/>
/mx:VBox>
/mx:HDividedBox>
/mx:Application>
Posted by: maxmarino at February 17, 2006 07:56 AM
Send this through flexcoders.
Posted by: Matt Chotin at February 17, 2006 10:07 AM