New game by Intel

Has anyone tried this new game by Intel?
Crimescene
It took me 30 mins - which I think is pretty good!
The game is promoting their Intel Active Management Technology - anyone know much about this??

Wow , you are dreaming my dear.
Such titles have better chance to appear in an another reality.
Most of symbian developpers are gone , if you want a game device you'd better look for android or ios.

Similar Messages

  • Newer Games and Macbook Pro

    I am just wondering in the coming months and years, Will games for the PC and Mac be released At the same time or will there be delays with releasing mac versions of games
    Just curious b/c that the Macbook Pro is running a Intel based Processor

    Here's my 2c on the topic...
    I think you will still see the same delay in Windows to Mac based games there is today but this may change. It may change if the Mac becomes a more popular platform and takes over more market share and it may change if game makers change their strategy to releasing new games.
    I'd love to see more games come out for the Mac myself but until then I have my Warcrack^H^Hft.
    MBP 2.0   Mac OS X (10.4.5)   whine and pixel

  • How can I transfer my old dragonvale island into my new game center account?

    I restored my ipod, but now I had to make a new game center account. Since Dragonvale used my old GC account, it forgot my island and generated a new one. I dont wanna have to start over again. Help me! (dont say to start over)

    You said you restored your iPod. Did you restore from backup? If yu did then yur game progress and Game Center stuff should have beeb restored.

  • I bought a new app ($0.99), bought $19.00 worth of on app purchases and the app crashed, now it says that I have to start a new game since i had just started it and didn't get a chance to save it, so my question is, how do i get my money back?

    I bought a new app ($0.99), bought $19.00 worth of on app purchases and the app crashed, now it says that I have to start a new game since i had just started it and didn't get a chance to save it, so my question is, how do i get my money back?

    I'm keeping the app, i just need the $19.00 back.

  • Puzzle Game and new Game Problem

    Hello Java Programmers,
    Once again I have encountered a problem with my ongoing puzzle game. I have completed it all. Now I want my user to be able to start a new game in after they win. I tried repaint and update method with JFrame but it deosn't reshuffle the buttons. How can I do that. The code geos below.
    [/b]
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    import javax.swing.JOptionPane;
    public class PuzzleGame{
       String[] btn_Labels = {"1","2","3","4","5","6","7","8","9",
                            "10","11","12","13","14","15"," "};
       String[] labels = {"1","2","3","4","5","6","7","8","9",
                            "10","11","12","13","14","15"};
       private final int ONE = 1, TWO = 2, THREE = 3, FIVE = 5;
       private boolean WIN_STATE = false; 
       private JButton b[];
       public String clicked_btn_label = "";
       //Constructor method.
       public PuzzleGame(){
          showSplashScreen();
          initGame();
       public static void main(String args[]){
          PuzzleGame game = new PuzzleGame();
       //When a new Game started labels of buttons are shuffled using this method.
       public void shuffleNumbers(){
          String temp = null;   
          for(int j=0; j<16; j++){
          int k = (int)(Math.random()*16);
          temp = btn_Labels[j];
          btn_Labels[j] = btn_Labels[k];
          btn_Labels[k] = temp;           
       //Game initialization method.
       public void initGame(){
          b = new JButton[16];
          JPanel p = new JPanel();
          JFrame frame = new JFrame();
          shuffleNumbers();
          for(int i=0; i<16; i++){
             b[i] = new JButton();
             b.setText(btn_Labels[i]);
    b[i].setActionCommand(""+(i+1));
    for(int i=0; i<16; i++){
    b[i].addActionListener( new ActionListener(){
    public void actionPerformed(ActionEvent e){
    clicked_btn_label =(String)e.getActionCommand();
    doSwapping();
    checkWin();
    p.add(b[i]);
    p.setLayout(new GridLayout(4,4));
    frame.getContentPane().add(p);
    frame.addWindowListener(new WindowAdapter(){
    public void windowClosing(WindowEvent e){
    System.exit(0);
    Dimension dm = Toolkit.getDefaultToolkit().getScreenSize();
    int x = (dm.width - 230)/2;
    int y = (dm.height - 240)/2;
    frame.setBounds(x,y,320,240);
    frame.setSize(340,240);
    frame.setVisible(true);
    //This method swaps the clicked button with the empty button if it doesn't violate rule.
    public void doSwapping(){
    int num = Integer.parseInt(clicked_btn_label);
    String temp;
    if( (num + ONE <= 16) && b[num].getText() == " " && num % 4 != 0){
    temp = b[num].getText();
    b[num].setText(b[num-ONE].getText());
    b[num-ONE].setText(temp);
    else if((num - TWO >= 0) && b[num-TWO].getText() == " " && ((num - ONE) % 4 != 0)){
    temp = b[num-ONE].getText();
    b[num-ONE].setText(b[num-TWO].getText());
    b[num-TWO].setText(temp);
    else if( (num + THREE < 16) && b[num+THREE].getText() == " "){
    temp = b[num-ONE].getText();
    b[num-ONE].setText(b[num+THREE].getText());
    b[num+THREE].setText(temp);
    else if( (num - FIVE >= 0) && b[num-FIVE].getText() == " "){
    temp = b[num-ONE].getText();
    b[num-ONE].setText(b[num-FIVE].getText());
    b[num-FIVE].setText(temp);
    // else{}
    public void checkWin(){
    WIN_STATE = true;
    for(int i=0; i<15; i++){
    if( b[i].getText() != labels[i])
    WIN_STATE = false;
    if(WIN_STATE == true){
    JOptionPane.showMessageDialog(null,"Congratulations You Have won the Game!","You Win",JOptionPane.INFORMATION_MESSAGE);
         initGame();
    public void showSplashScreen(){
    JWindow w = new JWindow();
    JPanel p = (JPanel)w.getContentPane();
    JLabel l = new JLabel(new ImageIcon("splash.jpg"));
    Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
    int x = (d.width - 230)/2;
    int y = (d.height - 240)/2;
    p.add(l);
    w.setBounds(x,y,320,240);
    w.setVisible(true);
    try{
    Thread.sleep(10000);
    catch(Exception e){
    w.setVisible(false);
    [/b]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Sorry for violation. I would like to add a menubar to the application containing a single menu button for new game. adding a menubar is simple but how can i reshuffle the buttons using methods like update etc. or any other way.

  • When I upgraded to ios 5, it asked me a for a new game center name.  How do I use my old game center name, since it makes me start some games over without it?

    When I upgraded to ios 5, it asked me a for a new game center name.  How do I use my old game center name, since it makes me start some games over without it?

    Carefully follow steps 1-9 outlined by wjosten in this post: https://discussions.apple.com/message/13356770#13356770.  This will not, however, avoid wiping any non-purchased media from your phone (ripped CDs, etc.) as this is only synced one way: from your computer to your phone.  You will have to either rebuild your iTunes library with this content and sync again to restore it to your phone, or purchase 3rd party software to copy it from your phone to iTunes prior to syncing (such as Touch Copy).

  • Itunes wont let me sync new games

    When i try to sync the games I just bought(song summoner) i get a message saying that if I do it will replace all games on my ipod with the games in my library, but the problem is my ipod video came with several simple games(Brick, Parachute, Music Guiz, and solitaire) preloaded on it, will it delete these games if I ok the sync or will they be ok, and if they will get deleted is there anyway get my new games onto my ipod without losing the preloaded ones?
    Thanks for your help!

    If you mean the built in games( and I think you do), they can't be deleted. If you mean games that someone else put on your iPod before you bought it, they would be deleted.

  • How do I create a new game center id for my own games

    My kids have many games on my phone (4s) how do I create a new Game center id and load some of the same games as my own?

    You can change the account by tapping or clicking Account and then signing out of the current account and into the new one(Apple ID).

  • Can I update my older ipod touch to play new games that require ios 4.3?

    Can I update my older ipod touch to play new games that require ios 4.3?  After I purchased games for my son's ipod, they would not upload due to ios.  How can I update that without purchasing a new touch?

    iOS 4.3 requires a third generation or newer iPod touch; you don't need to buy a brand new device in any case.
    (74008)

  • Hi all, can someone please help. I'm trying to transfer Game Center data (games, achievements/scores and friends) to a new Game Center account. Thank you in advance :)

    Trying to transfer all Game Center data to a new Game Center account. Thank you in advance. Much appreciated.

    I am having the same problem
    after the update to 5.0.1
    I mean updating shouldn't become a task that everyone will dread

  • Looking for a particular upcoming new game

    There is a new game coming in the near end of October called Zettai Hero Project: Unlosing Ranger vs. Darkdeath Evilman (Yes. That's the title.). But the game itself is not on the website yet for preorder.
    Here is the cover:

    Deathdeath.. Evilman?
    The unlosing ranger I can see as a translation bo-bo.
    But Darkdeath Evilman?!
    Is this the result of some game designers severe writer's block?
    I'm sure that the GAME is nice, tho
    I am a Bestbuy employee who volunteers on these boards on my own time. I am not paid for posting here, and you should understand that my opinions are exactly that - opinions. I do not represent Bestbuy in any way.
    : Open Mailbox

  • Is their a way to use the T-Mobile Blackberry with the new iMac w/Intel?

    Hello Everyone,
    I have the T-Mobile Blackberry and am trying to get it to sync to the new iMac with Intel, 10.4.6 OS. It never shows up on my computer when I plug it in. I have tried it in Bluetooth mode as well as serial and USB and nothing.
    I have also downloaded pocketmac. Pocketmac with GoBetween to sync with Entourage and nothing works.
    I guess my main questions are, is there something I am missing, a program or feature that needs to be installed to get the T-mobile Blackberry to work? Or, should I switch to the Treo?
    Any help would be truly appreciated as I have been working on this for weeks, searching websites, contacting Pocketmac support and absolutely no one has a solution.
    Thanks!
    iMac with Intel   Mac OS X (10.4.6)  

    It all depends upon your Treo. Generally speaking, all Palm devices are supported 'out of the box' but there are difficulties to overcome with early Palm organizers, Handspring devices and serial [not USB] or infrared Palm handelds.
    The Treo 600 [USB only] and Treo 650 [Bluetooth or USB] are supported by iSync, and—like all Palm OS 4 or 5 devices—to a much more effective extent by the Missing Sync for Palm OS from Mark/Space. See this link for more information:
    http://www.markspace.com/missingsync_palmos.php
    A Treo 700w is a Windows Mobile 5 device, and neither Information Appliance Associates, not Mark/Space, have delivered release packages supporting Windows Mobile 5 smartphones and Pocket PC devices. Mark/Space, however, is shipping an early alpha release of the Missing Sync for Windows Mobile with support for the Treo 700w, but only to registered users of the existing release for earlier devices. More information, generally, about that product is available here:
    http://www.markspace.com/missingsync_windowsmobile.php
    And, you can read about the early 2.5a8 [alpha] version here:
    http://www.markspace.com/wm5.html
    Incidentally, as a T-Mobile subscriber, you can use virtually any unlocked GSM handheld or smartphone on their network, giving you lots more choices than other wireless subscribers have. You can synchronize a SONY Ericsson P910a [Symbian OS] or similar smartphone with iSync, a Sidekick or Sidekick II [Danger OS] hiptop device using the Missing Sync for hiptop, or the Palm or Windows Mobile handsets they or others offer using iSync or the Missing Sync for Palm OS in the case of the Palm OS units, or the Missing Sync for Windows Mobile or PocketMac in the case of Windows Mobile and Pocket PC devices.

  • IPOD 5th generation will not upload new games

    I purchased a new game and it will not upload it on my IPOD. It says it needs the 1.2 version which it has.
    I installed Itunes 7 and when the ipod is sync it says it's syncing software is version 1.2. I restored my IPOD and it still did not eliminate the problem.
    I can not find a way to contact support. It keeps looping me to articles and will not give me an email address or phone number.
    Someone please help.
    PC   Windows XP   none

    I finally got the answer in the Itunes discussion section.
    You must "authorize" your PC to use games / music purchased from the Store.
    Click on the "Store icon"
    Go in "Store" -> "Authorize PC" It will authorize your IPOD to be able to load games. Otherwise, double-clic the image of the game between the Library column and the game description: a pop-up window will be prompted and you can authorize your pc.

  • How do I transfer contents of hard drive on PPC iMac G4 to a new quad-core Intel Core i5

             Although my PPC iMac G4 still works OK, I am beginning to realise the time has probably come to get a current model in order to keep up with all the advances that have happened since I bought it about 8 years ago: I will probably get the new quad-core Intel Core i5.
             As this will only be my second computer, I am wondering how I can transfer all the stuff on my hard drive onto a new computer and how easy it will be,given the apparently outdated connections on my G4 like USB 1,and possibly other things I don't know about.I am running 10.4.11.
              Any tips gratefully received.

    As Allen indicates, Setup Assistant appears automatically, since you do have firewire, the transfer should be speedy, depending on how much data are on the G4.  The firewire on your G4 is FW400, your new Mac has FW800, but you can get an inexensive adaptor that will allow the connection, since the ports are different.
    You don't need an external now, but I strongly advise getting one, with a drive as large or larger than your new Mac, you should clone/back up frequently, I use SuperDuper!  which will allow automatic backups.

  • How can I start a new game on an App that is stored in iCloud?

    I have a game stored in iCloud - that is my only option.  I want to start it as a new game on a different device and I can't.  I tried creating a new account and that didn't work.  What do I need to do?

    How that that game maintain/record status?
    What do you mean by stored in iCloud?
    Do you have to log into that game?
    Have you tried contacting the developer?

Maybe you are looking for