
Tags
ActionScript
Adobe
AIR
AIR Native Extension
Android
ANE
Application Devlopment
Arduino
BlazeDS
C
CFUG
Class
ColdFusion
ColdFusion Builder
CompSci
Computer Engineer
Computer Science
Cover Letter
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
Microblog
- Surprise : HP jumps into the "me too!" game : http://t.co/M6Y3LPAE 9 hours ago
- ahhh.. Ant build completed with zero errors and zero warnings in 644s at 2/25/12 12:06 PM 12 hours ago
- Building the @JustinMclean SDK, erm. Apache Flex SDK. So far, so good :) 12 hours ago
- crap. switches SVN branches and forgot to commit first. so-long changes! 14 hours ago
- If I have one more company that proposes to re-do MSU's admission process, I'm giving up. I asked you to propose X, don't give me Y. 1 day ago
- One day I will find a sales person who listens to us on how our business works and dosent make grand assumptions. They are always wrong. 1 day 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.