ActionScript 3.0 :: Resolution For An AIR Game On IPad2?
Nov 9, 2011
We have alredy made a game at 1024x768 (iPhone2 max resolution) and it runs ok, maybe with a little hiccup here and there. But we really want to make a more complex game next time, and performance is a big concern.What resolution (in pixels) should we use for an iPad/iPhone game? does it have an actual impact on overall performance?
View 1 Replies
Similar Posts:
Apr 15, 2012
I'm currently working on an Adobe AIR application which is targeting the iPad2 as the hardware platform, and can not get decent scrolling performance on one of the screens. I'm using a spark list, with a custom item renderer like so:
<s:List id="productList" top="116" bottom="0" left="10" right="10"
width="100%"
visible="true" includeInLayout="true"
height="0"
[code]....
As you can see this is pretty light-weight, yet my dataprovider contains upwards of 100 items, and 11 of them can be on screen at any one time. Everything I've read around increasing performance for scrolling revolves around using opaqueBackground and cacheAsBitmap, however no matter what I try neither help here. Using cacheAsBitmap at the list level doesn't help as the item renderer recycling kicks in once you've scrolled more than a couple of lines requiring the whole thing to be re-rendered, and using it at the item renderer level is still horribly slow when scrolling fast — presumably because many are being recycled at once during a very fast scroll.
I know the iPad should have no problem blitting a screenful of information in a frame at 60 fps, yet when I scroll quickly I'm seeing it struggle to make 10 fps (from sight). So the question: have I missed something obvious, or is this to be expected due to the number of layers (and vector rendering) involved when using AIR? For the record, I have tried changing the render mode for the application and tried changing the frame rate to eliminate the obvious.
View 1 Replies
May 22, 2011
I�m building an iPad 2 app with Flash with ActionScript 3 (Adobe CS5.5), what I want to do is to wrap my two sections of the video (h264) inside the final app? I do not want to stream the video or load it external, "I need it to be included in the app locally" (inside the final package)!I need it to be in one application, to upload to the iTunes Store/Google market�
PS like to do the same with Android, the package (apk) no stream video.
View 0 Replies
Feb 9, 2010
I want to know is there anyway to invisible title bar for a AS3 project? and how to force program to use fix resolution and change monitor resolution to what we want?
View 1 Replies
Mar 7, 2012
I am going to develop a very simple game for android and for iphone/ipad I have the option to develop it in cocos2d or in adobe flash air (i am not a developer, but i have 2 developers who are offering me the service)I have a developer that states that cocos2d is better and other one that states that adobe flash air.I want it in cross platform.the cost offered by both developers is the same..i have heard that adobe air has the flaw that it is very slow, is this real? if you had the 2 options which will you use to develop your game and why?
View 1 Replies
Apr 24, 2011
I'm making a game that populates user-designed cards into the game using an external xml file. My main class loads the xml file and then calls to the "Card" class, which wants to use the xml file. I've tried using this.parent and it just gives me a null object reference error. This is what I have so far: Main.as
[Code]...
View 2 Replies
Jul 4, 2010
currently i making this game and objects would spawn at random and be able to click but when de game starts itself, the spawn is correct but i am unable to make it stop when time goes to 0seconds.
View 1 Replies
Feb 28, 2011
I'm creating a game at the moment for my university course and it involves the player character jumping on top of boxs twice to break them as opposed to just once.What would be the most efficient/simple way of writing this in Actionscript 3.
View 1 Replies
Aug 3, 2011
I have recently started working with Mahjong game. But being not so experienced developer. I am just confuse about many aspects of it. So if anyone could throw some light on it. I have to build the game where there could be different number of tiles on screen. 32, 48, 64 , 80, 96, 112 and so on Now I have questions regarding the levels of blocks in this game. I mean the layouts of the game should be predefined or they should be dynamically created? Also I wanted to know how the surface of enable and disable symbols are created?
View 2 Replies
Jun 13, 2009
I was trying to make a game, and the character inside the game could swim. However, I only wanted him to swim in short bursts that refueled every time he hit the ground.
View 9 Replies
Jul 23, 2010
im trying hard to make a Game like the Pokemon TCG .
View 2 Replies
Nov 19, 2009
I think Flash/Flex is a good aproach for this case.We need to build some like the following
View 2 Replies
Dec 14, 2011
I am thinking of developing of a game like this: [URL]... Do you have any idea - by which game engine I may develop this type of games? I am not sure whether I have to use any 3d physics engine? I think JiglibFlash may be useful, but I am not sure.
View 1 Replies
Apr 1, 2011
how to make a game tutorial as farmville game tutorial to teach the user to play the game. i have recently involve in make that kind of game tutorial for its user by actionscript 3
View 1 Replies
Mar 28, 2012
im trying to create a tamagotchi game type game. For some reason i can not add any items to the stage.Currently i have imported 2 png images to the stage and coverted them to movie clips. One is called TamagotchiCharacter and the other is called Beer. I have also created a new 2 AS3.0 script class called TamagotchiGame and DraggableItem. The following is TamagotchiGame:
Code:
package {
import flash.display.MovieClip;
public class TamagotchiGame extends MovieClip {
[code]....
I have assigned the above code as the BaseClass of the Beer symbol, this has allowed the beer to become draggable and droppable etc.when i run the program nothing happens, i just get a blank white screen.
View 2 Replies
Jan 22, 2010
It's about the "Game Character Dialogues", It is used to instruct the user what to do, like what you see in BookWorm or Diner DAsh.I used dynamic text fields to generate these dialogues,but as I continued doing it. I found myself stuck.I have no idea on how to change the words when the "next" button is clicked. there will be no previous button. but the dialogue will replay when the character is clicked.
View 3 Replies
Mar 15, 2009
Is there a way to get this code to work? It's meant to count the seconds passed while playing the game and gives a bonus multiplier to the current score when the game ends. I don't know how to get the returned value to combine it into the multiplier int variable. Is there any way to get this code to work or is it completely wrong?
View 11 Replies
May 19, 2010
We have a bug in one game whereby the sound of the word repeats. Even when we use stopAllSounds - the sound is still kept in memory and you can hear it in the next activity - it's a disaster and kids get real angry.
View 3 Replies
Oct 22, 2011
I am making a Shooting game in flash actionscript 3 and have some questions about the flow of logic and how to smartly use the OOPs concepts.There are mainly 3 classes:Main Class: Initializes the objects on the screen.Enemy Class: For moving the enemies around on the screen.Bullet Class: For shooting.What I want to do is find out if the Enemy has been hit by a bullet and do things which must be done as a result ...What I am doing right now is that I have a ENTER_FRAME event in which i check collision detection of each enemy unit (saved in an array) with the bullet instance created, and if it collides then perform all the necessary actions in the Main class .. clogging the Main class in the process
View 2 Replies
Jun 11, 2010
I have researched this and found lots of information but I am fairly new to actionscript and scripting in general. Here is what I am trying to do. I am working on a site that is already setup and ready to go. What I am creating is a very basic 15 second flash intro/flyer that will show up and eventually redirect to the main site. Like I said this is a very basic flash with basic tweening however my main issue is that we want this one picture to fill up the entire browser window without getting cut off no matter what resolution. I don't care how it is accomplished whether it is actionscript, java,
View 5 Replies
Jan 15, 2009
I'm having problems with image resolution...I'm using .png files, and the color/reso looks great in the flash file, but when I play the swf, the resolution gets all pixelated.
View 1 Replies
May 10, 2011
I am working with some images in my flash file which I would like to have at a high resolution (approx 1280X1024 px or even higher) so that they look good when they take up a full screen, and also when I zoom IN on them.
However, when I import them into flash at this size, they look TERRIBLE when zoomed OUT (eg. to 15%). They look fine in photoshop at this size.
View 4 Replies
Apr 1, 2009
How did they make that border to wrap around any resolution? make my images from my XML gallery to not become pixelated when it loads in full-screen.
View 3 Replies
Oct 20, 2009
I'm going to be creating a Flash presentation that will run on a flatscreen TV at a trade show. I'm not certain what resolution to set up my Flash movie to. The TV is a widescreen Panasonic 42" TH42PH10BK with 1024 x 768 pixels, however when I set my animation to those values it looks 'squarer' than the TV. It looks like I need to set up the animation to a different resolution, but I don't know which!
View 4 Replies
Dec 30, 2009
my problem is related to website resolution problem i develop a drop down menu from a software "flash menu lab". Then i embed it on a web page, it correctly show in 1024*768. but when i go to high resolution it does not move width automatically it show menu similar to 1024*768 i hope you got my problem...! remember i fixed width to 100% but it is not working...! this is my code
[Code]...
View 1 Replies
Mar 2, 2011
I'd like to know where to look for documentation on how to make elements that adjust to the site resolution, or what this technique is called.
Like in here (the floating clip on the left upper corner, there is a menu divided into 2 parts like float:left and :right (like I would make this in css))
[URL]
Basically I'd need a menu always aligned to the bottom-center of the page that won't change the size, but the background always stretched proportionally to the width of the page upon resizing.
View 1 Replies
Apr 24, 2009
what would be the right resolution and format to create a flash as a tv commercial?
View 13 Replies
Sep 4, 2009
Is there a way to find how long a function takes to execute beyond 1ms resolution:
time1 = getTimer();
//Do something
time2 = getTimer();
totalTime = time2 - time1;
View 1 Replies
Sep 9, 2010
I have published my Flash site to the web server but I notice that it doesn't display correctly in smaller resolutions (I think the smallest it looks best in is 1024 x 768)... the bottom keeps getting cut off when viewed in any small resolution. I figure this is something that can be corrected in the HTML file so if someone can show me what exactly I need to put into that file, that would be great. My site is here if you need to reference it:[URL]..
View 17 Replies
Feb 7, 2011
Im trying to get my application to run in full screen, I've tried a variaty of scripts and all of them work, yes the app does open up in full screen but there are always white edges on the left and right, which are outside of the stage.
Is there any way to get rid of them, either use a differet bit of code or possible can AS, change the resolution of the screen to the req. and change it back on close?
The code that i've tried:
------
import flash.display.StageDisplayState;
stage.displayState = StageDisplayState.FULL_SCREEN;
[code].....
View 3 Replies