Viewing a Web Page in Adobe AIR
No commentsThis 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>
[...]
Adobe AIR INSERT Data to SQLite Database
No commentsNot 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″;
Create a SQLLite Database and Table with Adobe AIR
No commentsTo 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″;
Create a SQLLite Database with Adobe AIR
No commentsCreating 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″;
AIR - Accessing Native Clipboard
No commentsI 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″; [...]