Random Generation without repeat

Hi, I am trying to write a script that will generate a random 5 digit number, using only the digits 1, 2, 3, 4, & 5, and with no repeats. For example: 12345, or 31524, or 24153. At the moment I can make the random 5 digit number, using only the digits 1, 2, 3, 4, & 5, yet I am struggling to get no repeats. So far I have something along the lines of:
set x to some item of "12345"
set y to some item of "12345"
set z to some item of "12345"
set a to some item of "12345"
set b to some item of "12345"
if x = y then
if x ≤ 1 then
set x to x + 1
end if
if x ≥ 5 then
set x to x - 1
end if
else if x = z then
if x ≤ 1 then
set x to x + 1
end if
if x ≥ 5 then
set x to x - 1
end if
else if x = a then
if x ≤ 1 then
set x to x + 1
end if
if x ≥ 5 then
set x to x - 1
end if
else if x = b then
if x ≤ 1 then
set x to x + 1
end if
if x ≥ 5 then
set x to x - 1
end if
else
set itemsOne to x & y & z & a & b
end if
set itemsOne to x & y & z & a & b
itemsOne
Any Ideas??
Thanks for any help you can give,
MrBlobE

Hello
In addition to what others have said.
This sort of script could be done efficiently by class filtering of index list.
The basic is this :
{1, 2, false, 4, false}'s integers --> {1, 2, 4}
{1, 2, false, 4, false}'s some integer --> {1, 2, 4}'s some item --> 2, e.g.
Thus you might try something like this :
--set nn to {1, 2, 3, 4, 5}
set nn to "12345"
return some_permutation(nn)
on some_permutation(aa)
script o
property xx : aa -- source list
property yy : {} -- result list
property kk : {} -- index list
repeat with k from 1 to count my xx
set end of kk to k
end repeat
repeat (count my kk) times
set k to my kk's some integer -- some integer (class filter)
set my kk's item k to false -- suppress the chosen index
set end of my yy to my xx's item k -- extract item by chosen index
end repeat
if my xx's class = list then
return my yy's contents
else
return "" & my yy
end if
end script
tell o to run
end some_permutation
Regards,
H

Similar Messages

  • 6 random numbers without repeat

    I'm trying to make a 6 digit random number generator between 1 and 48. When the user click a button 6 random numbers show up in 6 different textFeilds. The problem is that I don't want the same number twice. How can I generate 6 different random numbers without using return and breaking out of the function?
    import flash.events.Event;
    stop();
    btn.addEventListener (MouseEvent.CLICK, random1);
    function random1 (evt:Event) {
              display1.text = "";
              display2.text = "";
              display3.text = "";
              display4.text = "";
              display5.text = "";
              display6.text = "";
              var r1 = Math.floor(Math.random()*(1+48-1))+1;
              var r2 = Math.floor(Math.random()*(1+48-1))+1;
              var r3 = Math.floor(Math.random()*(1+48-1))+1;
              var r4 = Math.floor(Math.random()*(1+48-1))+1;
              var r5 = Math.floor(Math.random()*(1+48-1))+1;
              var r6 = Math.floor(Math.random()*(1+48-1))+1;
              if (r2 == r1 || r3 == r2 || r4 == r3 || r5 == r4 || r6 == r5) {
                        return;
              var liste:Array = new Array();
              liste.push(r1,r2,r3,r4,r5,r6);
              liste.sort(Array.NUMERIC);
              display1.text = String(liste[0]);
              display2.text = String(liste[1]);
              display3.text = String(liste[2]);
              display4.text = String(liste[3]);
              display5.text = String(liste[4]);
              display6.text = String(liste[5]);

    Here's the code for the approach mentioned with your textfields included
    btn.addEventListener (MouseEvent.CLICK, random1);
    function random1 (evt:Event) {
        var nums:Array = new Array();
        // fill the array of numbers
        for(var i:uint=1; i<=48; i++){
            nums.push(i);
        shuffle(nums);
        // grab the first six in the shuffled array
        var liste:Array = nums.splice(0,6);
        // assign the values to the textfields
        for(var j:uint=1; j<=6; j++){
            this["display"+String(j)].text = String(liste[j]);
    function shuffle(a:Array) {
        var p:int;
        var t:*;
        var ivar:int;
        for (ivar = a.length-1; ivar>=0; ivar--) {
            p=Math.floor((ivar+1)*Math.random());
            t = a[ivar];
            a[ivar] = a[p];
            a[p] = t;

  • Frame Random Shuffle without repeating

    Hi,
    Am beginning an eLearning project (I'm a retired social worker aiming in this lesson to help others) which includes building in AS3 an exercise called the GNAT (Go No/Go Association Task). The GNAT is a test tool that measures people's subconscious attiudes by having them choose (or not choose) by  pressing/touching the spacebar (in this lesson) when they see a specific target word.
    For the first part of the GNAT, a practice exercise: 16 target words (presented one each in its own frame), taken randomly with no repeats from a list or array of 18 words. Frame needs to time out in 1000 ms. If the person reacts by pressing/touching the spacebar when they see a word, it is either scored +1 (depends on the word) or nothing. If pressed, an X or 0 displays for 100 ms (wrong or correct, depending on the word) and then goes immediately to the next random (no repeat) frame and word. If not pressed the timer timeout at 1000 ms goes to the next random (no repeat) frame.
    Whew! For my relatively modest AS3 skills, not sure how to set up a model for this and implement in script. Could also be one dynamic text box in a single frame instead of multiple frames, with the text (target word) changing. But still would need a timer to advance and if pressed, an over-ride of the timer to advance, plus scoring.
    If I can get a basic model working, then I can try to build the main test exercise tool which has 9 target words but these are recycled randomly in a 3:6:3 ratio totaling 70.
    Major challenge!!!
    I've tried various random no repeats using frames but can't get the most basic version to work.
    I would appreciate any help getting started. How best to set this up and begin?
    Regards,
    saratogacoach

    Using frames is not likely to be relevant to what you seem to want to do.  One frame, one textfield, and code is all you should need.
    Just create the array, shuffle it, and pick the first 16 or whatever words in the shuffled array, one at a time as you advance thru the exercise.  If you want a function to shuffle the array you can find the same one often offered in this forum, such as here...
    http://forums.adobe.com/thread/1058786?tstart=0
    If you need help with setting up a Timer, you should not have a problem searching Google for a tutorial (use "AS3 Timer tutorial")

  • How do I generate random numbers from a list of numbers without repeating any number

    I am trying to generate a list of random numbers without any repeating numbers.  For example say the list is from 1 to 15, how do I randomly generate a list of numbers using each number only once?

    pb,
    You can build a randomizer by making a 2-column table with 15 rows. In Column A, Fill with the numbers 1 to 15. In column B Fill with RAND(). Then sort on Column B. There will now be a randomized list of the numbers from 1 to 15 in Column A. You can copy this random list and use it in your application.
    Jerry

  • How to Play One Song Without Repeat?

    I am a new Ipod user, with an 80 GB video version. (I don't think it's one of the latest new models, but the second to last generation. Is that "fifth generation"?)I updated it with the latest firmware, just a few days ago.
    I have used other MP3 players before though. In most respects I find the Ipod superior to the other MP3 players I have used. However, there is one setting, that I have made before on other MP3 players, for instance my old Creative Muvo 4GB (a few years old), which I cannot figure out how to set on my Ipod.
    How does one set the Ipod to play one song, without going on to the next one, and without repeating that one? The default (of course) is to play all the songs in the album or playlist, going on to the next one, when the current song is finished. Looking in Settings, I find one can set "Repeat" to repeat the whole playlist or album when one comes to the end of it, or set it to repeat the same song.
    But---what if one wants to play one song, and then have the Ipod stop (or at least pause), and not automatically go on to the next song, or repeat the same song? Is it possible to set that? I cannot see how. If there is a way to do that, please let me know.
    Some might ask--why would one want to do that? True, for normal use, the default setting is the best one, going on to the next song, as when one listens to a CD. But, there are cases where one might want the Ipod to play one song and stop. I'll explain my reason for wanting to make that setting--I am an elementary school music teacher. In my concerts with the children this upcoming week, I will put the musical accompaniments for my choirs on the Ipod, and play them from it. When the choir is performing a song, at the end of the song, I don't want the Ipod to start playing the next song on the list. I want it to stop or pause at the end. It will be a hassle for me to have to manually stop it at the right moment, and I might miss it, and it will start playing the next song.
    Any way to set it to play one song, and then stop? If so, please tell me.
    If not, I would hope that Apple would add that capability to the next firmware upgrade. Do they read here for user's suggestions? Is there another place to make suggestions for improvement in the Ipod firmware?
    Thank you for your input.

    Thank you for the reply, Chris.
    I thought of that idea, a separate playlist for each song. That would be fine, if I was only playing one song. But I want to have the list of songs ready to play, so was going to put them in a playlist together. I need to be able to get to the next song quickly, without a lot of messing around with the Ipod.
    Is it possible to put playlists within playlists? Then, perhaps I could make an individual playlist for each song, and make a playlist with all those one-song playlists together. If that is possible, it probably still would make it too complicated to go to the next song, probably having to use the menu button to go back to the higher playlist, etc. I want to keep playback simple.
    I may try your idea of creating a blank "song" to put between tracks. (Is there also no way currently otherwise, to put a certain amount of empty space in between tracks?)
    Thanks also for the feedback link. I will send this concern to Apple, and hope they add that capability soon.

  • String random generation for length 3

    Dear Sir,
    How can i generate random generation of alphabets of length 3 in labview?
    ex:adg,beg etc
    Thanks in Advance
    Regards,
    Sai Chitra.

    Hi chitrar,
    Here is a way for caps only:
    1) Use decimal to ASCII numbers for your letters 
    2) Generate a random number from 0-25
    3) Add the result to the first letter (A) position which is 65
    4) Repeat 3 times
    5) Convert to U8 and then use Byte Array to String to get your string
    Note if you want lower case also, change the 25 to 51 and then add 7 if the random number result is greater than 25.
    steve
    Help the forum when you get help. Click the "Solution?" icon on the reply that answers your
    question. Give "Kudos" to replies that help.
    Attachments:
    random alphas.vi ‏9 KB

  • TS3474 bt mistake i disconnected my i-pod nano 6th generation without ejecting it. Now it wont turn on, what can i do?

    By mistake I disconnected my I-pod nano 6th Generation without ejecting it. What can I do?

    from http://www.apple.com/support/ipodnano/assistant/itunes/
    Press the Sleep/Wake button and the Volume Down button for at least 8 seconds until the Apple logo appears. You may need to repeat this step.

  • What is the procedure for a hard boot of my iPod touch 4th generation without itunes, and without computer, and without iPod data screen.?

    What is the procedure for a hard boot of my iPod touch 4th generation
    without iTunes, and without computer, and without iPod data screen?
    6 months after purchase I updated my iPod touch as recommend by iTunes.
    It has not worked since that day.  It frozen (disabled) with a "connect to
    iTunes" icon displayed...that is the only thing it does.  itunes does not
    recognize the iPod.  My Windows7 computer recognizes an Apple device. 
    Other computers recognize the devise but if iTunes resided on that
    computer it did not recognize the iPod
    I suffered a setback with deep depression and am just now getting out of it enough to do something.  The depression prohibited me from taking action.
    I have done every procedure recommended from Apple help and external
    sources.  I did this thoroughly with help for other owners and IT experts,
    Apple employees etc etc.  I and associates have perform reboots utilizing a
    number procedure using only button on the iPod.  These were unsuccessful
    also have performed.
    Please do not ask me to do the usual.
    Online I saw  a process using the buttons on the iPod to completely
    reformat 
    the iPod.  It was NOT the hold buttons for 10 sec let go of one wait 8 sec
    etc.  I can not find the process now...a friend showed it to me in passing
    I have lost contact with him.  This is the procedure, I believe, that with
    enable me to update and use the iPod. 

    You need an internet connection and likely a computer with iTunes but an iPhone, iPad or iPod touch with the FindMy iPhone App may work by:
    If you previously turned on FIndMyiPod on the iPod in Settings>iCloud and wifi is on and connected go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone and use Remote Wipe to erase the contents of your device. If you have been using iCloud to back up, you may be able to restore the most recent backup to reset the passcode after the device has been erased.
    You can also wipe the iOS device by installing the FindMyiPhone app on another iOS device and using that app to wipe the device.
    Otherwise
    Disabled
    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Forgot passcode or device disabled
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:                                                             
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: Back up and restore your iOS device with iCloud or iTunes       
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:           
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        
    If problem what happens or does not happen and when in the instructions? When you successfully get the iPod in recovery mode and connect to computer iTunes should say it found an iPod in recovery mode.
    Yo may have to go to an Apple store or a friend's house with an internet connection and iTunes.

  • HT201263 I have restored my iPad (first generation without retina display) and it finishes restoring software but will not stay on for me to restore the data and then shuts off whenever I try to turn it on. I don't believe that it is charging! HELP!

    Long story about what happened but basically I was using the iPad (first generation without retina display) to watch TV at one point it had 20% battery so I plugged it in then it wasn't charging and I didn't realize so it got to 5% and shut off. I plugged it in to charge it but it just kept shutting down and showing the apple logo, then briefly showing me my home screen before shutting off again. I waited a while to see if it would charge, while it continued to turn off and on by itself. Finally, I unplugged it to see if it had gotten any charge but it just told me to plug it in again. I plugged it into a different charger, same thing. I decided to try connecting it to a computer and it stopped turning on but it did not seem to charge. I tried restoring it as it said in the article. It worked until it got to restoring the iPad from the backup that I had because it immediately shutdown before I could continue. I tried to restore it a second time but still it shut down! I'm so frusturated and I cannot afford to get a new iPad, I need it for school and there is no Apple store for 80 miles nor do I have any insurance or warranty on it! (Obviously considering it's the first iPad to ever come out.) I really don't know what to do! HELP

    Try this Support Article  >  http://support.apple.com/kb/HT1808

  • How can i return to a playlist i stopped without repeating songs already played

    If i am listening to a playlist in shuffle mode, then stop it and play something else, is there a way to return to the playlist and resume it without repeating songs previously played?

    Changing versions often does not cure problems, but it does increase risks.
    * ( Do Not ) [[Install an older version of Firefox]]
    The search options will not be changed by downgrading, but there is a method of changing that without downgrading.
    * See Ed's [/questions/1044599#answer-685295]
    I am not sure the changes in Firefox 35.0.1 would cause your audio issues
    * https://www.mozilla.org/en-US/firefox/35.0.1/releasenotes/
    The first step in troubleshooting that may be to identify the tab or page involved, then try Firefox with only the newtab page and the problem page open.
    IIRC Firefox is intended to continue streaming audio even if a tab does not have focus. That enables users to stream audio in the background whilst browsing. What you hear may be intended behaviour.

  • How to replace a sub vi that is used in many main VIs with another sub vi under a different file name without repeating the replace vi operation?

    Hello,
    I am converting a LV5.1.1 llb to LV7.1 that contains serial sub VIs ("Serial Port Read.vi", "Serial Port Write.vi", and "Bytes at Serial Port.vi") that need to be replaced with the newer VISA serial sub VIs ("VISA Read.vi", "VISA Write.vi", and "VISA Bytes at Serial Port.vi").  The older serial sub VIs are used on many different main VIs under the same llb, and I want to be able to replace all the older serial sub VIs with the equivalent VISA sub VIs in LV7.1 without repeating the same replace VI task on each main VI.  Please advise if it can be done in LV7.1 and how?
    Thank you so much for your help,
    Valen

    If you have the old serial VIs in the llb, make a copy of it and delete them. Then, when you open the top level VI in 7.1, LabVIEW should replace them with compatibility VIs of the same name but using VISA.

  • Random numbers without duplicates

    Hello,
    I'm having trouble locating an explained example for selecting a set of random numbers without duplicates. Specifically, I'm working on this example from Ivor Horton's Beginning Java, chapter 3.
    3. A lottery program requires that you select six different numbers from the integers 1-49. Write a program to do this for you and generate five sets of entries.
    This is not homework, I'm just trying to teach myself Java to eventually work my way up to servlets and JSPs.
    This is what I have so far. I tried to use array sorting but it didn't work (the first three numbers in my entries was always 0), so I commented out that part. I've included sample output after the code. I don't necessarily need the exact code although that would be nice; I just need at least an explanation of how to go about making sure that if a number has been picked for an entry, not to pick it again.
    Thanks for any help,
    javahombre
    package model;
    import java.util.Random;
    import java.lang.Math.*;
    import java.util.Arrays;
    public class Lottery {
    public static void main(String[] args) {
    // Lottery example.
    // We need the following data:
    // - An integer to store the lottery number range (in this case 59).
    // - A mechanism to choose a number randomly from the range.
    // - An array to store the entries (6 different numbers per entry).
    // - A loop to generate 5 sets of entries.
    int numberRange = 59;
    int currentPick = 0;
    int[] entry = new int[6]; // For storing entries.
    //int slot = -1; // For searching entry array.
    Random rn = new Random();
    for (int n = 0; n < 5; n++)
    // Generate entry.
    for (int i = 0; i < 6; i++)
    currentPick = 1 + Math.abs(rn.nextInt()) % numberRange;
    //Arrays.sort(entry);
    //slot = Arrays.binarySearch(entry, currentPick);
    //System.out.println("i: " + i + "\t| slot: " + slot + "\t| pick: " + currentPick + "\t| compare: " + (slot < 0));
    // Add the current pick if it is not already in the entry.
    //if (slot < 0)
    entry[i] = currentPick;
    System.out.println("pick entered: " + currentPick);
    // Output entry.
    System.out.print("Entry " + (n + 1) + ": ");
    for (int j = 0; j < 6; j++)
    System.out.print(entry[j] + "\t");
    System.out.println("");
    // Set the array contents back to 0 for next entry.
    Arrays.fill(entry,0);
    Sample output (notice duplicates, as in Entry 3):
    pick entered: 11
    pick entered: 29
    pick entered: 33
    pick entered: 8
    pick entered: 14
    pick entered: 54
    Entry 1: 11     29     33     8     14     54     
    pick entered: 51
    pick entered: 46
    pick entered: 25
    pick entered: 30
    pick entered: 44
    pick entered: 22
    Entry 2: 51     46     25     30     44     22     
    pick entered: 49
    pick entered: 39
    pick entered: 9
    pick entered: 6
    pick entered: 46
    pick entered: 46
    Entry 3: 49     39     9     6     46     46     
    pick entered: 23
    pick entered: 26
    pick entered: 2
    pick entered: 21
    pick entered: 51
    pick entered: 32
    Entry 4: 23     26     2     21     51     32     
    pick entered: 27
    pick entered: 48
    pick entered: 19
    pick entered: 10
    pick entered: 8
    pick entered: 18
    Entry 5: 27     48     19     10     8     18     

    NOTE: the array reference to [ i ] seems to be misinterpreted as italics by the posting form. I've reposted the message here, hopefully it will show the code properly.
    Thanks again,
    javahombre
    Hello,
    I'm having trouble locating an explained example for
    selecting a set of random numbers without duplicates.
    Specifically, I'm working on this example from Ivor
    Horton's Beginning Java, chapter 3.
    3. A lottery program requires that you select six
    different numbers from the integers 1-49. Write a
    program to do this for you and generate five sets of
    entries.
    This is not homework, I'm just trying to teach myself
    Java to eventually work my way up to servlets and
    JSPs.
    This is what I have so far. I tried to use array
    sorting but it didn't work (the first three numbers in
    my entries was always 0), so I commented out that
    part. I've included sample output after the code. I
    don't necessarily need the exact code although that
    would be nice; I just need at least an explanation of
    how to go about making sure that if a number has been
    picked for an entry, not to pick it again.
    Thanks for any help,
    javahombre
    package model;
    import java.util.Random;
    import java.lang.Math.*;
    import java.util.Arrays;
    public class Lottery {
    public static void main(String[] args) {
    // Lottery example.
    // We need the following data:
    // - An integer to store the lottery number range (in
    this case 59).
    // - A mechanism to choose a number randomly from the
    range.
    // - An array to store the entries (6 different
    numbers per entry).
    // - A loop to generate 5 sets of entries.
    int numberRange = 59;
    int currentPick = 0;
    int[] entry = new int[6]; // For storing entries.
    //int slot = -1; // For searching entry
    array.
    Random rn = new Random();
    for (int n = 0; n < 5; n++)
    // Generate entry.
    for (int i = 0; i < 6; i++)
    currentPick = 1 + Math.abs(rn.nextInt()) %
    numberRange;
    //Arrays.sort(entry);
    //slot = Arrays.binarySearch(entry, currentPick);
    //System.out.println("i: " + i + "\t| slot: " + slot +
    "\t| pick: " + currentPick + "\t| compare: " + (slot <
    0));
    // Add the current pick if it is not already in the
    entry.
    //if (slot < 0)
    entry[ i ] = currentPick;
    System.out.println("pick entered: " + currentPick);
    // Output entry.
    System.out.print("Entry " + (n + 1) + ": ");
    for (int j = 0; j < 6; j++)
    System.out.print(entry[j] + "\t");
    System.out.println("");
    // Set the array contents back to 0 for next entry.
    Arrays.fill(entry,0);
    Sample output (notice duplicates, as in Entry 3):
    pick entered: 11
    pick entered: 29
    pick entered: 33
    pick entered: 8
    pick entered: 14
    pick entered: 54
    Entry 1: 11     29     33     8     14     54
    pick entered: 51
    pick entered: 46
    pick entered: 25
    pick entered: 30
    pick entered: 44
    pick entered: 22
    Entry 2: 51     46     25     30     44     22
    pick entered: 49
    pick entered: 39
    pick entered: 9
    pick entered: 6
    pick entered: 46
    pick entered: 46
    Entry 3: 49     39     9     6     46     46
    pick entered: 23
    pick entered: 26
    pick entered: 2
    pick entered: 21
    pick entered: 51
    pick entered: 32
    Entry 4: 23     26     2     21     51     32
    pick entered: 27
    pick entered: 48
    pick entered: 19
    pick entered: 10
    pick entered: 8
    pick entered: 18
    Entry 5: 27     48     19     10     8     18

  • Randomize/shuffle array item without repeat actionscript 3.0

    i am creating a question and answer quiz using flash cs3 and actionscript 3.0.
    i have a large array of question, i wish to put it into xml document
    (can xml document be reside in the flash file itself?i thought ive seen someone did that.)
    ok,my main problem is to shuffle the questions without repeat until all questions were asked. i have worked on this tutorial,and it does great shuffling without repeat. http://www.flashandmath.com/howtos/deal/
    but,i wish to ask one question at once. i have looked into the option to shuffle frames, but i think about how can i count the score of the quiz at the end of it?
    can anyone tell me the best way of doing this?
    many thanks 

    . i have looked into the option to shuffle frames,
    you can`t really shuffle frames in flash, you have to tell the playhead of your movie to jumpp to a specific frame.
    so if you have say 20 Questions that are ordered in 20 kjeyframes along the main Timeline. you will have an array o Numbers from 1-20 that is shuffled by a function like you mentioned above.
    Then in the function that evaluates your answers that targets this aray as a pointer to where to go next.
    The pointer could be a simple Number, that describes the position of one specific number in this array, like so:
    //At the beginning of your quiz
    var randArray:Array = [1...20];
    var pointer:int = 0;
    var points:int = 0;
    var right:Boolean= false;
    //in the function that evaluates your answer
    function evaluateAnswer():void{
       if(right){
       points+=1;
    else{
    //don`t add Points
    //this will choose the next frame from your shuffled Array
    pointer++;
    if(pointer<=20){
    this.gotoAndPlay(randArray[pointer]);
    else{
    //when the last question is answered do something in a funtion that shows the result
    showResult();

  • How can i transfer iPhone 3G photo to iPhoto without repeating the same photo to iPhoto?

    How can i transfer iPhone 3G photo to iPhoto without repeating the same photo to iPhoto?

    Sorry, you question doesn't make sense. If you're trying to import photos, in your camera roll, to iPhoto, iPhoto doesn't import them twice.

  • The new appearance of the Notes App is really disappointing. I used it for lists and now it just makes my notes appear to be random paragraphs without visual separation.  Am I missing anyway to customize the App?

    The new appearance of the Notes App is really disappointing. I used it for lists and now it just makes my notes appear to be random paragraphs without visual separation.  Am I missing anyway to customize the App?

    No, you can't customize it.  Try different apps available in the App Store.

Maybe you are looking for

  • Launch a splash screen when an iPhone app starts

    Hi, I am trying to make a simple game for the iPhone, and when the app launches, I want a splash screen with instructions to come up. I also want the user to be able to push anywhere on the screen to dismiss it. However, the splash screen doesn't loa

  • Spry Horizontal drop downs not working in Chrome or FF

    Hi, I used the Spry Horizontal Drop downs, and they work fine locally and in IE, but not in Chrome or FF, you can't see the drop down sub menus. I'm using DW cs3, updated spry 1.6.1 Here is a link to the site http://youcanseeithere.com/spa4/index.htm

  • What shall I do with my set up and new HD?

    I just bought a new 250GB USB 7200RPM HD....finally! I have often gotten the "HD too slow" error with Logic Express. Should I just move the entire OS and all Logic Express software and components over to the new drive? Use Logic Express on the new HD

  • Is it possible to define a new enumeration format?

    Hi there, I'd like to know if there is an chance to define a new enumeration format. I hope that "enumeration format" is the right translation for "Nummerierungsformat" from the german language. What I want to do habe is an enumeration that contains

  • Kill Session option is not rac aware?

    Connected to a RAC db, tried to kill session but SD kept complaining that session doesn't exist. It seems it shows sessions from gv$session but while issuing kill, it assumes session on local node. Would it not be possible to enhance the kill to use