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>

[...]

Categories: AIR
10Oct

Adobe AIR INSERT Data to SQLite Database

No comments

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

a2a_linkname=”Adobe AIR INSERT Data to SQLite Database”;
a2a_linkurl=”http://manewc.com/2008/10/10/adobe-air-insert-data-to-sqlite-database/”;
a2a_color_main=”D7E5ED”;a2a_color_border=”AECADB”;a2a_color_link_text=”333333″;a2a_color_link_text_hover=”333333″;

Categories: AIR
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:

a2a_linkname=”Create a SQLLite Database and Table with Adobe AIR”;
a2a_linkurl=”http://manewc.com/2008/10/03/create-a-sqllite-database-and-table-with-adobe-air/”;
a2a_color_main=”D7E5ED”;a2a_color_border=”AECADB”;a2a_color_link_text=”333333″;a2a_color_link_text_hover=”333333″;

Categories: AIR
29Sep

Create a SQLLite Database with Adobe AIR

No comments

Creating a database with SQLLite

a2a_linkname=”Create a SQLLite Database with Adobe AIR”;
a2a_linkurl=”http://manewc.com/2008/09/29/create-a-sqllite-database-with-adobe-air/”;
a2a_color_main=”D7E5ED”;a2a_color_border=”AECADB”;a2a_color_link_text=”333333″;a2a_color_link_text_hover=”333333″;

Categories: AIR
11Sep

AIR - Accessing Native Clipboard

No comments

I made this little AIR App that will display text that was most recently copied or cut to the clipboard.

Here is the code:

You can download this .air file (I disclaim this is not a complete application!)

a2a_linkname=”AIR - Accessing Native Clipboard”;
a2a_linkurl=”http://manewc.com/2008/09/11/air-accessing-native-clipboard/”;
a2a_color_main=”D7E5ED”;a2a_color_border=”AECADB”;a2a_color_link_text=”333333″;a2a_color_link_text_hover=”333333″; [...]

Categories: AIR