use the blackberry for the best scores pine online

I'll put up my own high score board for one of my games online.

I want to make sure the user doesn't have to register or create an account, simply click submit a high score and he's going to do it whether or not they meet the 'name' field. So I have to default name to something. I thought the PIN you get from DeviceInfo.getDeviceId () I already use it to keep the unique entries (but not show it to the Board of Directors), but I think I need to obscure or something.

Any easy ways to do this, or other identifier that I could use more safe for the user?

Thank you.

The only issue I have with the help of the device ID, is that users will be loose when they change phones.  Our experience is that users can change the phone every 6 months, either because of failure or upgrade is hard to say.  But in order to make this process as simple as possible, we try to license by e-mail account because the people who usually take with them.  They also take their phone number.

But to be honest, using pine of the device is probably OK, if you don't think people will be too upset that they lose their high score when they change phone.

You must not publish the pin code in a way that can be used for things like BBM invite and PIN messages.

Tags: BlackBerry Developers

Similar Questions

  • Wanted: The best free tutorials online to learn the first Pro CC for beginners (no experience) edit.

    Wanted: The best free tutorials online to learn the first Pro CC for beginners (no experience) edit. Please post links. Thanks, JR

    XXJR2013XX wrote:

    Wanted: The best free tutorials online to learn the first Pro CC for beginners (no experience) edit. Please post links. Thanks, JR

    Hi XXJR2013XX,

    I like this one, if you start from scratch: https://helpx.adobe.com/creative-cloud/learn/start/premiere.html

    Thank you

    Kevin

  • JavaScript which will show you the best scores

    I am working on a form where people answer the questions, add up the results to find out which area they score higher.

    I put calculations in place for auto fill the scoresheet, but I wish that the results page to AutoFill with the name of the 3 best scores in the order 1, 2, 3.

    Is this possible with Javascript? I'm an absolute beginner.

    OK, so if you create 3 fields on page 6, called "TopScore1", "TopScore2" and "TopScore3", then you can place this code in the custom the first field calculation script:

    var fieldNames = ["Administration", "Craftsmanship Arts", "Craftsmanship Manual", "Evangelism", "Exhortation", "Faith", "Giving", "Helps", "Hospitality",
        "Prayer", "Knowledge", "Leadership", "Mercy", "Music Vocal", "Music Instrumental", "Serving", "Shepherding", "Teaching", "Wisdom", "Writing"]
    
    var fields = [];
    for (var i in fieldNames)
        fields.push(this.getField(fieldNames[i]));
    
    fields.sort(sortByValue);
    
    event.value = fields[0].name;
    this.getField("TopScore2").value = fields[1].name;
    this.getField("TopScore3").value = fields[2].name;
    
    function sortByValue(a,b) {
        return b.value-a.value
    }
    

    Of course, when the fields are empty (or when you have more than one field with the same score), first results will depend on the initial order, although there could be more.

    It is possible to create a script that will bring together the categories and output a list to the high score fields (instead of a single category name), but that would require a script more complex.

  • Sharing of the best scores App with Contacts

    I was wondering how I could allow users to see what their friends scored on a game app. Is there access to a list of contacts?

    Take a step away, just a possibility, I think about everything, but is there a way for users to share created contained with friends? that is, the app allows you to design a level puzzle or something and you could send just a small data file to a friend to download their application, so that they can now play the level of their designed friend. Not really sure if this is possible. Any ideas?

    Hey,.

    at the present time, we cannot access data privacy of the device such as contacts. hope that this feature will be available very soon. That being said, you can create and manage your own contact list using any sort of data storage (e.g., SQLLite, storing files, ShareObject, etc.). Once you have that you can store the names of emails and such, and your application can access these data.

    Now from what I recall AS3 has not built in order to send an email directly from him. Better to use an online method as mentioned by willyyr in the post above me. Use the URL Loader object and send a request to your website or a website form mailer. Your idea of emailing the file, however, can be a little difficult because this would imply creating an attachment you will need to attach it to an email. an easier option would be to have a Web site where you store a central database of cards created by the user and the content. As mentioned before, you can send these cards and content to your Web site by using the URLLoader object.

    All that would require that you have a server configured to be able to handle such requests. It can be any host or domain as long as you have access and are able to create scripts with a language online such as PHP, ASP, Java, etc.

    Here is a link to the ASDocs for the URLLoader class which will be useful:

    http://livedocs.Adobe.com/Flash/9.0/ActionScriptLangRefV3/Flash/NET/URLLoader.html

    hope that helps! Good luck!

  • How to create a table of the best scores?

    currently I have my display to score through my variable partition, which comgratulates the user and says their score.

    but

    How do I create a high score table, which shows the users score every time it plays my game?

    function displayScoreBox()

    {

    displayScore.text = 'well done. You score "+ score.

    }

    displayScoreBox();

    Stop();

    You must store the partition somewhere.  If you want to store locally on the user's computer, then you need to either develop this as an AIR application, where you can save the data to a file, or if it is an application online, then you need to use the SharedObject class that is Flash version of cookies.

  • How to select only the best score?

    I have a table with notes, like this:
    Name    | Section |Score
    ----------------------
    John    | A      | 1
    John    | B      | 3
    John    | C      | 2
    Sue     | A      | 3
    Sue     | B      | 2
    Sue     | C      | 3
    Now, I want to choose the name and the average score that has the highest average score. So, in this case, the average score of John is 2 and average score of Sue is 2.6, so I want the result to be:
    Name    | Score
    -----------------------
    Sue     | 2.6
    How do I get there?

    Published by: 785131 on August 10, 2011 14:49
    PS. I don't know why, but suddenly my handle is recessed to a number, while I put a proper name for it...

    Hello

    Here's a way to do it:

    with t as (
    select 'John' as name, 'A' as section, 1 as score from dual union all
    select 'John' as name, 'B' as section, 3 as score from dual union all
    select 'John' as name, 'C' as section, 2 as score from dual union all
    select 'Sue' as name, 'A' as section, 3 as score from dual union all
    select 'Sue' as name, 'B' as section, 2 as score from dual union all
    select 'Sue' as name, 'X' as section, 3 as score from dual
    )
    select distinct
    first_value(name) over (order by avg(score) desc) max_name,
    max(avg(score)) over () max_avg
    from t
    group by name; 
    
    MAX_NAME      MAX_AVG
    ---------- ----------
    Sue        2.66666667
    

    Kind regards
    Sylvie

  • Equiam A60: Want to use the best card wireless

    speedtouch 576 wireless router installed to work in conjunction with aol broadband.
    Can someone suggest the best map to allow wireless access.

    Hi King

    I put t know what card WiFi is the best, but I would like to inform you of this compatible card is Atheros 802. 11 b / g. This card has been tested and it works well. This support 128-bit WEP encryption card.

    Good bye

  • HotSpot Z10 using Z10 blackBerry for my desktop

    How to use the Z10 hotspot for my desktop computer?  can I use the USB cable or is it purely as wifi?

    You can use the Hotspot, cable USB or Bluetooth. Here is my post on the interent on all three speeds.  http://supportforums.BlackBerry.com/T5/BlackBerry-Z10/Z10-Internet-tethering-hotspot-vs-Bluetooth-vs...

    To activate the hotspot, go to (get down from the top) settings, network connections, select Mobile hotspot.

  • When I use the browser to get online, the home page displays no address bar or anything on it

    When I move the cursor to the top of the page, the address bar appears but not the view, tools, history, options etc.
    When I move the cursor to the bottom of the address bar disappears...

    a cox tech said that they see what often happens with computers
    using a... Fire Fox browser they mentioned the problem as
    STUCK IN FULLSCREEN.
    How will that I solve this problem? THX

    Sounds like you are in full screen view. Press the F11 key to turn off the Mode or full-screen. See http://kb.mozillazine.org/Netbooks#Full_screen

    The Firefox button has replaced the menu bar (File, Edit, View, history, Favorites, tools, help). You can view the Menu bar instead of the Firefox GOLD button you can temporarily show the selections Menu Bar and do it while the Firefox button is on:

    • Temporarily view and use the menu bar, press ALT or F10 and make your choice in the menu bar.
    • Checked menu bar: menu bar; Firefox button
    • Unchecked menu bar: menu bar; The Firefox button
    • Click on the Menu bar to check/uncheck it after doing one of the following:
      • Click the Firefox button > Options > toolbars
      • Click view > toolbars
      • Right-click in the empty space at the end of the tabs
    • Keyboard shortcut to toggle the Menu bar, power button: hold down the ALT key and press letters VTM

    If this answer solved your problem, please click 'Solved It' next to this response when connected to the forum.

  • Windows 7: connect using the 4-digit pin code

    Is it possible to log on Windows 7 using a 4 digit PIN - as can be done in Windows 8?

    I hope that you can advise...

    Windows 7 doesn't have the PIN code function. However, you can create a 4-digit password (which in my humble opinion, is not really sure).

  • Luminaire 3s 8962. Cannot use the GPIO C pins as a source of disruption.

    I'm trying to use GPIO C-5 as the source of interruption to run a vi and get this error

    Building target "LabVIEW".
    compilation of ARM_irq.c...
    .. \Drivers\Interrupt\ARM_irq.c(313): error: #20: identifier 'LM3Sxxxx_GPIOCHandlerP' is not defined
    Target not created

    It works when the selection of the GPIO groups a, b and d...

    David

    Open your project in Keil uVision and make a small change in ARM_irq.c/line 225:

    LM3Sxxxx_GPIOCAHandlerP to LM3Sxxxx_GPIOCHandlerP

    ARM_irq.c is in the "target drivers' group of the LabVIEW project.

    To make the change permanent, you can use GPIOC future projects breaks, also change the template file:

    \Targets\Keil\Embedded\RealView\EK-LM3S8962\Template\Drivers\Interrupt\ARM_irq.c

  • Is there a way to use the custom stamp packs online?

    I like the UI stencils, and I would like to create some of my own.

    It is exactly in the direction we want to take the app in the future Michael. Thanks for the comments.

    What tool do you plan to create your stamps?

  • Convert to the best available network does not?

    Not so long ago, the ThinkVantage utilities have been updated.

    In my case (Vista 64), access connections has been updated to version 5.12.

    After the update, I have not been able to use Convert button best available network.

    Steps to reproduce:

    1. create a location profile by connecting to a new wireless network.

    Location of backup settings 2.

    3 change the location settings and use the best available network button convert, so wired map is also listed.

    4-save location settings.

    5 change settings for location again and confirm that the wired map disappeared again.

    Workaround solution:

    1 remove the previous location settings.

    2. create a location profile using the button create location profiles list and enter all the settings (wireless) by hand (I had save wireless settings, that I already had on paper so I could go now)

    There is something that escapes me, or is this a bug?

    That's what I did in the previous version of AC, and it worked.

    Greetings,

    OK, Access Connections 5.20 is now available on Vista 64.

    I've updated and the issue disappeared (there must be a bug...).

    The convert button works now.

  • Is anyone know the best method to remove background on Photoshop CS4

    Products-SB.gif

    Background is too dark, want to brighten up.

    Use for the site to the beauty of the skin

    You cannot use this image on a commercial Web site!   Go back and resume.  What is the light source?

    There is something we used to do with Photomatix (HDR software) where take you a bunch of shots fired a strobe at a different location for each shot and use the best of each shot in the merger.  I have a feeling that if you did it with Photoshop. Load the shots in layers. Used Edit > Auto alignment of layers, followed by Edit > layers of automatic mixture using seamless tones and colors, it would do the same.  I could just go and check it out.

  • How can I set up that uses the GPU Lightroom 6?

    Hello!

    I just got 6 Lightroom and all is well until now. However, I think that the performance could be better, and I think that the reason is that Lightroom chooses the bad GPU.

    But let me first, I use an Acer Aspire V 15 Nitro (571 G-VN7-55ZA) with the following configuration:

    • Intel Core i5-4210U 1.7 GHz
    • 8 GB memory DDR3 L
    • 8 GB + HDD 1000 GB SSD hybrid
    • Graphics Intel HD 4400
    • NVIDIA GeForce 840 M with 2 GB dedicated VRAM
    • 8.1 Windows 64-bit

    My laptop so usually works with Intel HD GPU. But when I'm using Lightroom, I want my laptop to use the best NVIDIA GPU. Unfortunately, I found no option to set it up like this, in Lightroom, nor under the GPU.

    Does anyone know how this can be done?

    Or is it not necessary, because maybe the used GPU is start-up automatically as soon as the workload is too high? How can I test this?

    Thanks for your help in advance!

    See you soon

    You can change the default GPU for a program via the NVIDIA Control Panel, simply click on the Lightroom icon and select run with graphics processor-processor > choose default graphics...

    You will receive an option to select the graphic processor preferred for Lightroom.

    My advice would be NOT to disable the Intel HD in the Panel peripheral card.

Maybe you are looking for

  • TinEye blocked for Android?

    Search function does not offer addon

  • The missing menu bar icons

    I had to do a reload of Yosemite and found now that my menu bar on tight now lack the icons that I've had it. I still have the time and the wifi icon but none of the others. How can I fix this? With the help of an iMac. Hughie

  • HP slate 7 red help bak

    Hi, I bought my 7 slate off a friend worked very well until today about 19:30 it just turned off and now will not charge or turn on I tried a few different Chargers just in case it was defective, but not lucky as me getting repair of hp or a solution

  • USB 6008 data acquisition: automatically turning in a port

    Hi all someone could please help me. I need to autoamtically send output didgital since my data acquisition based on a value. the bottom of my little project. I read in a database if a value is equal to a certain value, I want to send a digital camer

  • KB976325 error code 800719E4 installation problem

    HelloI recently had trouble with an update called "Cumulative security update for Windows Internet explorer 8 for Windows Vista" or KB976325.Each time it downloads and supposedly settled and then asks to restart the laptop. I do and it goes through t