Looking for iphone games for mental math or vedic math training?  Dear all,

Looking for iphone games for mental math or vedic math training?
Dear all,
I am a fan of mental math and/or vedic math etc. and I want to utilize my spare time to do some training whenever I am idle.
That's why I want to buy an iphone. In fact, I buy iphone because it can be a game machine in addition to a phone.
For example, I can utilize my time commuting on subway to do some training...
But I couldn't find good mental math and/or vedic math training game on iphone.
I am an adult so those too-simple problems such as 2*9=18 are not interesting to me,
I would like to exercise something like 123x45, etc.
Could anybody give me some pointers?
Thanks!

need quick math training games,... thanks!

Similar Messages

  • Best workflow for creating games for pc and starling games in AIR

    best workflow for creating games for pc and starling games in AIR.
    I need to develop for tablets with starling and AIR as well as for pc without starling ie: downloading from a server.
    In starling you have to
    1. instantiate starling
    2. use texture atlases for loading graphic assets - well its the recommended way
    3. use juggler
    etc...
    ie: with all these differences is it best to:
    1. create completely different projects
    2. just create different classes for the starling specific parts
    3. use a conditional compile constant
        eg: CONFIG::STARLING
                "then do this"
    or      CONFIG::CPU
              "then do this"
    I currently have the latter but it feels a little messy. I would prefer separate classes for each platform where the image loading is concerned.
    There must be so many game developers out there but in large gaming companies that know exactly what to do. Perhaps you can point me in the right direction with a book or something.
    CHEERS

    The other thing is that I can't see the games being very different as you suggest. I have downloaded Lee Brimelows tut on creating a starling game on Lynda.com and the code is great for creating games using states for menu, play, gameover etc... The only difference is that he uses texture atlas and there is a great difference in loading them etc... so technically you would only need to handle them in a different class as collision and the rest of game play should be the same in both. I think!!!
    Well, actually not exactly but near enough - maybe it might be easier to create separate projects and just cut and paste the new code introduced.

  • Is there a reservation for iphone 5 for tourist ?

    is there a reservation for iphone 5 for tourist ?

    There's no way, at least at this time, that you can schedule a future date for pickup. If you're not going to be in Hong Kong until November, you'll have to submit your reservation at that time.
    Please be aware, if you are not already, that the warranty on the iPhone is not international. So unless you live in China, I would strongly suggest that you buy your iPhone in your country of residence, waiting until the iPhone 5 is released there if it has not been already.
    Regards.

  • You can send the original back cover black for iPhone 4S for me, how much will it cost?

    You can send the original back cover black for iPhone 4S for me, how much will it cost?

    Apple does not sell replacement parts. Google may
    provide some assistance but there is no guarantee
    that third party components will work. Apple or Apple
    Authorized Service Provider should be able to repair for a
    fee, but will not sell you the parts.

  • Is apple care for iphone limited for the country you've purchased?

    Is apple care for iphone limited for the country you've purchased?

    I believe it is international.
    Each product has a different AppleCare Agreement and different conditions.
    For the iPhone there are online several AppleCare manuals in different languages. May be they are just translations but may be each different language/country give different rules.
    Anyway if you buy in a country and register Applecare in that country you recive your actual Manual and rules to follow.  If you need assistence you can call your serivce number or start the request online. Apple will decide according to the problem and your location how to procede: you may go to a service center, or send the item to the adress Apple will provide to you, or Apple can send you parts to repair it yourselve.
    This should not be limited to a country.

  • Compiled Error in Xcode for iphone game and other questions

    Dear all,
    Hi, I am a newbie of xcode and objective-c and I have a few questions regarding to the code sample of a game attached below. It is written in objective C, Xcode for iphone4 simulator. It is part of the code of 'ball bounce against brick" game. Instead of creating the image by IB, the code supposes to create (programmatically) 5 X 4 bricks using 4 different kinds of bricks pictures (bricktype1.png...). I have the bricks defined in .h file properly and method written in .m.
    My questions are for the following code:
    - (void)initializeBricks
    brickTypes[0] = @"bricktype1.png";
    brickTypes[1] = @"bricktype2.png";
    brickTypes[2] = @"bricktype3.png";
    brickTypes[3] = @"bricktype4.png";
    int count = 0;`
    for (int y = 0; y < BRICKS_HEIGHT; y++)
    for (int x = 0; x < BRICKS_WIDTH; x++)
    - Line1 UIImage *image = [ImageCache loadImage:brickTypes[count++ % 4]];
    - Line2 bricks[x][y] = [[[UIImageView alloc] initWithImage:image] autorelease];
    - Line3 CGRect newFrame = bricks[x][y].frame;
    - Line4 newFrame.origin = CGPointMake(x * 64, (y * 40) + 50);
    - Line5 bricks[x][y].frame = newFrame;
    - Line6 [self.view addSubview:bricks[x][y]]
    1) When it is compiled, error "ImageCache undeclared" in Line 1. But I have already added the png to the project. What is the problem and how to fix it? (If possible, please suggest code and explain what it does and where to put it.)
    2) How does the following in Line 1 work? Does it assign the element (name of .png) of brickType to image?
    brickTypes[count ++ % 4]
    For instance, returns one of the file name bricktype1.png to the image object? If true, what is the max value of "count", ends at 5? (as X increments 5 times for each Y). But then "count" will exceed the max 'index value' of brickTypes which is 3!
    3) In Line2, does the image object which is being allocated has a name and linked with the .png already at this line *before* it is assigned to brick[x][y]?
    4) What do Line3 and Line5 do? Why newFrame on left in line3 but appears on right in Line5?
    5) What does Line 4 do?
    Thanks
    North

    Hi North -
    macbie wrote:
    1) When it is compiled, error "ImageCache undeclared" in Line 1. ...
    UIImage *image = [ImageCache loadImage:brickTypes[count++ % 4]]; // Line 1
    The compiler is telling you it doesn't know what ImageCache refers to. Is ImageCache the name of a custom class? In that case you may have omitted #import "ImageCache.h". Else if ImageCache refers to an instance of some class, where is that declaration made? I can't tell you how to code the missing piece(s) because I can't guess the answers to these questions.
    Btw, if the png file images were already the correct size, it looks like you could substitute this for Line 1:
    UIImage *image = [UIImage imageNamed:brickTypes[count++ % 4]]; // Line 1
    2) How does the following in Line 1 work? Does it assign the element (name of .png) of brickType to image?
    brickTypes[count ++ % 4]
    Though you don't show the declaration of brickTypes, it appears to be a "C" array of NSString object pointers. Thus brickTypes[0] is the first string, and brickTypes[3] is the last string.
    The expression (count++ % 4) does two things. Firstly, the trailing ++ operator means the variable 'count' will be incremented as soon as the current expression is evaluated. Thus 'count' is zero (its initial value) the first time through the inner loop, its value is one the second time, and two the third time. The following two code blocks do exactly the same thing::
    int index = 0;
    NSString *filename = brickTypes[index++];
    int index = 0;
    NSString *filename = brickTypes[index];
    index = index + 1;
    The percent sign is the "modulus operator" so x%4 means "x modulo 4", which evaluates to the remainder after x is divided by 4. If x starts at 0, and is incremented once everytime through a loop, we'll get the following sequence of values for x%4: 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, ...
    So repeated evaluation of (brickTypes[count++ % 4]) produces the sequence: @"bricktype1.png", @"bricktype2.png", @"bricktype3.png", @"bricktype4.png", @"bricktype1.png", @"bricktype2.png", @"bricktype3.png", @"bricktype4.png", @"bricktype1.png", @"bricktype2.png", ...
    3) In Line2, does the image object which is being allocated has a name and linked with the .png already at this line *before* it is assigned to brick[x][y]?
    Line 2 allocs an object of type UIImageView and specifies the data at 'image' as the picture to be displayed by the new object. Since we immediately assign the address of the new UIImageView object to an element of the 'bricks' array, that address isn't stored in any named variable.
    The new UIImageView object is not associated with the name of the png file from which its picture originated. In fact the UIImage object which inited the UIImageView object is also not associated with that png filename. In other words, once a UIImage object is initialized from the contents of an image file, it's not possible to obtain the name of that file from the UIImage object. Note when you add a png media object to a UIImageView object in IB, the filename of the png resource will be retained and used to identify the image view object. But AFAIK, unless you explicitly save it somewhere in your code, that filename will not be available at run time.
    4) What do Line3 and Line5 do? Why newFrame on left in line3 but appears on right in Line5?
    5) What does Line 4 do?
    In Line 2 we've set the current element of 'bricks' to the address of a new UIImageView object which will display one of the 4 brick types. By default, the frame of a UIImageView object is set to the size of the image which initialized it. So after Line 2, we know that frame.size for the current array element is correct (assuming the image size of the original png file was what we want to display, or assuming that the purpose of [ImageCache loadImage:...] is to adjust the png size).
    Then in Line 3, we set the rectangle named newFrame to the frame of the current array element, i.e. to the frame of the UIImageView object whose address is stored in the current array element. So now we have a rectangle whose size (width, height) is correct for the image to be displayed. But where will this rectangle be placed on the superview? The placement of this rectangle is determined by its origin.
    Line 4 computes the origin we want. Now we have a rectangle with both the correct size and the correct origin.
    Line 5 sets the frame of the new UIImageView object to the rectangle we constructed in Lines 3 and 4. When that object is then added to the superview in Line 6, it will display an image of the correct size at the correct position.
    - Ray

  • We are looking for Flash-Games for our A-level exam

    Hello
    Our Project-Team creates a Game-Hompage for our A-level exam.
    We are looking for Flash-Games and Games in other Languages
    (for example: Java or VBnet), wich we will publish on our Webpage.
    The quality, category etc. doesn't matter.
    Furthermore we would be pleased if you could send us
    suggestions and ideas (for example: Projectname etc.)
    Just send us a mail:
    [email protected]
    greetz
    project-team

    http://www.gotoandplay.it

  • Looking for iPhone emulator for MBP..?

    I'm looking for iPhone (or iPad) emulator for Mac. There's some software I need to run for work that only available for them, and I'd like instead to run them on my Mac.
    Anything available?
    Cheers!

    A bit of Googling confirms what I thought. You can only runs apps in the simulator that you have the source code to. When the SDK compiles an App, different code is used in the simulator to what is sent to the AppStore.

  • ActiveSync autodiscover not working for iPhone but for Android and Windows Phone

    Hi
    We have setup an Exchange 2013 hosted environment, where different mail domains are running on it.
    The main domain is mydomain.com. One of the client domains is customer.com.
    Autodiscover for customer.com has a cname which points to autodiscover.mydomain.com, on our firewall this url is redirected to autodiscover-s.mydomain.com, where our public certificate for mydomain.com is applied. Autodiscover for all
    our customers finally ends at autodiscover-s.mydomain.com.
    Outlook WebApp, Outlook Anywhere and ActiveSync for all customers is reachable through mail.mydomain.com.
    Everything works fine, except of autodiscover for iPhones. I always have to enter the server name mail.mydomain.com manually. After that ActiveSync works on iPhones as well.
    The Problem doesn’t exist on Androids and Windows Phones.
    Any suggestion?
    Regards
    Peter

    Yes, Interestingly same configuration is working in my home lab, but not working at customer. The version is 10.5
    Cannot say wireless issue as jabber for windows is working from wireless

  • Why is the Packager for iPhone guide for Flash CS5 and not Flash Builder?

    Following this tutorial, I gave compiling an iPhone project via the command line a shot and found it very difficult. The commands are not clearly explained and have character errors (“ ” instead of " ", \ instead of /, etc.).
    I've also downloaded the pdf that comes with the Packager for iPhone and tried to follow along, but the explanations are for developing in the Flash CS5 IDE...why is that? It seems that Flash Builder would be the logical development environment for developers and a dev guide...
    Can anyone explain or perhaps direct me to an easier, more official tutorial on developing iPhone applications in Flash Builder? Thank you!

    Because Flash CS5 users need more help than us Flex devs. jk
    The "Packager for iPhone" was depreciated some time ago, so I imagine you are reading some old docs. Now (since FB 4.5), it's just another target platform in a Flex Mobile Project. Before then it was part of the ADT compiler which could be run in ANT (or a really long command line string), and before then it was actually the "packager for iPhone".
    If you do not have FB 4.5 then maybe you can provide more info on the challenges your facing, and someone may be able to point you in the right direction.
    You may also want to give this a read: http://help.adobe.com/en_US/flex/mobileapps/WS064a3073e805330f6c6abf312e7545f65e-8000.html

  • Looking for new games for iPhone 3Gs

    Hi. Probably in the wrong section but I've got the latest update for iTunes and since then, when I go to Apps Store and select Games, all I see is nothing but Best Doodle Games and Best Race Car Games. I see nothing about New or Noteworthy any more. Am I missing something or is there a problem here?? Thanks.

    I use iTunes 9.1 and I just went to the UK Itunes App Store and selected Games and got it all. Did you try to scroll up to see all the page? I see New and Noteworthy, What's Hot, and What We're Playing above Best Doodle Games and Best Race Car Games.

  • How can I use OpenGl for iPhone games??

    Hi! As you know I really want to be an iOS developer. I know how Xcode works. But I don't know for the graphics and animation. I've heard that OpenGl can be used in games. But how? I mean like connecting the animations in OpenGl to the program written in XCode. I don't understand that part yet. So please can you guys explain me about that. I thank you all. 

    Hi Eric,
    it would help me frame answers if you give the background information:
    - do you know any 3D computer graphics theory? E.g. viewing transformations.
    - do you know any openGL already?
    - do you already know objectiveC and ios programming?
    To answer your questions:
    - the OpenGL ES libraries are already included as part of the iOS SDK, so if you have that you are set.
    - I am using an Air myself, works fine for developing for iOS, including code using OpenGL ES.
    - OpenGL ES is based on OpenGL 3.0, so is very similar. Almost the same.
    - read the post I linked to:
    http://db-in.com/blog/2011/01/all-about-opengl-es-2-x-part-13/
    He explains how to hook things up quite well. However, you do already need to understand how to develop for iOS.
    As I mentioned above, it helps to know 3D Graphics principles. If you do not know that then it is difficult to animate using openGL (or any other SDK). There are third party tools available (e.g. Corona, Unity, project Anarchy) that can make life easier, but at some point you simply have to learn 3D graphics. Trying to do animation without understanding graphics is like trying to write native apps without understanding programming. You can cheat to do basic stuff, but nothing useful or deep.
    This is not easy stuff, you will have to put some work into it. Start with the above link as an intro, and also the apple docs pointed to by teacup.
    Good luck!

  • Which book is very good for iphone game development

    plzz any one refer....thank you

    http://developer.apple.com/
    I am assuming even though you list a Windows computer that you are using an Intel-based Mac for your development.

  • What is the best deal for iPhone 5s for my 13yr daughter upgrade from blackberry

    I am looking for the best deal for myself and my 13 yr daughter to upgrade . She would like a iPhone 5s and I would like a iPhone 6 , 

    My first thought would be to get you and your daughter a shared EE plan.
    That way you have full control over your daughters plan with the ability to prevent her from buying more data etc. You would both get your own calls and text allowances, but you share just 1 data allowance between your handsets.
    you would get just 1 bill a month as well with a shared EE plan.
    The easiest way to buy shared plans is to either ring EE are call into your nearest EE store.

  • What is the right driver for iPhone 4 for iTunes 10.2.1.1

    I upgraded my itunes to 10.2.1.1 on Windows 7 and tried to upgrade my iPhone IOS to 4.2.1. Unfortunately, the apple recovery iBoot driver will not load and my iPhone has an USB cable icon pointed to an itunes icon and will not start.
    I see four drives Apple recovery iBoot USB driver 6.0.9999.52, 6.0.9999.53, 6.0.9999.55 and usb composite. All these drivers failed to load into Windows.
    What is the Apple recovery usb driver and how do I get the driver loaded so, y iPhone can start up?

    Jac -
    --Tom asked "what format are you capturing?"
    1. What camera (that the Church owns?) are you using now? Does it record to a small Memory card or to tape? -- What make & model is it? HD or SD?
    2. If the camera is storing to a media card, you can (a) copy the contents of the card to a thumb drive attached to any laptop at the church, take it home and import into Final Cut X there or (b) borrow the media card(s) and take it/them home.
    3. What laptop computer do you and/or the Church presently own? What is the operating system version? How much memory, size/type of internal Storage? Any external hard drive storage? You mentioned that you own a Mac Pro at home. What model? (Apple Menu/About this Mac/System Information) What are its specifications?
        Almost any computer would be able to simply copy files using the finder - without using Final Cut Pro X for capture at the Church.
      One can purchase 128 GB., USB 2/3 thumb drives for about $60 and up.
        If your Church's camera is a Tape based Camera, then you could just take the tapes home. No? "Capture" at home. Yes?
       You are currently capturing to an esata drive? which drive? which model Macbook Pro do you own?
       Finally, is your Church going to be purchasing whatever new equipment that you may need?

Maybe you are looking for

  • Is it possible to cancel a Goods Receipt?

    Hi everybody. I use SAP B1 2008. I know we can cancel certain documents in SAP after they have been posted. Ex. We can cancel a Sales Order by Selecting Data -> Cancel from the menu. Is it possible to cancel a posted Goods Receipt (or a Goods Issue)?

  • Disk Utility Freezes...

    Along with other standard Mac apps, like calculator.... I am getting so annoyed with my Powerbook G4 (running OS X Panther)... I recently had a problem with what I believe started because of a faulty downloaded font which ended up in me having to re-

  • Help Automating iphoto process

    I'm a newbie to automator and am not a software person, i was hoping someone could help me with the following repetitive task by getting me started in the right direction. Is the following possible with Automator. Automator script to be used within I

  • Set a given style to a given layer

    Hello there, My question touches cartography day to day problem with extract files from external cartography/ GIS programs to Adobe Illustrator format but can be seen in wider context. Let assume I have an exported ai file (map) that containt about 3

  • How to prepare to became the top level oracle dba in the industry..

    Hello, I am an OCP in oracle 11g .Recently got a job as oracle dba in a bank. Its amazing to work as a dba..it gives a gr8 feeling to handle such a huge responsibility. While working as dba, it gives give lot a idle time..as there are some other seni