How to create a map that is larger than the game in width and height?

hi,
i wounder how i can create a map(not the design) that is larger than the game in width and height, part of it will appear in the main page and anther part you can move to it after you press the arrow symbol, but the map is just one image so i want put it in line and out line the game page, and the out line part includes buttons and symbols the player can use, but it will be in line and the other part will be out line when you press the left arrow or the down arrow, how i can do that?
and is that possible to animate it so when the player press the arrow, will give it action to start the animation in one sec, i know how to animate it if that possible but i don't know which code i will use for the mouse click with the arrow symbol, and how to use the same code in the same symbol to start anther animation depending on which part of the map is on?

I don't know a lot about mask and masked layers and how to work with the normal layers beside i will use some 3D graphics but not in the background, i will explain all this to you to be more clearly.
first i am using action script 3.0
close ex,
you have 2d map"image"  900*300 pixel.
this image contains some 2d symbols when you click will go to anther normal map (anther normal layer) so they must appear.
your game 320*320 px, and the place the map will show on 300*300, and there's basics objects will be in most pages including the page that show the map so i don't know a lot about how this will work with mask layers.
so you can only see the left side of the map image and what it contains, while there's two arrows one to the left and one to the right there's three cases here,
first when it show the left side(start from x:0 to x:300), the left arrow will not active when you press and the right arrow will start an animation that make the map image move to the mid side in one sec when you press.
in mid side (start from x:301 to x:600) the same left arrow will active when you press to send you back to the left side while the same right arrow will be active to send you not to the mid side but to the right side,
when moved to the right side the same left arrow will be active to send you to the mid and the right will not active when you press and depending on that,
first how to make the large image appear with the three sides in the same place without effecting the other objects "like disappearing them" ?
and the codes i need in the same left or right arrow symbol to make different actions with the same symbol when clicked depending on which part of the map is on.

Similar Messages

  • How to create a vi that counts for example 3 - 10 pulses in and then give a 1 puls out

    how to create a vi that counts for example 3 - 10 pulses in and then give a 1 puls out.
    I'm working with Labview 6.1
    Running with Labview 6.1
    Fieldpoint hardware

    Hi,
    You should be more specific, what kind of hardware you are using ???
    Which kind of pulse you are measuring ?? You are saying that you want to count a number of pulses and then when you get to a limit (which will be between 3 and 10) you want to output a pulse ?
    Andre Oliveira

  • When I'm on an app, on iso7.1 it will now show the "iPad/iphone" sign the time and the battery whilst running in an app. does anyone know how to get rid of that as its effecting the games i play.

    when I'm on an app, on iso7.1 it will now show the "iPad/iphone" sign - the time - and the battery whilst running in an app. does anyone know how to get rid of that as its effecting the games i play.

    If you can hide the status bar, it would be an option inside the app. I have one or two apps where that is an option but in most apps it is not.

  • How to import PDF image into Pages manuscript that is larger than the text bed margins

    How do I import a PDF image into a Pages book manuscript, whose dimensions are larger than the global text bed margins? Any imported PDF image is automatically shrunk to fit within the text bed. I know I can set up a single page with wider margins and a text bed within it, but I want the image to import to a page already within the manuscript sequence, where the text bed margins are set and constant.
    Larry Kettelkamp
    [email protected]

    By default it should be dragging in as a floating image and not part of the text.
    What version of Pages are you using?
    In Pages 5 this is:
    Format > Arrange > Object Placement > Stay on Page > Size > Original size
    Peter

  • IPhone 5 created a backup larger than the phones capacity (16GB) and now I can't get anything back onto my phone after Restoring it!

    I had a few storage issues to start with, I basically deleted everything in my phone (media, messages, notes, calanders, apps etc) and my phone still said it was at capacity. The more I deleted the less I could put on there. So I took it the the Apple Store where the manager told me to do a Restore. I did this, then was unable to put the backup straight back onto my phone as it said there was not enough free space (it was empty!), I then called Apple Support who instructed me on how to view the size of the backup and it turned out to be 16.32GB (.32GB larger than the iPhones's capacity) but were unable to give me any useful tips! I downloaded a backup extractor but have no idea how to use it! Please help me

    why should I do that?

  • Navigate an image that is larger than the stage?

    Hello, I would like some assistance getting this to work. I'm not even sure if its possible, but I will be eternally grateful for an answer.
    I would like to have an image much larger than the stage, with little buttons all over it that play a MC when moused over. When the mouse reaches the edge of the screen, I want it to scroll so that the viewer can explore the whole image.
    In short, its a map with destinations, and on mouse over the destinations play a MC. I'd like the viewer to be able to "explore" the map with the mouse.
    It seems simple, is there a good way to do it?
    Also, once it is done, is there a way to begin with the entire image shown, but then have it tween to its final (Very large) size, without breaking that functionality.
    Thank you so much. This is for a class project and I'm trying to "go above and beyond" but, its a little to beyond for me.
    Kayla

    To make the image move, based on the mouse position you might do something like this:
    addEventListener(Event.ENTER_FRAME, checkMouse);
    function checkMouse(e:Event):void
         if(mouseX > 500){
              myImage.x -= 1;
         if(mouseY < 100){
              myImage.y += 1;
    That's just a simple example. You'll need to check the bottom and left too... and you'll need to stop your image from moving past its edges:
    if(myImage.x + myImage.width < theRightEdge){
         myImage.x = theRightEdge - myImage.width;
    to keep it from going too far left...
    I would also suggest using TweenLite to do your tweening. You can simply google TweenLite to find it.

  • Printing a component that is larger than the paper size

    Hi,
    I am trying to print a component that may be larger than the size of the paper being used. Is there some way to get it to split between pages - ie, if it's larger than the page, it is printed over two or more pages?
    The component in question is a JTextArea. Would it be better to get the text from it and use the graphics drawString rather than the component's paint method?
    The relevant part of the code is below.
    Thanks,
    Helen
         //cast the Graphics object to a Graphics2D object
         Graphics2D g2 = (Graphics2D) g;
         //set the origin to be (0,0)
         g2.translate(format.getImageableX(), format.getImageableY());
         //if double buffering is enabled, disable it before printing
         boolean b = testForDoubleBuffering(c);
         if (b == true){
         disableDoubleBuffering(c);
         //tell the Component to draw itself to the printer
         comp.paint(g2);
         //if double buffering was enabled, reenable it once printing has happened
         if (b == true){
         enableDoubleBuffering(c);
         //return this constant to tell the PrinterJob that the page has been printed
         return Printable.PAGE_EXISTS;

    Hi,
    I am trying to print a component that may be larger
    than the size of the paper being used. Is there some
    way to get it to split between pages - ie, if it's
    larger than the page, it is printed over two or more
    pages?
    The component in question is a JTextArea. Would it be
    better to get the text from it and use the graphics
    drawString rather than the component's paint method?
    The relevant part of the code is below.
    Thanks,
    Helen
         //cast the Graphics object to a Graphics2D object
         Graphics2D g2 = (Graphics2D) g;
         //set the origin to be (0,0)
    g2.translate(format.getImageableX(),
    format.getImageableY());
    //if double buffering is enabled, disable it before
    printing
         boolean b = testForDoubleBuffering(c);
         if (b == true){
         disableDoubleBuffering(c);
         //tell the Component to draw itself to the printer
         comp.paint(g2);
    //if double buffering was enabled, reenable it once
    printing has happened
         if (b == true){
         enableDoubleBuffering(c);
    //return this constant to tell the PrinterJob that
    the page has been printed
         return Printable.PAGE_EXISTS;I should add that this is part of a class that implements Printable. However, it is being called by a Book class with the Book's append() method. It is the Book class that is being printed by the PrintJob:
         Book book = new Book();
         book.append(new PrintableClass(c), format);
         //set the pageable class to be the book, with the user-selected format
         job.setPageable(book);
         //if the user clicks the print button, start the printing process, otherwise cancel the print
         if(job.printDialog()){
         try {
              job.print();
         } catch(PrinterException pe) {
              System.out.println("Error printing: " + pe);
    Thanks,
    Helen

  • Does anyone know how to unlock a computer that my kids changed the admin username on and they can't remember what they put

    i am trying to unlock my son's computer that we bought from a school supply store. one of my kids changed the administrator user name but they can't remember what the changed it to. the computer is stuck on the login in screen and the password is blank. please help

    If you have the OS X installation discs for this computer, then I suggest you erase the hard drive and install a fresh copy of OS X so you can set up an admin account only accessible to you. Create separate managed user accounts for each of your children.
    This will prevent your children from making any changes to the accounts of their siblings since you will retain the only authority to make such changes. This would be accomplished through the Parental Controls options of Accounts in System Preferences.
    If you need help with this let us know.

  • How can i configure maps voices? I have the original configuration (standard) and doesn't work

    Hi
    I have an Iphone 5 and doesn't work the voices for navegation (maps app)
    Is there any special configuration requiered
    This feature is very important due i could drive without looking at the phone
    Thanks in advance for your support

    Thanks!!
    Yes, I'm in Chile....sad to hear that this feature is not available everywhere... Those voices should just follow the indications given by maps because maps gives the info about turn left or right so there should be just voices recorded with those standard indications, then this feature would be available everywhere
    But OK...
    Anyways, Thanks for your answer!!!

  • I made a imovie out of a group of photos and added music. When I burned to DVD on iDVD and played back the disc all of the photos were larger than the frame could accommodate and the sides were cut off. I also tried resizing from 16 9 to 4 3 and no better

    I made and iMovie out of a group of photos and added music. When I burned to I DVD the pictures came out to wide to fit into the frame. I tried again by changing the size from 16 9 to 4 3 and it didn't make any difference. Would going to share to browser rather than directly to share to IDVD make a difference?

    What do the photos look like if you play the movie within iMovie?  Sounds like adjusting Ken Burns would help.

  • How to automate the changing of Width and Height of the document

    Hi,
    I just want to know if anyone already automate the changing of width and height of document(eps file).
    Thanks,
    Buddy

    Check out SetDocumentSetup from kAIDocumentSuite.

  • How to capture a window in Safari that is bigger than the screen

    How do I capture a window in Safari that is larger than the screen it is displayed upon? I am using a MacBook PRO 13" with Mavericks.

    Try Paparazzi

  • Why would the display be larger than the screen?

    My Mac has started opening with a screen that is larger than the display. (I may not have the terminology quite right)  Here's a non-techie description...if the phyical display is 1680x1050, Finder or Safari open up at, say, 1720x1200. If I want to have the toolbar visible at the top, I cannot see the dock at the bottom. If I want the Apple to be at the top left corner, I cannot see the time at the top right. In both cases it is one or the other. Restarting has no effect on this annoyance.

    Try holding down control and scrolling down (or up, it depends). That should zoom down to fit. I assume you've checked the preferences to see that you have the right size selected.

  • I need your expert opinion on how to create a map with multiple conditions.

    Hello.
    I need your expert opinion on how to create a map with multiple conditions.
    I have a procedure (which i cannot import or re-create in OWB due to the bug), so i am trying to create a map instead :-(
    How can i create a cursors within the map?
    My function creates table and cursor.
    Then it will have to check for duplicates in the tables (the one created and another table) - the criteria for finding duplicates is a number of fields.I then need to place few different conditions (if some attributes are not available) and it has to load cursor based on this conditions. The next step is to fetch the data into the cursor based on what attributes are missing.
    The next thing it will do is insert the data into table (if record doesn't exist), output the error in separate table is record is corrupted, or update the record with changed information.
    In short i need to re-create match / merge but with conditions, iterations etc 'built into' it.
    I can read up on available functions - it's just what would be the best options? and what would be the best approach to do so?
    In my function i use %rowtype - but cannot use it in owb - so what would be the alternative? i don't really want to create a lot of variables and then have a nightmare of maintaing it. are there any tips regarding this?
    having looked through Oracle dedupe - it's not really what i need because it is just DISTINCT.
    I would appreciate any help / advise on this.
    Thank you very much

    thanks a lot for your reply - i will look into this option :-)
    it is a bit more complicated now as i have to re-create the match / merge and then somehow 'tweak' it to achieve the result i need.
    At the moment i am looking to breakdown the package into smaller chunks 'functions' and try creating the map that way.
    Anyway, thank you very much for your suggestion.

  • How to create interactive map in SAP Visual Business using SAP UI5 SDK

    Hi,
    Please tell me,
    How to create interactive map in SAP Visual Business using SAP UI5 SDK.
    Is it possible to create interactive map using VB Control in SAP UI5 SDK..?
    if possible please any one let me know.

    Hi folks, one question:
    We have our development close moved and now it is earlier than originally planned. 
    That means that we maybe can't finish our convenient API and you have to wait till we will release it - early 2015 is planned.
    But there is another option:
    Currently we have a API based on json. The developer has to create json and  to transfer it to the Visual Business control.
    This interface is more used as a low level API and we are developing on top the more convenient one. So all the features are the same.
    It will stay stable & compatible in the future and you can build on it.
    Do you want to use this interface?  
    Then I will publish the documentation.
    Let me know.
    Thanks

Maybe you are looking for

  • How to feed html content in Mail App from Indesign

    Anyone knows how Martha Stewart Everday Food Magzine achieved launching the ipad Mail App filled in with HTML body content directly from their digital magazine? At the end of each recipe, there is an email icon displayed, and when you click on it ipa

  • Having issues connecting to folders - with a twist!

    Hi there Im new to the world of macs, and quite frankly loving it so far, however i have a small problem which i would love some hlep with please. anyway, my problem i see is well documented on a lot of forums and websites, but ive yet to find a solu

  • Nv driver has no 3d support: What exactly am I giving up?

    I am currently running arch on a system with an nvidia graphics card using the latest proprietary driver, but I would like to know what I would be missing if I used the "nv" driver instead. I know the nv driver has no 3D support, but what exactly doe

  • Questions WORKFLOW OF SAP BW Consultant in Project

    Hellooooooo Exeperts, Need few  answers in understanding the SAP BW Workflow in a Company..Any ANswers to the questions would be highly appreciated as this would help me in making it easier before joining my job.. Please answer the below questions co

  • Address mapping function?  (automatically show google map, like with Mail?)

    I have a Numbers spreadsheet full of building addresses in my area. I'd like to be able to automatically visually map an address on google maps, such as is available in the Mail application (like when you hover over an address and it recognizes text