
Tags
ActionScript
Adobe
AIR
AIR Native Extension
Amazon Web Services
Android
ANE
Apple
Application Devlopment
Arduino
Avaya
BlazeDS
C
CFML
Class
Cloud
ColdFusion
ColdFusion Builder
Computer Engineer
Computer Science
CS
CSE
DLL
Education
Elastic Beanstalk
Flash
Flash Builder
Flex
Flex Builder
iOS
iPhone
Java
Kinect
LiveCycle
LiveCycle DS
MacOS
MAX
Mobile
POV
Railo
RDS
RIA
TV
University
Video
Microblog
- For those paying attention, the Lansing Maker Space is about ready to move into the coolest space in Lansing. Like, starting tonight ;) 1 hour ago
- Hey @overheardatmoo when will NFC cards be available. Would love to use them for our Maker Space going online soon. 1 hour ago
- Totally didn't look at my calendar until Lansing Breakfast Club was over. boo. hiss. 8 hours ago
- Tried to sneak out during lunch -- got interviewed by the news. Whoopsie. 1 day ago
- Wait. Month-to-month Creative Cloud is $74 a month?!? 1 day ago
- RT @bleikamp: The easiest way to vertically center something in CSS is to close your laptop and go to the bar. 1 day ago
Archives
- April 2013
- January 2013
- November 2012
- October 2012
- September 2012
- 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.