
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 of you not in the know -- Adobe just released their CC suite of apps.. New PhotoShop, Premier, After Effects, Dreamweaver and Edge 2 hours ago
- RT @tpryan: I'll be speaking this week in Memphis, TN on Video, the Cloud and You at AHECTA's annual conference: ahecta.org #Cr… 8 hours ago
- Wheels up. Next stop, Memphis for #ahecta13 11 hours ago
- Ah, Big Red, you've done it to me again. Thanks for that pointy stick up the rear. 18 hours ago
- RT @JustinMclean: Just fixed the #ApacheFlex installer to work on Linux. 18 hours ago
- Hehe -- just found "Making Money with Melrose" and "LiveCycle Data Services in the Cloud" presos from the 2011 MAX on a USB thumb drive.. 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




Pingback: Creating a Windows AIR Native Extension with Eclipse – Part 2 « QueTwo's Blog
Pingback: Creating a Windows AIR Native Extension with Eclipse – HackIX: Small Hacks for a Large World
Pingback: Creating a Windows AIR Native Extension with Eclipse – Part 3 « QueTwo's Blog
Pingback: #FollowFridayLinks S01E03 | AS_Blog
I would happy if you post your content file of source.
Nice, but the sentence
>> It is, however, very costly and even though Microsoft offers a free versions, it takes over your computer by installing debug versions of most of Microsoft’s shared libraries making your computer slower and more crash prone.
Is completely false and misleading. Debug DLLs have different names, and are not used by default in any executable.
While that is true, the debug DLLs are registered, sometimes as the default handlers. For example, if are running an app as Administrator and it stops running normally, the debugger will automatically launch and will attempt to pull in the symbols (or ASM) for debugging. This actually adds a lot of weight to the OS (I have run tests on my own installs, pre-VS2005 and post-VS2005) and noted a noticable decrease in performance for other OS functions.
Normally, that is not a huge deal when the benifits outweigh the cons (for example, if you are using Visual Studio as your day job and need the debugging toolset). For as little native coding as I do, and the fact that I really only have one machine which I do everything on, I didn’t feel like that was the case for me.
When I want to add 2 c/c++ development tool, it show me this error in Flash Builder 4, does it mean I need to install Eclipse CPP Indigo?
Cannot complete the install because one or more required items could not be found.
Software being installed: C/C++ Development Tools 8.0.0.201109151620 (org.eclipse.cdt.feature.group 8.0.0.201109151620)
Missing requirement: C/C++ Development Tools UI 5.3.1.201109151620 (org.eclipse.cdt.ui 5.3.1.201109151620) requires ‘bundle org.eclipse.core.runtime [3.7.0,4.0.0)' but it could not be found
Cannot satisfy dependency:
From: C/C++ Development Tools 8.0.0.201109151620 (org.eclipse.cdt.feature.group 8.0.0.201109151620)
To: org.eclipse.cdt.platform.feature.group [8.0.0.201109151620]
Cannot satisfy dependency:
From: C/C++ Development Platform 8.0.0.201109151620 (org.eclipse.cdt.platform.feature.group 8.0.0.201109151620)
To: org.eclipse.cdt.ui [5.3.1.201109151620]
Opp, I understand why, Eclipse indigo is not for FB4. Has able to update with Galieo respository.
Hi Nick,
I’ve followed the first video and after removing #ifdef WIN32 block and saving the file I got bunch of red lines in the header file. For instance:
uint8_t and uint32_t are highlighted in:
typedef void (*FREContextInitializer)(
void* extData ,
const uint8_t* ctxType ,
FREContext ctx ,
uint32_t* numFunctionsToSet,
const FRENamedFunction** functionsToSet
Any ideas why and how to fix this?
uint8_t and uin32_t are standard ansi C/C++ defined types. What compiler / IDE are you using?
I’m using MinGW (set up properly in FB4.6 standalone IDE) + CDT as you prescribed.