Username to submit high scores for games?

Hey, so I don't know what my username or password is so I can submit my high scores for games like brickbreaker and wordmole.
Tbh I don't even know if I have a username lol or how to set it up.
Any help would be greatly appreciated.
Solved!
Go to Solution.

Hello StarBlue03,
If you aren't sure if or what your user name is, you can create a new one.
KB17723 will show you how to do this.
Thanks! And have a great day
-HMthePirate
Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

Similar Messages

  • Make a High score for a game....

    Hello
    I'm tring to use RMS code to make a highscore to game - puzzle, but i have some problems
    // file 1 - Hiscore.java
    import java.io.*;
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    import javax.microedition.rms.*;
    public class Hiscore
    implements CommandListener {
    private Display display;
    private RecordStore rs;
    private EnumList enumListScreen;
    private byte[] data = new byte[200];
    private ByteArrayInputStream bin = new ByteArrayInputStream(data);
    private DataInputStream din = new DataInputStream(bin);
    // Polecenia na soft keys w telefonie
    private Command exitCommand = new Command("Wyjscie",Command.EXIT,1);
    // Rekord danych
    private static class Record
         String firstName;
         String lastName;
    // Dane
    private static final String[][] names = {
         {"Jan","Kowalski"},
         {"Jakub","Sosna"}
    // stworzyc metode to pobierania imienia
    // Inicjalizacja i otwarcie magazynu rekordow
    public Hiscore()
    //throws MIDletStateChangeException
         // Midlet wywolany poraz pierwszy
         if (display == null)
              begin();
         if (rs == null)
              openRecordStore();
    private void begin()
    //     display = Display.getDisplay(this);
         enumListScreen = new EnumList();
         if(openRecordStore())
              enumListScreen.addDate();
              display.setCurrent(enumListScreen);
    public void exitMIDlet()
         closeRecordStore();
    // dodanie rekordu do magazynu
    private void addName (String first, String last,
              ByteArrayOutputStream bout,
              DataOutputStream dout)
         try{
              dout.writeUTF(first);
              dout.writeUTF(last);
              dout.flush();
              byte[] data = bout.toByteArray();
              rs.addRecord(data,0,data.length);
              bout.reset();
         catch(Exception e) {}
    // Wypelnianie magazynu danymi
    private void fillRecordStore()
         ByteArrayOutputStream bout = new ByteArrayOutputStream();
         DataOutputStream dout = new DataOutputStream(bout);
         for (int i = 0; i < names.length; ++i)
              addName(names[0],names[i][1],bout,dout);
    // Otwarcie magazynu rekordow
    private boolean openRecordStore()
         try{
              if (rs!=null) closeRecordStore();
              rs = RecordStore.openRecordStore("HiScore",true);
              fillRecordStore();
              return true;
         catch(RecordStoreException e){
              return false;
    private void closeRecordStore()
         if(rs!=null)
              try{
                   rs.closeRecordStore();
         catch(RecordStoreException e) {}
         rs = null;
    // odczytywanie recordow
    private boolean readRecord(int id, Record r)
         boolean ok = false;
         r.firstName = null;
         r.lastName = null;
         if (rs != null)
              try{
                   rs.getRecord(id,data,0);
                   r.firstName = din.readUTF();
                   r.lastName = din.readUTF();
                   din.reset();
                   ok = true;
              catch(Exception e) {}
         return ok;
    // Obsluga polecen
    public void commandAction(Command c, Displayable d)
         if (c == exitCommand)
              exitMIDlet();
         else
              display.setCurrent(enumListScreen);
    // Klasa obslugi glownego okna
    class EnumList extends List
         public EnumList()
              super("Magazyn Rekordow",IMPLICIT);
              addCommand(exitCommand);
              setCommandListener(Hiscore.this);
         public void addDate()
              try{
                   //utworz wyliczenie uzywajac
                   RecordEnumeration enum = rs.enumerateRecords(null,null,false);
                   Record r = new Record();
                   //odczytywanie rekordow i wypelnianie listy danymi
                   while(enum.hasNextElement())
                        int id = enum.nextRecordId();
                        if (readRecord(id,r))
                             append(r.lastName+", "+r.firstName,null);
              enum.destroy();
              catch(RecordStoreException e) {}
    // File 2 - Puzzle.java
    import javax.microedition.midlet.MIDlet;
    import javax.microedition.lcdui.*;
    public class Puzzle extends MIDlet
    implements CommandListener,ItemCommandListener {
        private Command exitCommand = new Command("Wyjscie", Command.EXIT, 1);
        private final static Command CMD_PRESS = new Command("Gram", Command.ITEM, 1);
        private Form mainForm;
        Board b;
        String zasady = "Rulles.\n";
        TextField imie = new TextField("Podaj imie:", "", 15, TextField.ANY);
        public static String name;
        public Puzzle() {
             mainForm = new Form("Puzzle");
        public void startApp()
                mainForm.setTitle("Puzzle");
                mainForm.append(zasady);
                StringItem item = new StringItem("Gram","", Item.BUTTON);
                item.setDefaultCommand(CMD_PRESS);
                item.setItemCommandListener(this);
                mainForm.append(imie);
                mainForm.append(item);
                //Hiscore.EnumList();
                mainForm.addCommand(exitCommand);
                mainForm.setCommandListener(this);
                name=imie.getString();
                mainForm.append(name);
                Display.getDisplay(this).setCurrent(mainForm);
        public void commandAction(Command c, Displayable s) {
             destroyApp(false);
             notifyDestroyed();
        public void commandAction(Command c, Item item) {
             b = new Board(this);
             Display.getDisplay(this).setCurrent(b);
        protected void destroyApp(boolean unconditional) {
        protected void pauseApp() {
    } I want to launch Hiscore after winning game (name and time of winnig) but i can't (don't know what i'm doing wrong) lanuch it. Durring of testing I make a hiscore on beging but later it will be at the end of game after winnig.
    What are my mistekes. Why I can't launch it?
    Does anybody make a simple Hiscore, using RMS?

    Hello
    I'm tring to use RMS code to make a highscore to game - puzzle, but i have some problems
    // file 1 - Hiscore.java
    import java.io.*;
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    import javax.microedition.rms.*;
    public class Hiscore
    implements CommandListener {
    private Display display;
    private RecordStore rs;
    private EnumList enumListScreen;
    private byte[] data = new byte[200];
    private ByteArrayInputStream bin = new ByteArrayInputStream(data);
    private DataInputStream din = new DataInputStream(bin);
    // Polecenia na soft keys w telefonie
    private Command exitCommand = new Command("Wyjscie",Command.EXIT,1);
    // Rekord danych
    private static class Record
         String firstName;
         String lastName;
    // Dane
    private static final String[][] names = {
         {"Jan","Kowalski"},
         {"Jakub","Sosna"}
    // stworzyc metode to pobierania imienia
    // Inicjalizacja i otwarcie magazynu rekordow
    public Hiscore()
    //throws MIDletStateChangeException
         // Midlet wywolany poraz pierwszy
         if (display == null)
              begin();
         if (rs == null)
              openRecordStore();
    private void begin()
    //     display = Display.getDisplay(this);
         enumListScreen = new EnumList();
         if(openRecordStore())
              enumListScreen.addDate();
              display.setCurrent(enumListScreen);
    public void exitMIDlet()
         closeRecordStore();
    // dodanie rekordu do magazynu
    private void addName (String first, String last,
              ByteArrayOutputStream bout,
              DataOutputStream dout)
         try{
              dout.writeUTF(first);
              dout.writeUTF(last);
              dout.flush();
              byte[] data = bout.toByteArray();
              rs.addRecord(data,0,data.length);
              bout.reset();
         catch(Exception e) {}
    // Wypelnianie magazynu danymi
    private void fillRecordStore()
         ByteArrayOutputStream bout = new ByteArrayOutputStream();
         DataOutputStream dout = new DataOutputStream(bout);
         for (int i = 0; i < names.length; ++i)
              addName(names[0],names[i][1],bout,dout);
    // Otwarcie magazynu rekordow
    private boolean openRecordStore()
         try{
              if (rs!=null) closeRecordStore();
              rs = RecordStore.openRecordStore("HiScore",true);
              fillRecordStore();
              return true;
         catch(RecordStoreException e){
              return false;
    private void closeRecordStore()
         if(rs!=null)
              try{
                   rs.closeRecordStore();
         catch(RecordStoreException e) {}
         rs = null;
    // odczytywanie recordow
    private boolean readRecord(int id, Record r)
         boolean ok = false;
         r.firstName = null;
         r.lastName = null;
         if (rs != null)
              try{
                   rs.getRecord(id,data,0);
                   r.firstName = din.readUTF();
                   r.lastName = din.readUTF();
                   din.reset();
                   ok = true;
              catch(Exception e) {}
         return ok;
    // Obsluga polecen
    public void commandAction(Command c, Displayable d)
         if (c == exitCommand)
              exitMIDlet();
         else
              display.setCurrent(enumListScreen);
    // Klasa obslugi glownego okna
    class EnumList extends List
         public EnumList()
              super("Magazyn Rekordow",IMPLICIT);
              addCommand(exitCommand);
              setCommandListener(Hiscore.this);
         public void addDate()
              try{
                   //utworz wyliczenie uzywajac
                   RecordEnumeration enum = rs.enumerateRecords(null,null,false);
                   Record r = new Record();
                   //odczytywanie rekordow i wypelnianie listy danymi
                   while(enum.hasNextElement())
                        int id = enum.nextRecordId();
                        if (readRecord(id,r))
                             append(r.lastName+", "+r.firstName,null);
              enum.destroy();
              catch(RecordStoreException e) {}
    // File 2 - Puzzle.java
    import javax.microedition.midlet.MIDlet;
    import javax.microedition.lcdui.*;
    public class Puzzle extends MIDlet
    implements CommandListener,ItemCommandListener {
        private Command exitCommand = new Command("Wyjscie", Command.EXIT, 1);
        private final static Command CMD_PRESS = new Command("Gram", Command.ITEM, 1);
        private Form mainForm;
        Board b;
        String zasady = "Rulles.\n";
        TextField imie = new TextField("Podaj imie:", "", 15, TextField.ANY);
        public static String name;
        public Puzzle() {
             mainForm = new Form("Puzzle");
        public void startApp()
                mainForm.setTitle("Puzzle");
                mainForm.append(zasady);
                StringItem item = new StringItem("Gram","", Item.BUTTON);
                item.setDefaultCommand(CMD_PRESS);
                item.setItemCommandListener(this);
                mainForm.append(imie);
                mainForm.append(item);
                //Hiscore.EnumList();
                mainForm.addCommand(exitCommand);
                mainForm.setCommandListener(this);
                name=imie.getString();
                mainForm.append(name);
                Display.getDisplay(this).setCurrent(mainForm);
        public void commandAction(Command c, Displayable s) {
             destroyApp(false);
             notifyDestroyed();
        public void commandAction(Command c, Item item) {
             b = new Board(this);
             Display.getDisplay(this).setCurrent(b);
        protected void destroyApp(boolean unconditional) {
        protected void pauseApp() {
    } I want to launch Hiscore after winning game (name and time of winnig) but i can't (don't know what i'm doing wrong) lanuch it. Durring of testing I make a hiscore on beging but later it will be at the end of game after winnig.
    What are my mistekes. Why I can't launch it?
    Does anybody make a simple Hiscore, using RMS?

  • Best idea for submmit high Score for ios Developers?

    hi guys .
    i want social networking similar to Apple Game Center Or OpenFeint that suppurted in flash ?
    anybody know how to submit highscore , and where submit ?

    APC Back-UPS XS 1300.  $169.99 at Best Buy.
    Our power outages here are usually only a few seconds; this should give my server about 20 or 25 minutes run-time.
    I'm setting up the PowerChute software now to shut down the computer when 5 minutes of power is left.  The load with the monitor sleeping is 171 watts.
    This has surge protection and other nice features as well.
    -Noel

  • How can I make a high scores list?

    I've heard a lot of options. I've tried writing to a perl script, I've read about signing an applet (which seems needlessly complicated). I just would like to know what is the easiest way to save a list of 10 high scores for a game that I'm making? If anyone out there has tried this already any advice would be REALLY appreciated
    thanks!

    What I'm trying to do is make just a high scores list for the game as a whole. It will be one high scores list of 10 names/scores that will be there for the applet. I already have everything set up to read the scores and order the scores in the program, i just need to know what the best way to save them permanently for the next time they need to be used is. I have the scores saved in a string array and I could write all the code myself to get those strings set up in whatever format I may need. But I just need to know how to save them once the applet is closed.

  • High Score and Applet

    Dear All,
    I'm trying to put a high scroe system in my applet (game). Therefor I would like to write a file (that is located on my ftp server) were I can save the scores. But how do I acces that File ? With an aplication it's easy, but applet doesn't do it (not even offline) I have thought about the following solutions:
    1) Direct acces file and change it (read, change,safe)
    2) Download the file to temp directory of user en edit is en then upload it trough FTP
    3) Save the high scores in a database ?
    I get the following error if I try to use the same code as in a application:
    java.security.AccessControlException: access denied (java.io.FilePermission highscore.txt write)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkWrite(Unknown Source)
         at java.io.FileOutputStream.<init>(Unknown Source)
         at java.io.FileOutputStream.<init>(Unknown Source)
         at java.io.FileWriter.<init>(Unknown Source)
         at Bestandentest.init(Bestandentest.java:24)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Please Help me

    @ zadok : If I use this I can nog save other players
    there high scores.You would still need to send it back to the server see DrLaszloJamf 's post. The advantage here is that you could make changes to the format of the table and not have to change to program.
    @Dr : I want a global high score for the game and
    keep it on my server. In a file or database. Because
    I thought I couldn't save it in an applet. A cookies
    doesn't solve the problem here unfornutlyI think that is what he is saying.
    >
    Whats's a servlet ?Google.

  • I have purchased Adobe XI Pro and created a form for entering bowling scores to submit to newspaper for my high school team.  I can not figure out how to get pdf's into my documents folder on my iPad so that I can access the files in bowling alleys where

    I have purchased Adobe XI Pro and created a form for entering bowling scores to submit to newspaper for my high school team.  I can not figure out how to get pdf's into my documents folder on my iPad so that I can access the files in bowling alleys where I do not have a Wi-Fi connections.  I need to be able access files without going to acrobat.com.  Help!!!@

    Post the PDF files to a web site. The browse to them in Safari on the iPad.  When you Open the files specify the Open to occur in Adobe Reader.  Then you can have/Save them in your Documents folder on the iPad.   An iPad has limited access to files otherwise.

  • Hosting a server for simple game related info, rankings, high scores, etc.

    I have a quick question about servers. I want to implement a ranking system for one of my games, the server would store player high scores and world rankings based on their score and perhaps other fairly easy stuff. Writing the server and communicating from
    it with the app is the easy part in my mind, ive done it numerious times for personal projects (Like a Raspberry PI based quadrocopter i wrote). My question is this. If i wrote the server where do i host it? How do people typically host their servers that
    are simple like this? Do they get a static ip address and host it from a extra computer in there homes? Im not talking about big corporations like microsoft that have large server centers, just individual developers like me.  Any thoughts?
    thank you for your time.

    Yes, the server  app runs on the machine it is hosted on.
    See http://azure.microsoft.com/en-us/documentation/services/mobile-services/ to get started with Azure Mobile Services.
    If you want to write a web service yourself from scratch you'll need to pick your technology and look for documentation there. It's off topic in this forum, but check out http://www.asp.net/get-started and the http://forums.asp.net/ forums for asp.net.
    --Rob

  • Flash Game High Scores Board

    Hello everyone,
    I know this is a subject that gets covered a lot as i have found a ton of tutorials that show a million dfferent ways to create a high scores board on a flash game.  So i decided to go out on a limb and pick a tutorial out to try.  Well I have now tried 3 different ones and have yet to get a working high scores board with my game.
    http://www.flashkit.com/tutorials/Games/How_to_c-Nick_Kuh-771/index.php
    That is the link to the most recent attempts to creat my high scores board.  When i finished everything the way the tutorial said it seemed like everything would work and then it just didnt.  After spending oh about 40 plus hours trying to make a high scores board i am getting very frustrated.  My game is scripted in AS2 and i have access to mysql and can set up unlimited databases.
    Can anyone please help me by sending an easy to follow tutorial that will work with AS2?  I would just like any kind of help right now as I feel ALL of my valid ideas have been ehausted.  Thanks in advance to anyone that can help!
    kapelskic

    Okay not a problem.
    This is my code on the very first frame of the game that initializes the the highscores.php script
    command = "init";
    _root.loadVariables("highscores.php?"+int(Math.random()*100000), "POST");
    This is the code that I have on a submit button, next to the input text box where the user enters their name for the scoreboard.
    on (release) {
    if(name ne ""){
    command = "update";
    _root.loadVariables("highscores.php?"+int(Math.random()*100000), "POST");
    gotoAndStop ("highScores");
    In every place the code says _root. I have also tried this. and neither of them work.  I have also tried a million other things.  So far the game plays through, goes to the game over screen where it asks for a user name and tells them their score.  Then once they press submit the game goes to the highScores screen but the name and score are not there.  The high scores screen cosists of 2 dynamic text fields one named "players" and one named "scores".  I hope this helps because I spent another 5 or so hours after my initial posts trying more tutorials with still no luck.  (the problem i am having is that i am new to flash, however not to PHP)
    kapelskic

  • Good Practice for managing player high scores & other stats

    During PC based game development, what is a good practice for saving high scores, game history etc for multiple users in terms of the following attributes :
    file types, data types to be used in the file, file protection from manual editing etc.
    pls throw some advice on the popular industry practice in use.
    regards, bittu ch

    During PC based game development, what is a good practice for saving high scores, game history etc for multiple users in terms of the following attributes :
    file types, data types to be used in the file, file protection from manual editing etc.
    pls throw some advice on the popular industry practice in use.
    regards, bittu ch

  • How to reset a score for a game in the game center back to zero? and I tried deleting the game and reinstall it

    I play Subway Surfer on my other account on my iPad so a friend of mine cheated and got a very high score now I want to reset this score back to zero so is there a way to do that or I have to delete the game and create a new apple ID for my iPad

    Hi Nick,
    If you have an X Series or 2nd Generation cDAQ chassis (basically any cDAQ chassis except for the 9172 or 916x sleeves) then you can implement:
    1,2,3,4,5,6,7,8,9,10,(reset),1,2,3,4,5,6,7,8,9,10,(reset),1,2...
    You would have to configure an Edge Count Task, set the initial value to 232 - 6 (such that the 6th count causes the counter to rollover, which generates a pulse on the counter output), and enable the count reset using your external signal:
    The count reset isn't currently available for other DAQ devices, but I believe it should be available on M Series (62xx) and TIO (660x, 6624) with a future driver release (some time in 2012).
    If you don't have an X Series (or gen II cDAQ), don't despair.  On other hardware, you can get close to the previous behavior with a counter output task, with the exception that the "reset" signal would only be detected after the 2nd tick after your pulse is output.  Also, the reset signal would have to occur at the beginning to arm the counter the first time.
    Or, you can get the 3rd behavior that you asked for by doing a continuous counter output task with the external signal as the source of the timebase ticks.  For example:
    1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,9
    In toggle mode (default):
    6 ticks of initial delay, 2 ticks high, 7 ticks low, 2 ticks high, 7 ticks low, ... etc.
    In pulse mode:
    6 ticks of initial delay, 9 ticks high, 9 ticks low, 9 ticks high, 9 ticks low, ... etc.
    See here for an overview of the difference of the two modes.  Basically, pulse mode will emit a short pulse when TC is reached, and toggle mode will toggle the state of the counter.  You can't have less than 2 ticks as a high time, low time, or initial delay.
    Best Regards,
    John Passiak

  • Game app high scores

    Morning all.
    I have a game app called Blitz.  (It is a version of Bejewelled.)  Every week, my high score sets reset to zero.  Fair enough ... except no-one else's does.  The same other high scores are there week after week, month after month.  Now, I think it unlikely that on every reset Splork gets exactly 365,050 again and Wall-nut gets exactly 151,350, etc, etc, so I can only assume they are not being reset.
    And my question is ... why would this be?  I am mystified.

    I'm not near the top score, so I can't think they think I'm cheating.
    I am connected up properly.  My scores get recorded fine.  Then, once a week, it says "time for a new high score" or something similar and the next game I play gets shown as my highest.  Then, through the week, I improve on this (or not, depending), and then it all happens again.  But everyone else's scores just stay there.
    The only explanation I can think of is that none of the others on the leader board have played again since recording their last score.  Maybe as soon as they do, their old score will go. 

  • HT4314 Temple Run 2, high score of 156 mil deleted from Game Center

    As the title describes, I last night got a high score of 156 million in Temple Run 2 and when I checked Game Center today, the game listed me as never having made a single run, and that I didn't have any score at all (my previous high score was 115 million which was on Game Center but is now also gone). I have played the game quite a bit and have completed all achievements except for the 10 million meter one.
    Does anyone have some thoughts on this?

    Yes, it's still listed within the app. It's only on Game Center that my scores are missing.

  • I bought a new Iphone 4s and when I sync my apps over I lost all of my high scores. How can I get back my high scores as I do not want to start all over on some of the games

    I bought the new Iphone 4s. I backed up my old 3gs on Itunes store before trading in my old Iphone. I sync my new phone and I have all of my apps but non of the high scores. For example I played all of the angry birds and had three stars on all levels. Now I have the app on my Iphone but I am back no levels completed. How do I fix this problem. My Itunes store is on a PC running Windows 7

    Under the answer you want to mark as correct you should see a box that says Correct with a green symbol to the left and a box with Helpful with an orange star to the left. Click on the one you want.
    And thanks for thinking about that, it is appreciated.

  • I need help! Do I need to have a MacBook/Mac Pro to submit/distribute an app game in Apple Store? I hired a designer and developer to do it for me..should be done next week.I have an Ipad.Is Ipad going to be just fine?I know I have to sign up for the Deve

    Hi,
    I need help! Do I need to have a MacBook/Mac Pro to submit/distribute an app game in Apple Store? I hired a designer and developer to do it for me..should be done next week.I have an Ipad.Is Ipad going to be just fine?I know I have to sign up for the Developer Program(I started that..though not finished yet)My developer will walk me thru submitting it.Please help.
    Thanks,
    sheapps28

    You'll need a Mac with a support OS X and tools to complete the process.

  • Add advanced action to submit button and setting different objectives score for the same course

    Hi, i would like to increase a counter in a quiz slide when the user press the submit button, using advanced actions.
    It's like if the submit button is somehow inhibited from certain options, and i cannot find how to add an advanced action to it.
    what i need, is to allow unlimited attempt until the user selects the right answer. each time the user click on submit, a counter increases by one. When user finally select the right answer, we read the counter value and assign a different score, depending on the attempt (for example: 1st attempt=20 points, 2nd attempt=10 points, 3rd attempt=0 points)
    After that, i need to save all score obtained for a certain group of quiz slide separately from the "main score" (i think the main score is stored in cmi.objectives.0.score)  to have partials scores for a course. I examined the "advanced interactions" panel and i noticed that for each quiz slide there is a specific interaction ID and each quiz slide is associated typically to the same Objective ID. What i need is to associate different groups of slides to different Objective ID's.
    In Storyline i was able to do this by passing to the lms a cmi.objectives.n.score (where "n" is the place in the objectives array) and i did it by executing a javascript on success for each question slide. (each javascript added the score of previous slides in the same group to obtain the total score of the group to be passed to lms with a specific function).
    examining captivate scorm functions in the published scormdriver.js i found the following function
    function SCORM_SetObjectiveScore(strObjectiveID,intScore,intMaxScore,intMinScore)
    so i think it can be done the same way in captivate executing javascript in the right way.
    Is there also an easier solution to write different scores to different obectives in the same course?
    many thanks for any help!

    Have a look at:
    Question Question Slides in Captivate - Captivate blog
    Question Question Slides - Part 2 - Captivate blog
    Indeed, Submit button is part of the Question slide, not a normal button. You can add a custom shape button, but it will never replace what happens when the Submit button is clicked: validation of the answer, showing captions, adding to score etc. Making the score depending on the attempt is not possible with default functionality, it is possible with custom question slides, but then the reporting to LMS is another issue. You should try to do it by JS, or if you only need SWF-output you could use the Master widget by InfoSemantics.
    Link score to attempts in Custom questions - Captivate blog
    Lilybiri

Maybe you are looking for

  • Battery drain and will not charge.

    Since the new update I have noticed my phone will no longer even go 8 hours without dropping to 10% power left.  As of last night, it will not take a charge.  Instead when I plug it into either a wall charger or via USB cable it will cycle through tu

  • I am using an anchor to go to a certian spot on a page from but it jumps up to the top of the page first before getting to that spot.

    I am using an anchor to go to a certian spot on a page from but it jumps up to the top of the page first before getting to that spot. Any suggestions on this not happening?

  • Import Format in FDMEE

    Hi i am trying to import data from text file to  FDMEE to Essbase We have 11 Dimensions in Essbase  Application Account Entity Period Year Line Item Customer Division PCNT Version Scenario Currency But in the text file we have only 6 dimension includ

  • Screen Sharing Security Hole!!

    At my school we use remote desktop and also the computers have screen sharing on. today i learned that if you type in a persons username without their password it will first say username or password is invalid then if you do it agien without changing

  • *.pdf converter is printing gibberish

    To my knowledge, none of my settings have been changed, yet when I print using .pdf converter most fonts are illegible. Example: 5#dedrvssrrqv#Oxfhugh+U,#Vz hho#Fudp Exwwhu Does anyone know what may have happened, or how I can fix it???