
Tags
ActionScript
Adobe
AIR
AIR Native Extension
Android
ANE
Application Devlopment
Arduino
BlazeDS
C
CFUG
Class
ColdFusion
ColdFusion Builder
CompSci
Computer Engineer
Computer Science
CS
CSE
DLL
Education
Flash
Flash Builder
Flex
Flex Builder
InsideRIA
iPhone
Java
Job
K-12
Kinect
LiveCycle
LiveCycle DS
MacOS
MAX
Mobile
O’Reilly
POV
Queensland
Resume
RIA
RIM
TV
University
Video
Microblog
- 4:51:40 PM AIR applications created: x.apk, x.ipa 4:54:38 PM 91 changes committed: Subversion: Committed revision 17. 7 hours ago
- ok. code committed. now I have the rest of the day to do chores and play :) 7 hours ago
- Have I ever mentioned how much I despise Flex Skinning? Trying to update a Flex Mobile app to match the new Android UI/Style guidelines 7 hours ago
- bike bike bike bike. ANDERSON! 1 day ago
- finally registered for the @ahecta 2012 :) San Antonio, here I come (in a month) 2 days ago
- Waiting for the Michigan ActionScript Usergroup to begin... Mobile App Development Q&A tonight! 3 days ago
Archives
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- August 2011
- July 2011
- May 2011
- January 2011
- December 2010
- November 2010
- October 2010
- July 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- July 2009
- June 2009
- May 2009
- March 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- August 2007
- October 2006
- January 1970




hey nick
these are awesome videos this is exactly what i was looking for, please hurry and finish part 3 and 4
very useful
The videos are recorded, just need to do the editing. Hopefully should have part 3 online tomorrow, if I don’t get too distracted by Twitter
since im in the middle of an iteration i cant wait!
thanks again
j
Jeff,
The third video has been posted — http://quetwo.com/2011/11/03/creating-a-windows-air-native-extension-with-eclipse-part-3/.
Pingback: Creating a Windows AIR Native Extension with Eclipse – Part 3 « QueTwo's Blog
awesome thanks
j
Hey Nick, I’m getting an error where in the isSupported function, where FRENewObjectFromBool(isSupportedInOS, result);, I get an error saying “argument type of “FREObject” is incompatible with parameter type “FREObject *”. Any ideas on this?
Also, I’m using this in VC++, I know that this video tutorial is aimed at Eclipse, but somehow my Eclipse keeps popping up Nothing can be built so I switched to VC++. But the error doesn’t seem to be program-specific.
I’ve also tried this again in Eclipse, it’s working now, and it’s still popping up an error on that line saying:
Invalid arguments ‘
Candidates are:
enum {FlashRuntimeExtensions.h:4073} FRENewObjectFromBool(unsigned int, void * *)
‘ ThinkpadAPS_E.cpp /ThinkpadAPS_E line 31 Semantic Error
Those seem like the errors I was getting when the header I had wasn’t compatible with my compiler. If you are doing this within Eclipse, did you use the header modifications I mentioned in the video?
Best I can tell, the error is saying that the FREObject object isn’t defined how you want to use it. The other possibility is that the object-code (the file you import) may be corrupt for some reason…
I just fired up Eclipse again, this time, I changed FRENewObjectFromBool(isSupportedInOS, result); to FRENewObjectFromBool(isSupportedInOS, &result); and it doesn’t seem to pop up any errors for now.
Oops, my bad, you actually said to change result to &result towards the end of the tutorial. Sorry and thanks.