Adding password to levels in a game

I want to add password to levels in a flash game. I added a
input box with the instance name selectlvl each level is in a
movieclip that has 120 frames, each one with a lvl. I want to make
it go to the selected frame someone inputs depending on the number
they input (if they enter 9 then it goes to the movieclip and frame
9 in it).
P.S. the movieclip is in frame 4 of scene 1, if that
matters.

Welcome to the Apple Discussions.
No, it's not possible to change the font. No, you cannot show description in a slide show. If you want to make a title slide, create the Slide in any word processor and then go to Print it. In the Print dialogue select the pdf button and choose Save pdf to iPhoto. It will creat a jpeg of the slide and you can use that as your title slide.
Regards
TD

Similar Messages

  • I have bought an Item from apple store Called "Scarry Tribes , 19,999 sale ! . from develober Called "XYRALITY GmbH" Type: In App Purchase , and no thing added to my Account in the Game !!?

    I have bought an Item from apple store Called "Scarry Tribes , 19,999 sale !" . from develober Called "XYRALITY GmbH" Type: In App Purchase , and no thing added to my Account in the Game !!?
    and if you cam Help Me I'll Copy the Invoice or Order number .. !

    While I am no fan of Best Buy and would not buy a lightbulb from them I doubt you issues have anything to do with your iMac and more to do with your lack of experience and simply getting bad advice. Judging by you post I suspect you have loaded your computer down with a lot of crapware and that  has caused it's problems. For example running antivirus apps on a Mac not only is a waste of time, it's a waste of money, system resources and will eventually create more problems that it solves. Please begin educating yourself on the subject by reading Thomas Reeds articles on the subject, Thomas is a frequent and knowledgeable contributor to these forums. You can find his webpage at http://www.reedcorner.net/tech-guides/
    The good news is here are absolutely no, zero, zippo viruses for OS X. There are other types of malware available (for example trojans) however they differ greatly from viruses in that the use has to download and install them, whereas viruses do not work that way. OS X is not like MS Windows and is extremely secure.
    My suggestion at this point would be to clean your computer of the crapware (including antivirus apps) however before doing so please download and install EtreCheck and post its report. Then we can see how your computer has been configured and begin to give you some advice on the next steps.

  • Open Enrollment Form, adding new coverage level

    Hi All
    We have recently added Domestic partner level as an option in our Health Insurance Plans. I believe I have correctly added the new plans etc because they are showing up on the open enrollment form. The problem is the new plan is only showing up with the old coverage options (i.e. single, ee & spouse, family etc) and is missing the new Domestic Partner and Spouse coverage option that I added. Please advise on how to get it to show up on the form.
    Thanks in advance

    Hi Ken,
    What i understand is... you have done the following
    Health Plans: IMG ->Personal Management->Benefits- >Plans->Health Plans
    1. You have setup the config in Define Health Plan General Data.
    2.  IMG >> Personal Management->Benefits- >Plans->Health Plans->Define Dependent Coverage Options
    Set up your Domestic Partner option here  i.e. E+DP  (Min: 1 / Max: 1)
    3.  Setup the Cost Variants in the node IMG->Personal Management->Benefits- >Plans->Health Plans->Define Cost Variant
    4. Setup the Cost Rules in the node IMG->Personal Management->Benefits- >Plans->Health Plans->Define Cost Rule
    5. Assign the health plan attriubtes in the node IMG >>Personal Management->Benefits- >Plans->Health Plans->Assign Health Plan Attributes. I guess this is what you missed.
    One question here......are you using Adjustment reasons for adding new coverage???
    Kumarpal Jain.

  • Adding a third level to netbeans sample simple mobile game ?

    The tutorial at
    http://wiki.netbeans.org/CreatingJav...edLayerToScene
    helped me make a simple game with 2 levels, The first level being the forest level and the second one being the Desert level. I managed to make both these level work. As soon as the sprite Karel moves to the bottom right edge of level 1, level 2 is displayed, which also works fine. But now Ive made a third scene which I want to start as soon as the sprite Karel reaches the bottom right of the level 2 (i.e desert scene)
    I know that this portion of the code make the level 2 load as soon as Karel reaches the bottom right.
    public void run() {
              Graphics g = getGraphics();
              while (!this.interrupted) {
                   //switch to 'Desert' scene once the main sprite moves
                   //to the bottom right corner of scene 'Forest'
                   if (this.spriteKarel.getX() >= 340 && this.spriteKarel.getY() >= 340) {
                        try {
                             this.ground = this.gameDesign.getSand();
                             this.colliders = new TiledLayer[] {};
                             //remove all current layers
                             while (this.lm.getSize() > 0) {
                                  Layer l = this.lm.getLayerAt(0);
                                  this.lm.remove(l);
                             //load the 'Desert' scene
                             this.gameDesign.updateLayerManagerForDesert(this.lm);
                        } catch (IOException e) {
                             e.printStackTrace();
                        //reset the viewport
                        this.viewPortX = 0;
                        this.viewPortY = 0;
                        this.lm.setViewWindow(this.viewPortX, this.viewPortY, this.getWidth(), this.getHeight());
                        this.lastDirection = -1;
                   }But how can I do the same for level 3 to load? I tried adding the following code in the run function but it ran level 3 instead of level 2
    if (this.spriteKarel.getX() >= 300 && this.spriteKarel.getY() >= 300) {
                        try {
                             this.ground = this.gameDesign.getSide();
                             this.colliders = new TiledLayer[] {};
                             //remove all current layers
                             while (this.lm.getSize() > 0) {
                                  Layer l = this.lm.getLayerAt(0);
                                  this.lm.remove(l);
                             //load the 'Wall' scene
                             this.gameDesign.updateLayerManagerForWall(this.lm);
                        } catch (IOException e) {
                             e.printStackTrace();
                        //reset the viewport
                        this.viewPortX = 0;
                        this.viewPortY = 0;
                        this.lm.setViewWindow(this.viewPortX, this.viewPortY, this.getWidth(), this.getHeight());
                        this.lastDirection = -1;
                   }

    I think that the problem is in your 'if' conditions where you check the current position of the Karel sprite. The second condition
    if (this.spriteKarel.getX() >= 300 && this.spriteKarel.getY() >= 300)is met before the first condition
    if (this.spriteKarel.getX() >= 340 && this.spriteKarel.getY() >= 340)That why you go straight into level 3.
    I suggest you declare another variable, for example 'level' where you will store the current level number and employ this in your conditions, e.g.
    if (this.spriteKarel.getX() >= 300 && this.spriteKarel.getY() >= 300 && level == 2)
    if (this.spriteKarel.getX() >= 300 && this.spriteKarel.getY() >= 300 && level == 1)That should do the trick......
    One important thing to add. When you move one level up do not forget to bump your level variable by one (level++).

  • My level at the game center in highnoon game got less when i transfer my apple id to another iphone device ?

    how can i get my level back on the game center

    Try resetting your Apple ID password.
    Apple - My Apple ID
    Now restart your iPhone. 
    Press and hold the sleep/wake button until you see the red slider then swipe to power off. Then press and hold the sleep / wake button until you see the Apple logo.
    Try the game center.

  • HT4314 I have forgotten my game center passowrd. I have my Apple-ID and password and I have my game center user name -- how to I retrieve my forgotten password?

    Hi,
    I forgot my game center password. I have everything else (APPLE-ID, game center user name...) but can't login because I forgot the GC password.
    How do I retrieve it or reset it?
    Thanks!
    RB

    http://support.apple.com/kb/HT4314  http://support.apple.com/kb/HT1911

  • I need to find my IDUD for my iPad to be able to get a new password for one of the games. I haven't had a problem with changing it before...I haven't had a problem before  but this time they say they need to verify that I'm the owner. Please help me!

    I need help in finding my IDUD for my iPad2 to be able to change my password for a game TouchPet Dogs. I have forgotten the password and the support people say I need to prove my ownership by submitting the IDUD. I haven't been asked for it before and I've checked all the instructions and can't get it to work.
    Please help because I am hooked on this game and my virtual dog ":Theodore". LOL!

    Check this link out:
    http://support.apple.com/kb/HT4061

  • Is anyone else having problems with Candy Crush Saga blinking out and not allowing you to ask friends for help in moving to another level in the game?  If so, how do I fix it"

    I have been playing Candy Crush Saga for a long time, all of a sudden it is blanking out when I ask friends for help to the next level.  What can I do to remedy this?

    Hello Pepper 46,
    It sounds like an app you installed is not functioning correctly. I recommend starting with these steps from the article named:
    iOS: An app you installed unexpectedly quits, stops responding, or won’t open
    http://support.apple.com/kb/ts1702
    Restart the app
    Close the app and open it again.
    Restart your device
    Turn the device off and on.
    Update your device software and your apps
    Update your device to the latest version of iOS.
    Update your apps:
    Open the App Store and tap Updates.
    If updates are available, tap Update All.
    If asked, enter your Apple ID password. The updates will download and install.
    You might need a Wi-Fi connection to update some apps.
    There is additional troubleshooting in the article if this doesn't resolve it.
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • Crystal report running total explodes after adding a low-level characterist

    I've profit center hierarchy, suppressed to show only level 5 of the hierarchy in crystal report and the report has Group1:Division, Group2:Company Code and Group3:Profit Center hierarchy and I have summary at each group level.
    and now when I click on  a profit center, I want to drill-down to show all customers for that profit center, sales document and few other characteristics.... that I want to add to the details.
    After adding these characteristics to the details, the Summary at group division is not right for the AR Balance and I've other key figures and Iam sure they are also not correct. Any help with fixing this issue will be appreciated. Thanks.

    I've profit center hierarchy, suppressed to show only level 5 of the hierarchy in crystal report and the report has Group1:Division, Group2:Company Code and Group3:Profit Center hierarchy and I have summary at each group level.
    and now when I click on  a profit center, I want to drill-down to show all customers for that profit center, sales document and few other characteristics.... that I want to add to the details.
    After adding these characteristics to the details, the Summary at group division is not right for the AR Balance and I've other key figures and Iam sure they are also not correct. Any help with fixing this issue will be appreciated. Thanks.

  • After adding password to router, Mountain Lion won't connect

    I added a 128-bit WEP* password to my FiOS router today. As soon as I did so, my iPhone and iPad both prompted me for the password. Mountian Lion wouldn't. It claims to be connected to the router, and acknowledges that it's password protected with a lock icon in the menu bar WiFi menu. But it never prompted me for the password and as a result it can't connect to anything.  What I've tried:
    * Turning WiFi off and on.
    * Rebooting
    * Ensuring there is no password saved in Keychain
    * Deleting the "remembered" WiFi spot in System Preferences->Network->WiFi->Advanced
    * Testing the Mac on a different WiFi network (it works fine).
    * "Join Other Network" where I entered the network by name and its password. The Mac said it could not find that network.
    So basically I'm stuck. If the Mac doesn't prompt for the password, I can't force it to take it.
    Thanks for any help,
    -K
    * Oh, and before you ask why I used WEP and not WPA2, the latter did not appear as a choice in the FiOS router setup. It was WEP or nothing. Ask Verizon why they prefer lesser security. ;-)

    You might try looking here.
    http://forums.verizon.com/t5/FiOS-Internet/bd-p/FiOS_Internet
    http://www22.verizon.com/Support/Residential/Internet/fiosinternet.htm
    http://www22.verizon.com/support/residential/contact-us/index.htm
    or call them
    Just Dial 1-800-VERIZON (1-800-837-4966)
    I got very good tech support recently when I was having trouble with email accounts.

  • How to encrypt local IOS account passwords at level 5 (MD5)

    I would like to use the stronger, level 5 algorithm, with my local IOS database accounts.  I have  looked and cannot see how to do so.  I realize 'enable secret' will do so but seems only for the enable password.  I would like to apply the stronger encryption to to passwords for locally created accounts.  Is this possible?  Please provide brief example, if so.  Thank you!

    Hey mate..
    Easy one.
    Just use something like the following..
    "username tim priv 15 secret mymd5password"
    Cheers,
    Tim.

  • Had iPad stolen how do I get my level 29 smurf game back?

    I had my iPad stolen. on it my smurf game was up to level 29. My children and I play it together and love it? I have also spent a fair amount on
    Items from the store. I have a new iPad now but don't know how to get back my level 29. I really don't want to have to start from level 1 again.
    When I set up this iPad to my MacBook Pro I set it up as a new iPad and did not do the old restore? Would doing this help?
    Thanks for any help.

    ... When I set up this iPad to my MacBook Pro I set it up as a new iPad and did not do the old restore? Would doing this help?
    Yes. Restore it from the most recent backup prior to having it stolen.
    Connect your iPad, open iTunes, and select your iPad under "Devices".
    Control - click and select "Restore from Backup…"
    Choose the most recent backup, hopefully one you created after Level 29.

  • I have changed my apple id password and verified it but game center will not recognize it

    although I have changed and verified my password my game center does not recognize the password

    Tap the current account Account shown, sign out...now, try signing back in.

  • Firefox will NOT sync since adding password integration add-on for my macs. Is there a plan to resolve this conflict? Once I uncheck password sync works.

    I continue to obtain a sync error with unknown error. After spend a few hours online and troubleshooting, I determined by un-checking password sync, no errors were received. I added the add-on for Mac password integration and can only conclude that adding this feature has conflicted with my sync. Does anyone know of any issues or are there fixes already in place I am unaware. I am at that point to return to Safari for my macs due to this and other issues I have been having with Firefox. Thanks.

    Hi KevMB,
    Thank you for your question. I would recommend you try the new Firefox Sync, however currently it is available in beta starting Thursday.
    If the device is already authenticated and is syncs automatically, then the password does not have to be added every time. I do not understand how the Mac password integration works as you describe it to.
    If you are talking about choosing to sync stored passwords across devices please select any duplicates that may be stored in the profile under the preferences.
    [[How do I set up Firefox Sync?]] and[[Firefox Sync troubleshooting and tips]] are good references for more help.

  • How do I save my new icloud password on ipad (ex iTunes, Game Center etc)

    I changed my password for I cloud, but when trying to upddate apps keeps showing old password and my yahoo mail and when I change to the Icloud it won't give me the option to save it, same thing on Game Center  shows the Icloud one but old password and won't give the option of saving the new one.

    No, not at all.

Maybe you are looking for