Here is good link concerning learning Flex features.
http://flexonblog.wordpress.com/
Filed under: AIR, Flash Platform, flex, Flex 3 | Tagged: blog, flex | Leave a comment »
Here is good link concerning learning Flex features.
http://flexonblog.wordpress.com/
Filed under: AIR, Flash Platform, flex, Flex 3 | Tagged: blog, flex | Leave a comment »
Here is a good link to create an AIR application on Google Andriod.
http://www.terrenceryan.com/blog/post.cfm/holy-crap-i-m-a-mobile-developer
Filed under: AIR, Android, Mobile | Tagged: AIR, Andriod, Google Android, Mobile | Leave a comment »
I’m going to explain how to send data from main Flex mxml file to a custom component.
[UPDATE]
I’ll add some code to change components in the parent application from the custom component.
[CC]
ex.)
parentApplication.idhdivbox1.getDividerAt(0).visible = true;
or
parentApplication.[ID].[property or methods] = [value];
Lessons Learned : Try to keep the code inside the custom component small and send data (property) to the CC from the main mxml. Only if one can’t perform outside the custom component should you add ActionScript inside it.
1.) Main mxml
A.) Refer to custom component.
<mx:Application xmlns:mx=”http://www.adobe.com/2006/mxml”
xmlns:flexiframe=”com.google.code.flexiframe.*”
xmlns:cpanel=”usa_components.*”
horizontalAlign=”center” verticalAlign=”middle”
left=”0″ top=”0″
applicationComplete=”onApplicationComplete(‘1’); ”
viewSourceURL=”srcview/index.html” >
B.) Setup bindable xml to custom component property.
[Bindable]
public var b_treexml:XMLListCollection = new XMLListCollection;
C.) Put results from server into data provider of Tree component which is in the custom component. The first statement loads the results into the data provider. The second statement loads the results into a bindable var inside the custom components, so I can ‘EXPAND’ the tree at a
public function set_tree1(e:ResultEvent):void {
idCpanel.idtree.dataProvider = e.result;
idCpanel.treeData2 = e.result as XML;
} // end of set tree….
2.) Using custom component on main mxml
<cpanel:cPanel prop1=”1″ prop2=”{b_treexml}” />
3.) Custom component
A.) Setup bindable variables.
// bindable variables
[Bindable]
public var prop1:String;
[Bindable]
public var prop2:XMLListCollection;
[Bindable]
public var treeData2:XML;
B.) I have a ‘EXPAND ALL’ button to expand the tree.
// open all nodes – tree2private function openAllNodes2():void {
idtree.openItems = treeData2..*;
} // end of open all nodes….
<mx:Button label=”Expand ALL” click=”openAllNodes2();”
useHandCursor=”true” buttonMode=”true” mouseChildren=”false” />
C.) Here is the code for the Tree component inside the CC. Notice the ID.
<mx:Tree width=”100%” height=”100%”
dataProvider=”{prop2}”
labelField=”@label”
showRoot=”false”
change=”iFrame.source = (Tree(event.target).selectedItem.attribute(‘path’).toString());”
itemClick=”tree_itemClick(event);” />
Filed under: ActionScript, flex | Tagged: Adobe, Custom Components, flex | Leave a comment »
Here is the page of the guru of the jQuery project.
Cheat sheet for jQuery
http://www.box.net/shared/as4xkezd6a
Filed under: JavaScript | Tagged: blog, JavaScript, jQuery | Leave a comment »
Here is the main page for the jQuery project.
Filed under: JavaScript | Tagged: JavaScript, jQuery | Leave a comment »
A very good podcast about jQuery.
Filed under: JavaScript | Tagged: jQuery | Leave a comment »
Here is a good video on how to understand the internals of jQuery.
Filed under: JavaScript | Tagged: JavaScript, jQuery, jQuery UI | Leave a comment »
15 Great jQuery Plugins For Better Table Manipulation
http://www.webdesignbooth.com/15-great-jquery-plugins-for-better-table-manipulation/
Filed under: JavaScript, Uncategorized | Tagged: JavaScript, jQuery, jQuery UI | Leave a comment »
I’m going to start to add some resources for the JavaScript framework called jQuery.
Filed under: JavaScript | Tagged: JavaScript, jQuery, jQuery UI | Leave a comment »
Here is a great site from Adobe about learning about their products.
Filed under: AIR, cfmx, CSS, design, flash, Flash Platform, flex, Flex 4, HTML, JavaScript | Tagged: Adobe | Leave a comment »
Here is the ultimate ColdFusion resource.
http://www.carehart.org/cf411/
Filed under: cfmx, cfmx 7, cfmx 8, cfmx 9 | Tagged: coldfusion | Leave a comment »
Here is an article on how to use jQuery from Google (CDN) and your local web server.
Filed under: cfmx | Tagged: CDN, coldfusion, jQuery | Leave a comment »
Here is some information concerning ColdFusion 9.0.1.
http://www.aaronwest.net/blog/index.cfm/2010/7/13/ColdFusion-901-Released
Documentation of changes to the Language.
http://www.adobe.com/support/documentation/en/coldfusion/901/cf901features.pdf
Filed under: cfmx 9 | Tagged: coldfusion, ColdFusion 9 | Leave a comment »
I think I do these posts in batches because I’m so busy in my day job 🙂 Here is a good link concerning developing Object-oriented ColdFusion.
Filed under: cfmx, cfmx 7, cfmx 8, cfmx 9 | Tagged: coldfusion, Object-Oriented Concepts | Leave a comment »
Here is a link to jQuery for those interested in a lighweight JavaScript/CSS framework. Its has evolved into the best of the breed over the years.
Filed under: AJAX, CSS, DHTML, JavaScript | Tagged: Ajax, jQuery | Leave a comment »