IntelliJ IDEA 13.0.2 CE does not show flash builder as external model - actionscript-3

I am trying to get started with the Adobe Gaming SDK.
I have downloaded the Adobe Gaming SDK and the newest IntelliJ IDEA IDE, version 13.0.2 CE as mentioned in the title.
Following this guide i should be able to import all sample projects using the 'import project' button, specifying the samples directory in the Adobe Gaming SDK. However, in the next step i do not see a 'flash builder' model to use to import these projects. How come?
It should be there, also according to the IntelliJ IDEA web help. and also their webhelp here.
I have a screenshot showing that flash builder is not a choice:
https://www.dropbox.com/s/nramesfalhim82l/Screenshot%202014-03-13%2022.46.26.png

Related

Tween Engine library problems on Android libgdx project

This is the same problem I have read and no useful answer found,
I have libgdx, and tween engine progect,i'm working with eclipse,
I use this tutorial to install tween engine Uneversal Tween Engine
all ok, no errors, I use FileTree Dependency Method, the program run on desktop but not on android, there is no erros on the code,I
I import the project with Android studio, and the erros are
Error:(14, 33) error: package aurelienribon.tweenengine does not exist
Error:(25, 10) error: cannot find symbol class TweenManager
etc...
my project is at
C:\NovelaGrafica\codigoFonte
my tween jar files are located at
C:\NovelaGrafica\codigoFonte\libs\tween-engine-api-6.3.3
the main problens is on using the tween library,
WHAT CAN I DO,??? I have spend day looking for answers but nothing works
I'm using windows 10, eclipse Mars and android studio
HELP PLEASE!..........:(
I Finaly got it I just folow that tutorial Universal-Tween-Engine
with a difrence, at the end I didnt use gradlew --refresh-dependencies I use, and that is the importante point gradlew.bat eclipse I'm using windows10 if you are using linux I think is somethin similar probably ./gradlew eclipse
them I Close the eclipse project and import it again, this is important too
I spend 2 day for finding a solution to this ....

Unable to Configure cordova package in Visual studio

I am just starting learning "Build 2D games with HTML5" from MVA and in starting i had a problem to configure my visual studio
Here is the link of that package Cordova-Windows package
The instructor shows that the Cordova windows package 3.5.0 contains CreateTemplates.bat file but it didn't work for me
i came up with this problem i dont know how to overcome this,
when i clicked the createTemplates.bat file its popup and off nothing happends so i try to open it up using command prompt and i get this errors , How to overcome?
what should i do now , your help would be highly appreciable !
You should use be using the Cordova CLI for your command line workflow for building Cordova Apps. For Cordova, more information is available here. If you want to use VS, then I strongly urge you to install our VS 2015 RC build which enables you to build Cordova applications for iOS, Android and Windows. More information for VS, is available here.

deploy cocos2dx existing ios project for android platform

I have a cocos2d-x project in ios platform and I want to deploy this project in android as well.Please help me and explain the steps for it.My cocos2d-x project contains Box2d features into it.
You have to create a sample project for the Android using cocos command and then need to configure some basic parameters. Check out wiki linked on official site .
https://github.com/chukong/cocos-docs/blob/master/manual/framework/native/getting-started/v3.0/how-to-start-a-new-game/en.md

Creating Cocos2dxGame for iOS using eclipse on Windows Machine

I am using windows machine and trying to make a game for iOS in cocos2dx. The editor I am using is Eclipse. Version of cocos2dx is latest.
I have followed many tutorials but not a single tutorial guides me how to code in eclipse for iOS using cocos2dx.
I have seen Classes folder which contains Appdelegate.h and cpp along with helloworld.h and cpp.
When I create a new android project using existing project, i am unable to find classes folder.
I need help on how to get started.
Thank you

How to publish an app with Air 3.0?

I have overlaid Air 3.0 over the flex sdk. I have targeted swf version 13 and included 3.0 in the header of my xml file, is there anything else i need to do to get my app published with air 3.0.
Also is there a way to check what version of air the app has been published with once it has been published?
I am using flash builder 4.5 and osx.
You can get the AIR version at runtime using NativeApplication.nativeApplication.runtimeVersion
Edit:
Also remember that there are different SDKs for Windows and for OSX. The Windows SDK does not work on OSX and vice-versa. Attempting to do so results in a runtime error.
OS X doesn't really matter.
Your application descriptor has changed in format since AIR2.0 The easiest way to check this is create a new AIR 3 project and check the app descriptor xml for that application, and compare it to yours. You will easily find out the differences.
The AIR runtime version (as lukevanin said) can be read from
NativeApplication.nativeApplication.runtimeVersion
Then you can publish in the same way as before (export release build -> select certificates, etc)