17Oct

Simple RSS Reading with Flex

No comments

This will take in my RSS feed and display the date, title and link to the page. A simple function that allows the row of data to send the user to the respective page.



	
		
	

	
		
			
			
			
		
	

You know, someday I will take the time to figure out the issues with the special character rendering with my editor, but until then here is a screen cap:

Share/Save/Bookmark

Categories: Flex Web Development
15Oct

Viewing a Web Page in Adobe AIR

No comments

This will simply load http://www.google.com inside the AIR project

<mx:WindowedApplication
xmlns:mx="http://www.adobe.com/2006/mxml"
layout="absolute"
width="1024"
height="900"
viewSourceURL="srcview/index.html"
creationComplete="showWebPage()"
>
<mx:Script>
<![CDATA[
private function showWebPage():void
{
html.location = "http://www.google.com";
}
]]>
</mx:Script>

<mx:HTML width="100%" height="100%" id="html" x="0" y="0"/>

</mx:WindowedApplication>

Share/Save/Bookmark

Categories: AIR
10Oct

Adobe AIR INSERT Data to SQLite Database

No comments


	
		
	
	
	

Not sure how the code will render, so here is a screenshot:

Share/Save/Bookmark

Categories: AIR
07Oct

Skinning a Button with Flex 3

No comments

Sorry for the formatting of the code, my editor is having issues:

<mx:Button label=”Image Button”
toggle=”true”
color=”0xFFFFAA”
textRollOverColor=”0xAAAA55″
textSelectedColor=”0xFFFF00″
upSkin=”@Embed(source=’assets/buttonUp.gif’)”
overSkin=”@Embed(source=’assets/buttonOver.gif’)”
downSkin=”@Embed(source=’assets/buttonDown.gif’)”
disabledSkin=”@Embed(source=’assets/buttonDisabled.gif’)”
icon=”@Embed(source=’assets/logo.gif’)”/>

Share/Save/Bookmark

Categories: Flex Web Development
03Oct

Create a SQLLite Database and Table with Adobe AIR

No comments

To expand on the code from a few days ago, so within the WindowedApplication tags:


		
	
	

Sorry, can’t get this editor to work properly.. here is a screen cap of the code:

Share/Save/Bookmark

Categories: AIR