HT5449 Cannot Dictate "New Line" for a return key stroke.

When using dictation I can't get "New Line" to work. It simply types this phrase! The "New Paragraph" command works, but adds all these additional spaces into my text. Has anybody got ideas on how to resolve? Is there another way to dictate a "return key"?

I understand.
Perhaps Apple Support in Australia would be willing to answer that one for you.  Their phone number is:
(61) 1-300-321-456
Or I wonder if there is some term used in Australia that means "new line" that might work (such as "return").  "Return" does not generate a new line here.

Similar Messages

  • Removing new lines and carriage returns

    Hi,
    SO I am new to regular expressions in java and I want to remove all the new lines and carriage returns from some text, and change them into <p>
    I have tried,
    Pattern pat = Pattern.compile("\n");
    Matcher mat = pat.matcher(text);
    StringBuffer sb = new StringBuffer();
    boolean result = mat.find();
    while (result){
    mat.appendReplacement(sb,"<p>");
    result = mat.find();
    mat.appendTail(sb);
    text=sb.toString();
    But it seems to have no effect. Anyone know what I'm doing wrong?
    Cheers
    Sandra

    Hello, i've got the same problem. I want to replace "carriage return" and "new line" from an text file. and i use the replace all function for a String object. The problem is, if i call the replace function like this:
    row = row.replaceAll ("\\r", "<p>");
    The "carriage return" is replaced, but not with the "<p>" characters, only with nothing.
    Lines from my original textfile:
    This is an example.
    I want to replace.
    After replacing with the function call row = row.replaceAll ("\\r", "<p>");
    This is an example.I want to replace.
    What is wrong. If i insert tab spaces and replace them, everything is fine. it is abug in my Java Version?
    I use j2re1.4.2_05
    I hope, anybody can help me

  • Cannot Add new line using BI IP query

    Hi All,
    We have created a planning application (BI IP Query) and used it in VC 7.1 model using BI Query Wizard service. Now we are able to customize existing rows ( existing rows are using flat file upload)... we can able to change the existing record values and save it.
    But we are not able to add new line... its going to dump... We are able to add new line using WAD with same query but not in VC 7.1
    This issue is same as below 2 threads...
    Re: How to create new records through a VC form in an input-ready query??
    Re: Cannot add new records through VC form when consuming IP write back query?
    Thanks,
    PradeeP

    Its working now... SAP has given the fix (patch) for this issue when we deployed it, everything is working fine... I think they will release this fix (patch)soon...
    Raise an Sap OSS message for solution

  • CLIENT_TEXT_IO : cannot insert new line into a text file

    Facts:
    Developer 10g
    AS 10g
    Web utility
    Problem:
    i am traying to
    Open a text file. using CLIENT_TEXT_IO.FOPEN
    insert a record in to a text file using CLIENT_TEXT_IO.PUTF
    insert a new line using chr(10) or CLIENT_TEXT_IO.NEW_LINE
    or CLIENT_TEXT_IO.put_line
    insert the next record
    Close the file.
    all work except insert a new line
    Why !!!
    it was Working fine in 6i, but now in 10g and Webutil is not working
    plz help

    Hi you can put a new line in a text file using System.getProperty("line.separator"). This implementation will work for every OS.
    import java.io.*;
    class Demo{
    public static void main(String args[]) throws Exception {
    FileWriter fr = new FileWriter("FileDemo.txt");
         fr.write("AAAAAAAAAA");
    fr.write(System.getProperty("line.separator"));
    fr.write("AAAAAAAAAAA");
    fr.close();
    }

  • Add Empty New Line for ePub Using Adobe InDesign CS5.5

    Hello
    i am new to ePub, i did test ePub to see the possubilities and did great success.
    i am facing one issue i do not how to do that.
    i need to creat empty new line betwwn the title and the body text, i know the hardest way is to make one frame for title and other frame for body, this will take much time to complete the book.
    i tried to add empty lines using the Enter button on my Keyboard, but does not work.
    thanks in advance

    Do you know HTML and CSS? If not, you’re not likely to have much success with EPUB.
    If you do, you’ll need to crack open the epub and change the bottom margin for the title or the top margin for the text.
    Bob

  • I cannot load newer version for my iPhone 3GS.

    Hey, I cannot load the newer versions for my iPhone 3GS for some time now. Somehow it says there is a problem with the i-net connection, but that can't be it. Please help me someone!
    Thank you!

    Have you tried to diable or even uninsall your antivirus software. Also you might want to try this article http://support.apple.com/kb/ts3297

  • Set to new line for each label/text combination ?

    Dear All,
    Wish to enquire how to set to next line for each label/text combination in relation to the following code ? Please advise.
    import java.awt.*;
    public class ScanImageForm {
    public static void main(String args[]) {
         ScanImageForm scanImageForm = new ScanImageForm();
         scanImageForm.Display();
    public void Display() {
         Frame frame = new Frame();
         Panel panel = new Panel();
         frame.add(panel);
         Label labelVehNo = new Label("Vehicle No:");
         Label labelDateofLoss = new Label("Date of Loss:");
         Label labelImageType = new Label("Image Type:");
         Label labelImageDesc = new Label("Image Desc:");
         TextField textVehNo = new TextField();
         TextField textDateofLoss = new TextField();
         TextField textImageType = new TextField();
         TextField textImageDesc = new TextField();
         textVehNo.setColumns(10);          
         textDateofLoss.setColumns(10);
         textImageType.setColumns(10);
         textImageDesc.setColumns(30);
         panel.add(labelVehNo, BorderLayout.WEST);
         panel.add(textVehNo, BorderLayout.CENTER);
         panel.add(labelDateofLoss, BorderLayout.WEST);
         panel.add(textDateofLoss, BorderLayout.CENTER);
         panel.add(labelImageType, BorderLayout.WEST);
         panel.add(textImageType, BorderLayout.CENTER);
         panel.add(labelImageDesc, BorderLayout.WEST);
         panel.add(textImageDesc, BorderLayout.CENTER);
         frame.setSize(500, 500);
         frame.setVisible(true);

    if u want to set label and textfield side by side .
    then u have to set The layout is GridLayout().
    to ur example
    Panel p=new Panel(new GridaLayout(3,2))
    means three rows to columns.

  • Writing new lines or carrige returns to a file

    I am try to use either FileOutputStream or FileWriter to write a String to a text file. Only any \n or \r characters within the string open as square blocks in notepad when the string is writen, and all the text is on one line.
    example code:
    FileWriter writer = new FileWriter(name + ".txt", false);
    String writeString = "Name: " + name + "\nSurname: " + surname;
    writer.write(writeString, 0, writeString.length());
    I am using Win98.

    Try using a BufferedWriter... it has a method named newLine() that writes a new line.. below is the api:
    public void newLine()
    throws IOException
    Write a line separator. The line separator string is defined by the system property line.separator, and is not necessarily a single newline ('\n') character.
    Throws:
    IOException - If an I/O error occurs

  • Cannot input new number for depost

    Hi,
    My client cannot input new deposit. 
    When input new deposit, deposit # : 520900001 is appear on the screen. 
    When click add, the following message appear :
    "This entry already exist in the following table 'Deposit' (ODPS)."
    On document numbering screen, it shows 520900001 is the next no.
    Also, Check into ODPS file there's no. deposit # : 520900001.
    SAP version : 2005, SP 01, PL 39
    Thank you very much in adavance.
    Best regards,
    Surya

    Hi Surya,
                 Please perform the following first;
    Goto> Administration> System Initialisation>General Settings>Services--> Perform Data Check
    Check this, log out of sap and log in again. Let me know if the problem still persists.
    Regards,
    Joseph

  • Cannot create opportunity lines for an opportunity using Web Services 2.0

    When working with Web Services 2.0 API every object is exposed without any child objects, this means that if we want to query/update/create/delete child objects that child object has to be exposed via WSDL.
    I searched for the opportunity lines child object (also known as revenue lines) in the available WSDL's in the application and also in the documentation and I can’t find it anywhere.
    I also checked the opportunity WSDL and it does not contain any reference to the opportunity lines?
    How do I create opportunity lines for an opportunity using the Web Services 2.0 API???

    When working with Web Services 2.0 API every object is exposed without any child objects, this means that if we want to query/update/create/delete child objects that child object has to be exposed via WSDL.
    I searched for the opportunity lines child object (also known as revenue lines) in the available WSDL's in the application and also in the documentation and I can’t find it anywhere.
    I also checked the opportunity WSDL and it does not contain any reference to the opportunity lines?
    How do I create opportunity lines for an opportunity using the Web Services 2.0 API???

  • I Just Added A New Line For My Sister, new # isnt there?

    Well, my family had added another line to our plan. We have ordered her phone already, and completed the whole transaction. Then I went to my verizon account, and I checked all our phone numbers, and the new line we added isn't there? Is the number supposed to show up later on? I have just ordered this morning.

    The same thing just recently happened to me on my account, I received the phone and everything but I couldn't activate it via online or by phone so had to call customer service, they activated right then. Just keep checking your order status online to make sure everything processed fine because it may just be activation issue they are having.

  • Save for Web keyboard key stroke not worky

    I'd swear I've asked or seen this discussed in these forums...but I can find no thread, even when I search for my own screen name. At any rate, I think it also happened to me back in version 6. I'm now in version 8 on a Mac.
    The symptoms are the same as the last time this happened. The "shortcut" key strokes (on the Mac) are command + shift + option + S (probably use 'alt' instead of 'option and "control' instead of 'command' on Windows?). This will usually show a brief darkening of the File menu, but nothing else happens. Until...the same keys are pressed again! Of course, mousing to the menu item works fine, but I have managed to avoid carpal tunnel syndrome and still press all four keys with one hand! Sometimes I get my cat to help...
    Since Adobe is gracious enough to provide about three dozen various pref files, it should be a breeze to start archiving them and deleting the originals. NOT! However, in my searching for the likely pref file, I have discovered that the "Adobe Save For Web 8.0 Prefs" file seems to be AWOL on my System! I have over a dozen backups of that file in Time Machine, despite the fact that they all show exactly the same Modified date, which would normally be the only reason TM would save another copy of the file. This may also indicate why the settings for the Save For Web dialog never remember the last used settings; the file thinks it is getting written to but never changes its Modified date even thought that 'state' is obviously recognized by the OS. But that's all beside the point and I digress...
    SO...does anyone remember the 'trick' for getting PSE 6/8 to remember the Save For Web keystrokes the first time they are used, instead of waiting for 'verification?'
    Thanks!

    Barbara B. wrote:
    Uh oh. You should have had an uninstaller in the PSE 8 folder in applications. I'm afraid you may have set yourself up for bigger problems by doing it this way. You may well find that you will eventually need to download and run the CS4 cleanscript to get straightened back out again.
    You may be correct, but I've had no other problems after all the different un-install methods. The only pieces that are hard to find are those that Adobe chooses to hide deep in System areas. I suppose since they were one of the first Mac developers, they think they have special capabilities to put stuff any and every where they want. As well as special dispensation to do things anti-Mac ways. I can't claim to be a power-user, but I have never, ever felt the need to purchase/use any special "uninstaller" app. And I can't think of another app I've ever owned that even needed an "uninstaller" for it. That includes Canvas, php, Apache setups, etc. Frankly, and this is simply my opinion and obviously of little importance to absolutely no one else, the way Adobe does things seems to be extremely un-organized, not-well-thought-out and downright non-Mac. The only thing even marginally close to their confusing instal/uninstall process is Stanford's Folding@home set up. It sometimes requires a few Terminal commands...
    I will perform a search for that CS4 "clearscript" thing, however. Thanks!
    Even the response I got from my Support post assured me that...
    reset/restore the Preferences, click Yes or OK . Now try to use the "Save for Web" keyboard command by pressing "Alt+Shift+Crtl+S". I am positive that after following the above steps your issue will be resolved .
    OK, I get the rest/restore step. but what does the "alt+shift+Crtl+S" have to do with anything? It certainly is not the keyboard short cut for the Mac version of Elements. Perhaps the chap didn't notice the details in my message or the hardware/software information that came with my request for help. I find it strange that somehow the language differences cause the tech's positive belief that his steps would fix the issue that he also presents:
    If the issue is still not resolved then please send us the below mentioned information so that we can provide you with the best possible resolution:-
    1. Have you recently made any changes to your computer?
    2. Are you logged in as administrator ?
    3. Does the issue persist on another system or another user account ?
    4.     Do you get any error message while pressing the combination of "Alt+Shift+Crtl+S" keys on the keyboard? if yes then send us the screen shot of the error message that you are getting
    5.     Please provide the exact system Configuration with details along with the Versions.
    Every single one of those questions was included with the initial message I sent.
    I suspect that the problem is, indeed, in my System, somewhere. I installed Elements on my wife's MBP and it operated normally, even the command+option(alt)+shift+S command. So, when I get some time this week, I'll start up in Safe mode and see if that helps. If not, I'll start removing third-party Pref Panels and apps, a few at a time. If none of that helps, I may try retrieving files from Time Machine. As a last effort, I can always do an Archive and (re)Install of Snow Leopard. I'm just not sure it's worth all the effort to get one measly short cut... The only thing I know for sure is that I will not be seeking any more help from Adobe's "tech support." Why bother, they don't/can't even read the messages their own system sends!

  • Creating a new line for a row layout

    Hi
    i am building a web service based OA page...
    For this i have a created a VO with transient variables which holds the values from webservice.
    Now i have a row layout region where i key in some values which are required to call webservice..
    using this values webservice is called..and object is returned from webservice ,from which vo transient attributes get the values..
    now my requirement is i need to create one more line to key in more rows...at any point of time user can create a new row to query a different item ....or existing item..
    The queried results can be seen in the underlying table region which holds the VO attributes discussed above..
    Please help in this...how to achieve above mentioned functionality...
    If u need more clarifications please write to me...

    If you can provide a screenshot of your page then it will be helpful to understand the problem.
    Cheers
    Ganesh

  • Utl file - I need to get new line for each value

    I wrote an utl_file package to generate an html file. It is working fine, however, I am having difficulty formating my output.
    I like to have values returned one line at a time. For instance,
    Name:Sam Ok
    area code: 407
    phone: 333-4444
    picture: display here.
    It is displaying values on one line.
    Please help if you can. Here is the code.
    Thanks,
    sam
    CREATE OR REPLACE PROCEDURE Cr_Movie_PRV_HTML(
    P_Filename IN varchar2,
    p_Id IN mist_physician.mp_phys_Id%TYPE
    AS
    CURSOR C_mist IS
    SELECT mp_name,
    mp_update_datetime,
    mp_area_code,
    mp_phone,
    mp_address,
    mp_fax
    FROM Mist_Physician
    WHERE Mp_phys_id = P_Id;
    v_mp_name mist_physician.mp_name%type;
    v_mp_update_datetime mist_physician.mp_update_datetime%type;
    v_mp_areacode mist_physician.mp_area_code%type;
    v_phone mist_physician.mp_phone%type;
    v_mp_address mist_physician.mp_address%type;
    v_mp_fax mist_physician.mp_fax%type;
    V_FileHandle UTL_FILE.FILE_TYPE; -- This will be used to store the filename
    BEGIN
    --Open The specified file to write into and get V_FileHandle.
    V_FileHandle := UTL_FILE.FOPEN('c:\mist_info', P_FileName, 'w');
    IF Utl_File.IS_OPEN(V_FileHandle) = FALSE THEN
    RAISE_APPLICATION_ERROR(-20000,'Error opening '||P_FileName||' for WRITE');
    END IF;
    Let's build the header file that will be inside the file that will  identify why thus file is created.
    utl_file.put_line(V_FileHandle,'#---------------------------------------');
    utl_file.put_line(V_FileHandle,'Name'||' : '||mist_Rec.mp_name);
    utl_file.put_line(V_FileHandle,'Date');
    utl_file.put_line(V_FileHandle,'Phone');
    utl_file.put_line(V_FileHandle,'Address');
    utl_file.put_line(V_FileHandle,'# Generated on: '||to_char(sysdate, 'Mon DD, YYYY (Dy) HH:MI:SS AM'));
    utl_file.put_line(V_FileHandle,'#-----------------------------------------');
    utl_file.put_line(V_FileHandle,' ');
    -- Next we will query data from the Movie table. Only data that are relevant.
    -- Using PUT_LINE, write text with the field arguments out to the file
    BEGIN
    FOR Mist_Rec IN C_Mist LOOP
    UTL_FILE.PUT_LINE(V_FileHandle,'Name'||':'||Mist_Rec.Mp_Name||','||'<img src=c:/our_website/co16.jpeg>');
    END LOOP;
    SELECT mp_name,
    mp_update_datetime,
    mp_area_code,
    mp_phone,
    mp_address,
    mp_fax
    INTO v_mp_name,
    v_mp_update_datetime,
    v_mp_areacode,
    v_phone,
    v_mp_address,
    v_mp_fax
    FROM Mist_Physician
    WHERE Mp_phys_id = P_Id;
    END;
    -- Now Close the file
    UTL_FILE.FCLOSE( V_FileHandle);
    EXCEPTION
    WHEN Utl_File.Invalid_Path THEN
    RAISE_APPLICATION_ERROR(-20001,'Error: Invalid Path');
    WHEN Utl_File.Invalid_Operation THEN
    RAISE_APPLICATION_ERROR(-20002,'Error: Invalid File Operation');
    IF Utl_File.IS_OPEN(V_FileHandle) = TRUE THEN
    Utl_File.FCLOSE(V_FileHandle);
    END IF;
    WHEN Utl_File.Invalid_Mode THEN
    RAISE_APPLICATION_ERROR(-20003,'Error: Invalid Mode');
    WHEN OTHERS THEN
    DBMS_OUTPUT.PUT_LINE('ERROR: ' || SQLCODE || '-'||SQLERRM);
    END Cr_Movie_PRV_HTML;
    /**********************End Of Mist*********************/

    Syntax is::
    UTL_FILE.NEW_LINE(filename, nuber-of-lines)
    CREATE OR REPLACE PROCEDURE Cr_Movie_PRV_HTML(
    P_Filename IN varchar2,
    p_Id IN mist_physician.mp_phys_Id%TYPE
    AS
    CURSOR C_mist IS
    SELECT mp_name,
    mp_update_datetime,
    mp_area_code,
    mp_phone,
    mp_address,
    mp_fax
    FROM Mist_Physician
    WHERE Mp_phys_id = P_Id;
    v_mp_name mist_physician.mp_name%type;
    v_mp_update_datetime mist_physician.mp_update_datetime%type;
    v_mp_areacode mist_physician.mp_area_code%type;
    v_phone mist_physician.mp_phone%type;
    v_mp_address mist_physician.mp_address%type;
    v_mp_fax mist_physician.mp_fax%type;
    V_FileHandle UTL_FILE.FILE_TYPE; -- This will be used to store the filename
    BEGIN
    --Open The specified file to write into and get V_FileHandle.
    V_FileHandle := UTL_FILE.FOPEN('c:\mist_info', P_FileName, 'w');
    IF Utl_File.IS_OPEN(V_FileHandle) = FALSE THEN
    RAISE_APPLICATION_ERROR(-20000,'Error opening '||P_FileName||' for WRITE');
    END IF;
    utl_file.put_line(V_FileHandle,' ');
    -- Next we will query data from the Movie table. Only data that are relevant.
    -- Using PUT_LINE, write text with the field arguments out to the file
    BEGIN
    FOR Mist_Rec IN C_Mist LOOP
    --Let's build the header file that will be inside the file that will
    --identify why thus file is created.
    UTL_FILE.PUTF
    (file_handle, %s,'--------------------------');
    UTL_FILE.NEW_LINE(V_FileHandle, 1)
    UTL_FILE.PUTF (file_handle, '%s','Name'||':'||Mist_Rec.Mp_Name, )
    UTL_FILE.NEW_LINE(V_FileHandle, 1)
    .(Chang the below all u will get as u required)
    'Date'||' : '||Mist_Rec.mp_update_datetime,
    'Area Code'||' : '||Mist_Rec.mp_area_code,
    'Phone'||' : '||Mist_Rec.mp_phone,
    'Address'||' : '||Mist_Rec.mp_address,
    'Fax'||' : '||Mist_Rec.mp_fax,
    '# Generated on: '||to_char(sysdate, 'Mon DD,
    YYYY (Dy) HH:MI:SS AM')),
    '<img src=c:/our_website/co16.jpeg>'),
    -- UTL_FILE.PUT_LINE(V_FileHandle,'Name'||':'||Mist_Rec.Mp_Name||','||'<img
    --src=c:/our_website/co16.jpeg>');
    END LOOP;
    SELECT mp_name,
    mp_update_datetime,
    mp_area_code,
    mp_phone,
    mp_address,
    mp_fax
    INTO v_mp_name,
    v_mp_update_datetime,
    v_mp_areacode,
    v_phone,
    v_mp_address,
    v_mp_fax
    FROM Mist_Physician
    WHERE Mp_phys_id = P_Id;
    END;
    -- Now Close the file
    UTL_FILE.FCLOSE( V_FileHandle);
    EXCEPTION
    WHEN Utl_File.Invalid_Path THEN
    RAISE_APPLICATION_ERROR(-20001,'Error: Invalid Path');
    WHEN Utl_File.Invalid_Operation THEN
    RAISE_APPLICATION_ERROR(-20002,'Error: Invalid File Operation');
    IF Utl_File.IS_OPEN(V_FileHandle) = TRUE THEN
    Utl_File.FCLOSE(V_FileHandle);
    END IF;
    WHEN Utl_File.Invalid_Mode THEN
    RAISE_APPLICATION_ERROR(-20003,'Error: Invalid Mode');
    WHEN OTHERS THEN
    DBMS_OUTPUT.PUT_LINE('ERROR: ' || SQLCODE || '-'||SQLERRM);
    END Cr_Movie_PRV_HTML;
    /**********************End Of Mist*********************/

  • Writing new lines or carrige returns to a text file

    I am try to use either FileOutputStream or FileWriter to write a String to a text file. Only any \n or \r characters within
    the string open as square blocks in notepad when the string is writen, and all the text is on one line.
    example code:
    FileWriter writer = new FileWriter(name + ".txt", false);
    String writeString = "Name: " + name + "\nSurname: " + surname;
    writer.write(writeString, 0, writeString.length());
    I am using Win98.

    Notepad is a Windows-bigoted program and requires \r\n to denote the end of a line. (Or is it \n\r? Can't remember.) If you only give it \n (as in your example) it doesn't understand and displays those boxes. Other Windows text editors do a better job.
    If you wrap your FileWriter in a PrintWriter, then you can just use its "println" method, which will take care of line-ending characters for you (it understands which OS you are running under and writes whatever combination of \n and \r is appropriate). Like this:FileWriter writer = new FileWriter(name + ".txt", false);
    PrintWriter printer = new PrintWriter(writer);
    String writeString = "Name: " + name;
    writer.println(writeString);
    writeString = "Surname: " + surname;
    writer.println(writeString);

Maybe you are looking for