FlashBuilder: Android/Flex Components+Full Screen Graphic possible?

I'm new to flash and interested in multi-platform graphical game development.
I've installed the Flash Builder Burrito test version and want to develop
a full screen Android graphical game with Android-Flex components
(like buttons etc.).
a)
Is it possible to have a full graphical screen and then overlay
Android-Flex components (buttons etc.) or ist only possible
to integrate a graphical screen within a Flex components app
so that Android/Flex components have to been outside the screen
and so no full graphical screen overlayed with Android/Flex
components is possible?
b)
If full graphical screen + Android/Flex components is possible:
which project type have I to choose:
File->New->Flex Project or File->New->ActionScript Mobile Project?
c)
Are the components I can choose to design my Flash-Android project
Android-like Flex components or are they real Android components?

a) yes you can
b) Flex Mobile Project
c) Those are Flex components
If you are creating a game for an Android device I would rather do it with Actionscript. The Flex "Hero" Framework for Mobile is great, but in my opinion laid out for applications not for games. Still you can use parts of it, but if you only lists, buttons and that kind of component then I would rather write them up in AS3.

Similar Messages

  • Code Review on a Full Screen Graphics Wrapper

    Hi all, if you could be so kind, could I get a quick review of my full screen graphics wrapper? It is giving strange flickering issues on an OSX TIBook, although that may be Apple's implementation. Also, am I breaking any major rules? Thanks, Ryan
    package rpgClient.graphics;
    import java.awt.*;
    import java.awt.image.*;
    public class Screen
         private Frame mainFrame;
         private GraphicsDevice gd;
         private BufferStrategy bs;
         private DisplayMode oldDisplayMode;
         private DisplayMode newDisplayMode;
         public Screen(GraphicsDevice gd, DisplayMode dm)
              System.setProperty( "sun.java2d.translaccel" ,"true" );
              this.gd = gd;
              oldDisplayMode = gd.getDisplayMode();
              newDisplayMode = dm;
              GraphicsConfiguration gc = gd.getDefaultConfiguration();
              mainFrame = new Frame(gc);
              mainFrame.setUndecorated(true);
              mainFrame.setIgnoreRepaint(true);
         //screen specifications
         public static GraphicsDevice[] getGrephicsDevices()
              return GraphicsEnvironment.getLocalGraphicsEnvironment().getScreenDevices();
         public static GraphicsDevice getDefaultGraphicsDevice()
              return GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice();
         public static DisplayMode createDisplayMode(int width, int height, int bitdepth)
              return new DisplayMode(width, height, bitdepth, DisplayMode.REFRESH_RATE_UNKNOWN);
         public static DisplayMode[] getDefaultDisplayModes()
              return GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice().getDisplayModes();
         public static DisplayMode[] getDisplayModes(GraphicsDevice gd)
              return gd.getDisplayModes();
         public static boolean isValidDisplayMode(GraphicsDevice gd, DisplayMode dm)
              DisplayMode[] dms = getDisplayModes(gd);
              for(int i = 0; i < dms.length; i++)
                   if(dms.getWidth() == dm.getWidth() &&
                   dms[i].getHeight() == dm.getHeight() &&
                   dms[i].getBitDepth() == dm.getBitDepth())
                        return true;
              return false;
         public static boolean isValidDefaultDisplayMode(DisplayMode dm)
              return isValidDisplayMode(getDefaultGraphicsDevice(), dm);
         //class methods
         public boolean isFullScreenSupported()
              return gd.isFullScreenSupported();
         public boolean isDisplayChangeSupported()
              return gd.isDisplayChangeSupported();
         public void initFullscreen() throws Screen.FullScreenInitException
              if(!isFullScreenSupported() || !isDisplayChangeSupported())
                   throw new Screen.FullScreenInitException();
              //init the display
              gd.setDisplayMode(newDisplayMode);
              gd.setFullScreenWindow(mainFrame);
              mainFrame.createBufferStrategy(3);
              bs = mainFrame.getBufferStrategy();
         public void deinitFullscreen()
              gd.setFullScreenWindow(null);
              gd.setDisplayMode(oldDisplayMode);
         public Frame getBaseFrame()
              return mainFrame;
         public GraphicsConfiguration getCurrentGraphicsConfiguration()
              return mainFrame.getGraphicsConfiguration();
         public void dispose()
              mainFrame.dispose();
              mainFrame.removeNotify();
         //Draw method one: Pass in an image of the screen
         public void bltImage(Image i)
              Graphics g = bs.getDrawGraphics();
              g.setColor(Color.BLACK);
              g.fillRect(0,0, newDisplayMode.getWidth(), newDisplayMode.getHeight());
              g.drawImage(i, 0, 0, null);
              g.dispose();
              bs.show();
         //Draw method two: Get the back buffer, do you buisness, then initiate the blt
         public Graphics2D getGrahphics2D()
              Graphics2D g = (Graphics2D)bs.getDrawGraphics();
              g.setColor(Color.BLACK);
              g.fillRect(0,0, newDisplayMode.getWidth(), newDisplayMode.getHeight());
              return g;
         public void bltGraphics2D(Graphics2D g)
              bs.show();
              g.dispose();
         public class FullScreenInitException extends Exception {}

    Hi there,
    Did you ever resolve this problem? I am new to the Fullscreen API but I am writing a complicated interactive screensaver. It works really well on Windows XP but there is terrible startup flicker on OS X. My own graphics is repeatedly overdrawn with a blank white screen, about four or five times over a few seconds, then finally the window starts behaving (nearly) as expected. The same drawing code works well in a windowed version on OS X.
    Anyone else have this problem?

  • Full screen graphical output

    I am working on a project for a school where I need to do fast (relatively speaking) graphics rendering in real time.
    Essentially, I have 5 computers; 1 Server and 4 clients.  Each client is hooked to a projector and is responsible for one letter of the word LASA. I have the network bits working, so that each client is told what color  and what position to draw the letter at, but now I am having trouble with getting it to draw quickly and smoothly.
    First I tried working with just making the pane full screen using a property node and modifying its background color at runtime, this worked great, so long as I didn't try to change anything on the panel, which made moving the letter using this method impossible.  Next, I thought I could use an image control since they are designed to handle quickly changing graphics and I could then just pragmatically generate the image on the fly.  While this seems like a great idea, I can't figure out how to make it full screen.
    Any help is appreciated.

    Attached is an example of the picture control doing this by changing the origin.  You can coordinate VIs by changing this origin synchronously in your displays using commands.  You can change the appearance of the VI front panel so that the title bar, scroll bars, etc are all not shown, and even make the background transparent, then maximize it.  The picture control allows you to easily change the background color of your text using either a rectangle in the background or with the text background itself (if the text is large enough).  You can programmatically scale the picture control and font size so that it looks good on your monitor.  You could also programmatically make the VI front panel slightly larger than your monitor so there are no seams.  Remember to have a way to close everything.  The picture control has a rich set of mouse events, so this should be pretty easy.
    Let us know if you need more help.
    This account is no longer active. Contact ShadesOfGray for current posts and information.
    Attachments:
    ScrollText.vi ‏13 KB

  • Full screen graphics corruption

    Every few days I am getting full screen corruption like this: http://twitpic.com/48qx4
    Multicolored triangles criss-crossing the screen and a reboot is the only way to fix it.
    I have all of the latest updates installed, and I can't find anybody who has the same problem.

    Adam,
    If your profile is correct, you could try updating your system software to 10.5.6.
    Try a process of elimination. Try running QT, Dreamweaver, and iTunes, but not the open source WebKit.
    See if you can locate a crash log. How to locate a crash log:
    1. Open Finder.
    2. Click "Go" in the menu, then select "Go to Folder".
    3. Copy and paste this path into the Finder dialog:
~/Library/Logs/CrashReporter/
    4. Click the Go button.
    5. Finder opens the folder containing the crash log. Look for a the crash file with a date field that looks like the most recent.
    I'm still learning how to read these but there are more experienced users here that can.
    Carolyn

  • Problem - loose connection (presumed)? Full screen graphical distortion.

    My Macbook pro (bought last November) has developed a problem in the last week.
    The screen will glitch - like as shown in this photo
    http://www.flickr.com/photos/theotherblackstuff/3617817234/sizes/l/
    Sometimes tilting the screen forward or backwards slightly will temporarily resolve the issue, sometimes just applying some pressure near the base of the screen (at the back) will.
    It strikes me that it would be caused by a loose connection...
    Will upload a video...

    Hi,
    I'm having the very same problem, but my MacBook is out of Applecare. Same behavior, same rudimentary remedy.
    Since my machine is not covered, I'm pretty much going to have to do this on my own then, aren't I? So could someone point me to a guide on how to repair this thing, because I'm getting incredibly frustrated.

  • Problem with Full Screen

    Ok I am getting problems with full screen graphics on some computers.
    I am writing an internet based RPG and this is really eating into my time...
    Can any one explain why my graphics will not show some times (works others) with the exact same code running....
    I am using a BufferStratagy with a frame.
    Any help would be gladly apreashiated thank you in advance,
    Phibred

    Not a thread issue, no thread on this side of the program and yes there is a media tracker. However I have learned that my problem was that my screen does not like to flip to 800x600 for java applications for some reason thx any way.

  • Flex Bug - Cannot display full screen video in a new window

    My top level application consists of a login screen. When the user logs in successfully, the main application is closed using "this.close()" and a new Window() is opened. Inside the new window I've added the VideoPlayer component and specified a source.
    When I run the application, everything worked as expected. However as soon as I click the full screen option on the VideoPlayer, Flex says:
    Error: Error #3200: Cannot perform operation on closed window.
        at flash.display::Stage/desktop_set_displayState()
        at flash.display::Stage/set displayState()
        at spark.components::VideoPlayer/fullScreenButton_clickHandler()[E:\dev\4.x\frameworks\projects\spark\src\spark\components\VideoPlayer.as:2233]
    Inside the VideoPlayer.as file I've found what I think is the problem:
    2204: // add as a popup
    2205: PopUpManager.addPopUp(this, FlexGlobals.topLevelApplication as DisplayObject);
    I commented out line 2205 and added a new line:
    PopUpManager.addPopUp(this, parentApplication as DisplayObject);
    However I get the same error and it still says the problem is at line 2233 as well, even though line 2233 now reads (due to the additional line I added above):
    // TODO (rfrishbe): Should we make this FULL_SCREEN_INTERACTIVE if in AIR?
    I cleaned my project via the Project menu but I still get the same error message. Any idea how I can resolve this problem?

    Doesn't anyone know?

  • Is it possible to change the background color when publishing as EXE Full Screen?

    I often publish Captivate projects as EXE - FullScreen. I would l like to set the background color outside of the EXE frame. Is that possible. When running my Captivate published .EXEs at full screen at a resolution greater than the project, a tan color background color appears and I would like to change it to black, or some other color. I tried the Skin - HTML background color, but that had no effect.
    Thanks
    Jack
    Captivate 7 / Windows 7

    Hi,
    it is - use the oItem.BackColor property
    BackColor PropertyDescription
    Returns or sets a value specifying the background color of text or graphics in an item.
    Property type
    Read-write property
    Syntax (Visual Basic)
    Public Property BackColor() As Long
    Remarks
    RGB value in long representation. You can use the standard Visual Basic colors, for example, vbBlue, vbYellow, etc.
    The valid range for a normal RGB color is 0 to 16,777,215 (&HFFFFFF).
    lg David

  • Is it possible to change the size of the 'Close' button in Full Screen viewing mode?

    I am currently using Firefox for a kiosk type scenario. We require that the browser run full screen. The issue is that the 'Close' button is not large enough for users to consistently see, so they're having issues figuring out how to close an active browser window.
    Can anyone tell me if it's possible to change this icon? I've tried using themes, but they tend to theme everything but the close button.
    Custom configuration details are below.
    Firefox version: firefox-3.0.4-1.el5.centos
    Customisations:
    Access to local drives disabled:
    Modified the contents of /usr/lib/firefox-3.0.4/chrome/browser.jar, so that browser.js has the added stanza:
    <pre><nowiki>if (location.match(/^file:/) ||
    location.match(/^\//) ||
    location.match(/^resource:/) ||
    (!location.match(/^about:blank/) &&
    location.match(/^about:/))) {
    loadURI("about:blank");
    }</nowiki></pre>
    Various menus & bookmarks disabled in chrome/userChrome.css
    <pre><nowiki>/* Kill "normal" bookmark icons in the bookmarks menu */
    menuitem.bookmark-item > .menu-iconic-left {
    display: none;
    /* kill icons for bookmark folders in Bookmarks menu */
    menu.bookmark-item > .menu-iconic-left {
    display: none;
    /* kill icons for bookmark groups in Bookmarks menu */
    menuitem.bookmark-group > .menu-iconic-left {
    display: none;
    /* Remove the Edit and Help menus
    Id's for all toplevel menus:
    file-menu, edit-menu, view-menu, go-menu, bookmarks-menu, tools-menu, helpMenu */
    helpMenu { display: none !important; }
    tools-menu { display: none !important; }
    file-menu { display: none !important; }
    edit-menu { display: none !important; }
    view-menu { display: none !important; }
    go-menu { display: none !important; }
    bookmarks-menu { display: none !important; }
    #autohide-context { display: none !important;}
    #bookmarksToolbarFolderMenu { display: none !important;}
    #organizeBookmarksSeparator { display: none !important;}
    .tabbrowser-tabs .tab-icon {
    display: none;
    #urlbar {
    font-family: Arial !important;
    color: Black !important;
    font-size: 26 !important; }</nowiki></pre>

    Try code like this:
    <pre><nowiki>#window-controls .toolbarbutton-icon {
    width: 25px !important;
    height: 25px !important;
    </nowiki></pre>
    The three buttons have these IDs:
    <pre><nowiki>#minimize-button
    #restore-button
    #close-button</nowiki></pre>

  • Air For Android - Full Screen not working

    Opened CS5.5 > Chose "Air For Android" which gave me a stage dimension of 480x800 default. I then created my app.
    I am using a Droid Bionic and testing my app on it. It will not go to full screen, regardless of how I am holding the Droid. When publishing, I clicked "Full Screen" and Portrait, Landscape, Auto Orientation, etc. I tried all of the publishing options, yet still there is white screen on the eastern and southern side of the screen.
    I have a picture on the main screen, and it fits perfectly within the 480x800 dimmensions when playing in Flash. After publishing to an APK file and testing it on Droid, I have that white space as mentioned, as if the stage size grew larger than the picture / app. I also shrank the stage(480x800) dimensions to to (340x600) , but still the same amount of white space. When I move the picture to the right a bit, and publish, it shows the white space on the left hand side of the stage. This can only mean that when I publish, the stage size grows but everything on the stage stays the same. 
    Any ideas?
    Thanks!

    I removed:
    stage.scaleMode = StageScaleMode.NO_SCALE;
    stage.align = StageAlign.TOP_LEFT;
    from AS3 and it works better. Now there is even white space on the north and south side of the screen. Clicking "Full Screen" in the publish settings, makes a little more white space, which is weird. It as if now the stage is expanding its height, rather than its height and width due to me using the above code. Still, would like to get rid of that extra white space.
    Edit: It looks like the stage height grew by 60. If I expand the picture by 60, placing it on the stage at 0x and -30y, it fits fine on the bionic. I don't understand why this is happening, and scared that it may be different for each device.

  • Is this possible? View photos in full screen and navigate using cursor

    Recent convert from PC. Love the mac thus far but this is driving me crazy. What I am trying to do is to view pictures (in a folder) in full screen and be able to navigate either using the left-right cursor or some kind of buttons on the screen. Here's what I did:
    1) Intuitively, I double clicked on one of pics. It brings up Preview. So far so good. Able to view full screen but wait! There's no way to go the the next or previous pics. Ok I get it Preview is supposed to 'simply preview' a doc/pic. It is not a full fledge image viewing application.
    2) Few Googles later, I learned about quicklook. Easy enough, I pressed the spacebar and can see the pictures. Left-right cursor works! But wait! It stops when you view the last picture in the row (i.e. it doesn't go the next row). Huh?
    3) Few Googles later. I learned about using the 'tab' instead. Very nice...I can now browse pics on the next rows...BUT...how do I go back?
    4) Few Googles later. I learned about using the 'shift tab' to go back (now this is getting annoying). Fine, now that I've nailed navigation 101, how do I view the pics in full screen? Quicklook only utilize like 50% of the screen. I don't think it is possible....so back to square one.
    5) More Googles later. I learned about "command a" to select all pictures and then "enter". This will open Preview with all the pictures and presto the left-right cursor works, a left-right icon appears and voila the "full screen" icon is available.
    Can some expert/genius please tell me if I am too stupid to use a Mac or that Windows 7 is indeed a more superior os.

    Thomas thanks. I think we (mostly I) are beating on a dead horse here. I guess I had figured out the answer from the get-go but is simply ranting. Windows may be a crappy os but when it comes to picture viewing, it is more intuitive.
    Now that I've figured out that the "solution" is to select all and then open in preview. Another question came up...what if I want to start viewing and navigating from the middle of the pack? Assuming I have a 100 pics, and I "open" pic 50. Using preview on a single pic wont' let me navigate as you had mentioned. Quicklook allows tab/shift tab but not full screen. The "select all then open in preview" won't cut it since it will start from pic 1. Selecting just pic 50 to 100 then preview works but won't allow you to view pic 49 and before.

  • Slow graphics performance - login screen, launchpad, full screen video all stutter

    Since installing Mavericks, I've found that several system animations are slow/stutter. This is on a 2012 MacBook Air with maxed out hardware specs so its not b/c I'm running an old system.
    Some examples:
    - When booting up, right before I reach the login screen, the display quickly flashes blue. This leads me to believe something funky is going on with my graphics card/drivers
    - The login animation, where you click your username and it floats to the middle of the screen so you can type in your password, is very jerky, taking 2+ seconds to complete. Previously it had been fast and smooth
    - When using Launchpad, expanding folders often takes several seconds. The folder will start to expand, freeze, and then finally finish. This tends to be more of a problem for folders with 1 row of icons. Large folders oddly seem to expand ok / smoothly
    - Watching full screen video in iTunes causes the audio to stutter (the video playback is still smooth). If I make the window smaller, audio and video playback are smooth again
    Is anyone else experiencing these kinds of graphics issues? Any idea whats going on or how to fix?

    Quit Chrome and see whether there's any change. If not, see below.
    Step 1
    When you notice the problem, launch the Activity Monitor application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Activity Monitor in the icon grid.
    Select the CPU tab of the Activity Monitor window.
    Select All Processes from the View menu or the menu in the toolbar, if not already selected.
    Click the heading of the % CPU column in the process table to sort the entries by CPU usage. You may have to click it twice to get the highest value at the top. What is it, and what is the process? Also post the values for User, System, andIdle at the bottom of the window.
    Select the Memory tab. What value is shown in the bottom part of the window for Swap used?
    Next, select the Disk tab. Post the approximate values shown for Reads in/sec and Writes out/sec (not Reads in and Writes out.)
    Step 2
    If you have more than one user account, you must be logged in as an administrator to carry out this step.
    Launch the Console application in the same way you launched Activity Monitor. Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Select the 50 or so most recent entries in the log. Copy them to the Clipboard by pressing the key combinationcommand-C. Paste into a reply to this message (command-V). You're looking for entries at the end of the log, not at the beginning.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some personal information, such as your name, may appear in the log. Anonymize before posting. That should be easy to do if your extract is not too long.

  • Full Screen slide show not functional since upgrading Graphics card??

    Just upgraded to a geforce fx 5200 graphics card...now the individual full screen pic or the full screen slideshow will not function. Get Fatal Error C0000005 at Address: 6e310c01. Dumps me out of Photoshop album starter edition 3.0. I have about 1000 images in multiple groups, files, email shares, etc and need to be able to get back to functionality. This has occurred since installing the graphics card mentioned. Is the newer 3.2 version an "upgrade" to 3.0. If I download it will it overwrite the existing version and still have all of my photos in place? It's an option I am considering to try to get back to properly functioning. ANY I repeat ANY help would be appreciated...THANKS....

    I have a Geforce FX5500 card & updated the driver for it, why I have no idea! Anyway the slideshow came up with some sort of major error & as I already knew using bang up to date graphics card driver stops certain old games working I rolled back the driver from the 23/4/08 (approx) version to driver version 6.14.10.9371 dated 22/10/06. Different card I know but an older driver may sort it.
    Les

  • X220:Graphics problem with full screen videos

    I have got my X220 laptop last month. I am facing problem while playing youtube videos full sceen.
     videos can be seen best with smaller window but there is major graphics problem with full screen.
    Can someone help on this?
    I am using Windows 7 Enterprise edition.
    Thanks

    what do you mean by major graphics problem, please elaborate.
    Regards,
    Jin Li
    May this year, be the year of 'DO'!
    I am a volunteer, and not a paid staff of Lenovo or Microsoft

  • OS X maverick - I want the swipe function to switch from one full-screen application to another, is it possible?

    Hi everyone,
    I just updated my mid-2010 MacBook Pro to the OS X Maverick. However, a friend of mine has Mountain Lion, and she has this really cool function that lets her swipe the keyboard to change the view from one "screen" to another, so for example she might have word open in one screen and safari in another. Can I do it in OS X Maverick as well? And if it isn't possible in Maverick, can I somehow update it so that I get the function? I've been trying to do the same with mine but it isn't working.. Really keen to get it to work as it would make life so much easier with writing essays and what not. I'm not very good with anything related to software, so forgive me if this seems like a silly question. Also, I'm not a native English speaker so my terminology might not be the best..
    Cheers

    Not a silly question at all.
    The function is called Spaces, which lets you switch between different desktops. You can read about Spaces here: Mac 101: Using Spaces to organize your windows and applications (Mac OS X v10.5, 10.6)
    If you click the symbol with the two opposite arrows, in the upper right corner of the window of an application that supports it, an app will open in full-screen mode.
    Then you can configure the gestures that control Spaces in Applications > System Preferences > Trackpad > more gestures.
    On my mac, for example, if I do a three finger swipe upwards, it opens Mission Control. Mission Control organizes the different desktops in Spaces. I can open a new desktop for Spaces, remove a desktop, or switch apps between desktops.
    It probably doesn't make much sense when this is described in words, but if I were you I'd just jump in and experiment with it a bit. If you have more questions report back here.
    Message was edited by: arthur

Maybe you are looking for

  • How to send current list item URL in email by using sharepoint 2010 workflow?

    Hi All, I had created sharepoint workflow usind SPD 2010. when new item is created it sends the email with link. But it sends current list link not the current item link. I tried to use Encoded Absolute URL but this like http://asdf.com/Lists/abc/10.

  • I purchased new apps on itunes just downloaded to a new computer and want to add them to an iphone with apps already loaded.

    The tutorial says to check Sync Apps and drag the new app icons onto iphones.  Problem is I get a warning when I click Sync apps that doing so erases all the apps in the iphone and replaces them with the new ones.  Since this is a new itunes, it does

  • Benefits - Plan type for a particular infotype

    In Benefits i want to see which plans are for a particular infotype for ex savings, insurance etc. like 1010,1020 1030 are for medical, 2010 2020 for insurance 3030 3040 for saving - where this info is stored, that this plan type is for this infotype

  • Http 2 file

    hi i have to test http2file or http 2 jdbc or http 2 rfc 1.How to test the Http 2 file or http 2 jdbc senarios 2.What are file required for http senario 3.where at which location i want to place files 4.send me the http request files.

  • Is there any field for shop on behalf indicator.

    Hi, My requirement is to find out whether the shopping cart is shop on behalf or normal shop scenario . Is there any field or any table where in i can get whether sc is shop on behalf SC or normal shop scenario SC. Regards, Neelima.