-
I posted to delicious.com
Google, #Flash, and #devices
February 18 2010, 10:11am | Comments »
-
I posted to delicious.com
Preview of #AIR on #Android - Adobe AIR Team Blog
http://blogs.adobe.com/air/2010/02/preview_of_air_on_android.html
February 18 2010, 10:11am | Comments »
-
I posted to delicious.com
Game Controllers in #AIR 2.0
http://www.bytearray.org/?p=1268
February 17 2010, 7:09pm | Comments »
-
I posted to delicious.com
ASDocr Update for AIR 2 Beta 2
http://www.gskinner.com/blog/archives/2010/02/asdocr_update_f.html
February 10 2010, 5:53pm | Comments »
-
I posted to delicious.com
#ActionScript Code Analyzer
http://enginyoyen.com/blog/eng/actionscript-code-analyzer/
February 9 2010, 2:51pm | Comments »
-
I posted to delicious.com
PreFab3D Air tool for augmented workflow export to #as3 #awesome
February 6 2010, 9:39am | Comments »
-
I posted to delicious.com
Andrew Trice
http://www.cynergysystems.com.au/blogs/page/andrewtrice?entry=adobe_air_windows_7_multi
Multi-Touch Air Support
- Tags:
- Air
- multitouch
January 10 2010, 3:08pm | Comments »
-
I posted to delicious.com
The UcompOS Rich Experience Framework
- Tags:
- Flex
- Air
- javascript
- framework
December 30 2009, 8:31am | Comments »
-
I posted to delicious.com
JavaScript Memory and CPU Profiling in Adobe AIR 2 - Adobe AIR Team Blog
http://blogs.adobe.com/air/2009/12/javascript_memory_and_cpu_prof.html
- Tags:
- Air
- javascript
- memory
December 3 2009, 6:23am | Comments »
-
I posted to delicious.com
22 Awesome Adobe AIR Applications for Designers
http://sixrevisions.com/tools/22-awesome-adobe-air-applications-for-designers/
September 18 2009, 5:55am | Comments »
-
I posted to delicious.com
Splashup Light
http://www.splashup.com/light/
August 12 2009, 6:22am | Comments »
-
I posted to delicious.com
Adobe Flash Platform Blog
http://blogs.adobe.com/flashplatform/
August 4 2009, 4:55pm | Comments »
-
I posted to delicious.com
Yahoo Map AS3 API » Pathfinder Development
http://www.pathf.com/blogs/tag/yahoo-map-as3-api/
- Tags:
- 3d
- Air
- googlemaps
June 16 2009, 7:02am | Comments »
-
I posted to delicious.com
Using Flash CS4 and Adobe AIR to build custom browsers for e-learning and social networking | Adobe Developer Connection
http://www.adobe.com/devnet/air/flash/articles/air_browser_sample_application.html
- Tags:
- Air
April 8 2009, 3:27pm | Comments »
-
I posted to delicious.com
Adobe AIR Developer's Toolbox: Resources And Tutorials | Developer's Toolbox | Smashing Magazine
http://www.smashingmagazine.com/2009/04/07/adobe-air-developers-toolbox-resources-and-tutorials/
April 7 2009, 2:16pm | Comments »
-
I posted to delicious.com
Developing Mashup Air Apps: Consuming Twitter APIs | InsideRIA
http://www.insideria.com/2009/03/ch-18-consuming-twitter-apis.html
March 26 2009, 7:14am | Comments »
-
I posted to delicious.com
SourceForge.net: GalleryRemote.AIR: Files
http://sourceforge.net/project/showfiles.php?group_id=256491&package_id=314336
March 21 2009, 4:01pm | Comments »
-
I posted to delicious.com
De MonsterDebugger - Open Source Flash, Flex and AIR debugger
http://www.demonsterdebugger.com/
- Tags:
- ActionScript
- Flex
- as3
- Air
- debugging
February 5 2009, 7:00am | Comments »
-
I posted to i-create.org
Yahoo Pipes + AS3 = Some Issues
http://i-create.org/2008/06/09/yahoo-pipes-as3-some-issues/
Well I have been working with ActionScript3 and come across a few gotchas. Here is my conundrum. Yes it is the infamous TypeError: Error #1085: This error occurs when an html tag is not closed properly. I have been using Yahoo Pipes and combining it with flash for fun and most of the time with good results. Unfortunately when you run into error #1085 everything stops or if the html is not correctly formatted even if you wrap it in a CDATA tag nothing appears. So that kind of sucks. I will look into creating a class that analyzes the string and corrects the issue but it may not even be possible to fix this error. Any way the code below works for the most part (as long as your html is coded correctly). It would be easy to say well why don’t you just fix the html which would of course be easy assuming it is mine but in this situation it is not…. I do love actionscript3 it is definitely what adobe needed to do with actionscript it is nice because ActionScript three is not so different from C# and it is a full blown object oriented programming language. I have also attempted to get the information in JSON and render it but of course I run into the same issue. I will have you know you can do some cool stuff with the JSON class. I will be posting a new AIR application within the next 4-5 months.
?View Code ACTIONSCRIPTstage.scaleMode = StageScaleMode.NO_SCALE; var myXML:XML = new XML(); var XML_URL:String = "http://pipes.yahoo.com/pipes/pipe.run?_id=f207a19ea9a846e4ca242c5239a0d0df&_render=rss"; var myXMLURL:URLRequest = new URLRequest(XML_URL); var myLoader:URLLoader = new URLLoader(myXMLURL); //myLoader.addEventListener(Event.COMPLETE, onComplete); myLoader.addEventListener("complete", xmlLoaded); var outXML:XMLList = new XMLList(); var rssOutput:String; function xmlLoaded(event:Event):void { myXML = XML(myLoader.data); if (myXML.namespace("") != undefined) { default xml namespace = myXML.namespace(""); } myHead_txt.htmlText="Digg News"+"RIA News"+"MXNA News"+"MSDN News"; for each (var item:XML in myXML..item) { var itemTitle:String = item.title.toString(); var itemDescription:String = item.description.toString(); var itemLink:String = item.link.toString(); outXML += buildItemHTML(itemTitle, itemDescription, itemLink); } XML.prettyPrinting = false; rssOutput = outXML.toString(); myText_txt.htmlText=rssOutput; } function buildItemHTML(itemTitle:String, itemDescription:String, itemLink:String):XMLList { default xml namespace = new Namespace(); var body:XMLList = new XMLList(); body += new XML("<strong>" + itemTitle + "</strong>"); var p:XML = new XML(" "+ "<!--[CDATA[" + itemDescription +"]]-->"+" ");//remove the CDATA tag this was only an attempt to correct fubared html //var img:XML = <img alt="" /> var link:XML = <a></a>; link.@href = itemLink; link.font.@color = "#990000"; link.font = "More..."; p.appendChild( ); p.appendChild(link); body += p; return body; }
Managed to fix some of my issues. You will notice when you send a yahoo pipe through a feed validation some pipes absolutely explode. So of course their not going to work with flash. One work around is an attempt to cleanse the pipe so to speak I have had good results sending a dirty pipe through the Dapper to clean it. It is a round about process but it seems to work just fine. I have to give the people at yahoo credit yahoo pipes is truly amazing. I am also confident in the final release they will have no issues. While looking for ways to clean dirty html / xml I managed to teach myself a great deal! I also found this article that discusses how to use pipes to send a feed through a web page to append information creating the clean output of an rss feed combined with an html web page chunk sound weird I know. This displays an interesting use of the HTML tidy service. Any way check it out here. Bookmark and Share More »Powered by Bookmarkify™
- Tags:
- ActionScript
- i-create
- Air
- Apollo
June 9 2008, 10:57am | Comments »
