How do I locate a line of text by line number in Pages?

I am trying to upload an ePub book to iTunes via iTunes Producer, only it won't authenticate my file, and cites an error on "Line 339 / Column 118" in my document.
However, when I am in the document, I can not figure out how to locate that line to see what error may be on it. I have searched throughout Pages.
I have sent an error report to iSupport, but haven't heard back yet.
Thanks!

After "blah blah blah" hit shift-tab then type "[ ] Yes [ ] No
Further, you can then define the tab character to be dot leaders, low-lining dashes, character underscore, leave as blank space or whatever you want.

Similar Messages

  • How do i send hyperlink to a text box within the same page

    how do i send hyperlink to a text box within the same page on iweb

    It's called an anchor. It's often discussed in this forum.
    2 days ago : anchor
    Here's a search of the past year : anchors

  • How to open an Applet from a text link in a HTML Page

    Hi There
    How to open an Applet from a text link
    in a HTML page
    For example I have a HyperLink "Open Applet"
    When a user clicks that link i want to open a
    Applet in a AWT Window.
    How can i do this
    Will any one help me?
    -Ramya

    u can use javascript for that
    <SCRIPT language="javascript">
    function loadAppNow() {
    document.write("<APPLET ......></APPLET>")
    </SCRIPT>
    LoadApplet
    this will overwrite the applet on current window
    There are many good ways other than document.write to open in same window. I don't remember the syntax right now.
    Plz. refer to javascript tutorial for that.
    even you can insert the applet while retaining previous contents. its quite easy actually.
    regards....bhart

  • How to go to related line number

    hi all,
    Cause: FDPSTP failed due to ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    ORA-06512: at "APPS.WSH_UTIL_CORE", line 2093
    ORA-06512: at "APPS.UML_POS_ORDER_IMPORT_PKG", line 923
    This is package and I would like how can I go to line number 923 to check quick results.
    Thanks

    user9275313 wrote:
    hi all,
    Cause: FDPSTP failed due to ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    ORA-06512: at "APPS.WSH_UTIL_CORE", line 2093
    ORA-06512: at "APPS.UML_POS_ORDER_IMPORT_PKG", line 923
    This is package and I would like how can I go to line number 923 to check quick results.Open the package in the editor of your choice and use the editor's build in ability to go to the appropriate line.
    If the package is wrapped or a built in oracle package, you may struggle to open it, but then that would imply that either there's a bug in the package (ensure you're database is patched and check oracle support for known issues), or you're more likely calling procedures/functions in the package with the wrong parameters.

  • How to get input source line number

    I wrote a XSLT transformation that checks the input XML for errors.
    When the transformer finds a problem, it can terminate with <xsl:message terminate="yes">, which outputs the line number within the transformer XML source. I do so in my implementation to indicate errors.
    But i need to output the line number of the input source, not that of the transformer source, because this is the location of the error.
    Anybody knows how to do this?
    How can i get the current line number of the input source XML text?

    Hello Fritz!
    XALAN reads the entire input file (SAX) before starting with transformation.
    So overriding the input stream is no way to find this line number.
    I think this would have to be a built-in XSLT functionality within the tag "xsl:message".

  • How do I get the line number of the sales order and how do I save info?

    I am trying to create a form that is able to be called from a right click on the sales order matrix and will display some of the user defined fields associated with the line.
    I've managed to create a form and add a menu option to the right click but I'm now stuck because of the following:
    1. How to I know which line the user selected? I need the REAL Line Number from the RDR1 table because I need to use it on the data filter of the form.
    2. I hard coded a line to just to see if I can load a form and it appears to load and bind the data to the controls, but how do I save changes made? There are several text fields, combo boxes, and a picture control.

    Hi Coleman,
    1. The pVal returned form a menu event does no provide the LineId, but a pVal from a Item Event does. I suggest you use a DoubleClick or Control + Click on the Line to trigger an event that you can catch and use to launch your form.
    2. Please note that if the Sales Order line is closed you'll not be able to update the values. If it's not, then you need to instantiate a Sales Order document, get the correct document with the GetByKey method and update whatever fields you need.
                    Dim oSalesOrder As SAPbobsCOM.Documents = oCompany.GetBusinessObject(BoObjectTypes.oOrders)
                    If oSalesOrder.GetByKey(docentry) = True Then
                        oSalesOrder.Lines.SetCurrentLine(pVal.Row - 1)
                        oSalesOrder.Lines.UserFields.Fields.Item("U_MyUDF").Value = ""
                        oSalesOrder.Update()
                    End If
    Regards,
    Vítor Vieira

  • How did I get 25 lines on my Pages document?

    I am writing a reference page for APA 6th edition and my document has to have one inch margins with a header at the top and have 25 lines per page.... I don't know how to go format that on Pages.

    Simple enough: Set your margins to 1 inch in Documents and your text to Line Spacing that gets you 25 lines to the page (use 25 lines of sample text).
    What part is causing a problem?
    Peter
    btw We don't know what version of Pages you are talking about.

  • How to get PL/SQL line number ?

    Hello, All !
    I have an Error pointing to Line number - "ORA-06512: at "..._PKG", line 295
    How do I find out in physical code exactly where this line is ? I used SQL Navigator (it has line count) but It didn't match ! (Function names different in Error message and in Script Editor window and it pointed to a blank line). Does line count start from Package Spec or Body ?
    Please Help,
    Thanx !

    The line number is relative to the first line of the body. The most definitive way to identify the exact line would be to use USER_SOURCE ...
    SELECT TEXT
    FROM USER_SOURCE
    WHERE NAME = ...
    AND LINE = 295
    Richard

  • How do you specify a line number with getline() (c++)

    How do you specify which line for getline() to read with c++ similiar to how awk uses $1, $2, $3 , etc etc...
    Example:(Ignore the underscores)
    Line1 Line2
    10____10
    20____20
    30____30
    40____40
    if I were making a program to remove 10 on the first line and 20 on the second line how would I tell getline which line to read
    Example source code:
    #include <cstdio>
    #include <fstream>
    #include <string>
    #include <iostream>
    using namespace std;
    int main()
    string line;
    string line2;
    ifstream in("/Users/lundquisted/Desktop/infile.txt");
    ofstream out("/Users/lundquisted/Desktop/outfile.txt");
    while( getline(in,line) )
    if(line != "10")
    out << line << endl;
    while (getline(in,line2) )
    if(line2 != "20")
    out << line2 << endl;
    in.close();
    out.close();
    remove("/Users/lundquisted/Desktop/infile.txt");
    rename("/Users/lundquisted/Desktop/outfile.txt","/Users/lundquisted/Desktop/inf ile.txt");
    return 0;
    }

    Eric Lundquist wrote:
    store the output of a system() command within a c++ program to a string and/or variable
    A number of apps call Unix utilities and capture both stdout and stderr, typically for viewing in a log window, but for other uses as well. Xcode, for example, starts up gcc and does various things with the text that gcc might otherwise print in a Terminal window. Most apps that rely on Unix commands that way don't use "system()", which is a rather crude way of launching utilities that leaves the parent program with very little control. Usually, the best way to manage helper utils from a Cocoa app is by using NSTask and NSPipe. If you spend some time with the two following pages, you'll learn how to do almost anything you want with command line utils from inside a Cocoa app:
    [http://www.cocoadevcentral.com/articles/000025.php]
    [http://macosx.com/forums/archive/t-3927.html]
    The first link goes to a great tutorial on using NSTask. Capturing stdout and stderr are only covered briefly towards the end, however. Note the last comment explaining why "system()" is a bad idea.
    The second link goes to a forum thread. Scroll down to the code posted by "blb" for some very clear examples of launching with NSTask and reading the output with NSPipe.
    If you really want to use a shell command, you could give NSTask a command like ' +bash -c "ls -lt | grep drwx"+ ' (see how setArguments: is used in the tutorial).
    If you just want to do something cheap and dirty with "system()" so you can see some awk output while you're learning how to do things the right way, I guess you could do something like this:
    system(" cat ~/random.txt | awk '{print $2}' > MyFile.txt");
    NSString *myString = [NSString stringWithContentsOfFile:@"MyFile.txt"
    encoding:NSUTF8StringEncoding error:nil];
    Of course you can just read MyFile.txt into cin if you're not using Cocoa.
    - Ray

  • How can I locate my ipad with only the serial number

    how can i locate my ipad with only the serial number

    you can't
    even with the IMEI number the police need a warrent to get such info from the carriers

  • How to turn on the line number in NWDS?

    The NWDS is based on the very old version of Eclipse. If you open the java source you can't see the line number. I try toturn it on. How?

    Hi
    If you want to navigate to the specified Line Number you can use the following Short cut
    Ctrl + L  [in NWDS]
    Regards
    Chaitanya.A

  • How can I locate missing iPhone by using the phone number?

    Hi guys, we have lost one of our iPhones but we don't have iCloud account to track the iPhone.
    Is there a way to locate the missing iPhone?
    Is it possible to use my iCloud account to locate my buddies iphone using the phone number?
    Please reply soon,
    Thanks,

    "Is there a way to locate the missing iPhone?"
    No.
    "Is it possible to use my iCloud account to locate my buddies iphone using the phone number?"
    No.
    Sorry

  • Dbx unable to locate right line number

    I recently mounted my file system on a new Solaris 9 machine. I tried debugging my program in sun studio 8 on the new machine and I received debugging errors when I tried to set break points in object files or template files. The error message is as follows:
    dbx: no executable code at line "file name": -1
    The main problem was that dbx did not correctly link the header file to the right path namem as the file name in the error msg was wrong. I tried setting the breakpoints using command line in dbx, manually inserting "stop at" commands inserting the right path names and line number and it worked! However, when I simply clicked on the side bar to try to set a break point, the above error msg appeared.
    I checked that I loaded the right files and file systems. I ran the same program on workshop on the old system and it debugged without problems. Could this be a problem in my build?
    This maybe a simple problem but I need to figure this out. Thanks for any help.
    YN

    Debugging data in the object files contains the paths to the files, relative paths when possible.
    If the path to a file on the build machine is different from the path to the file on the debugging machine, the debugger will not be able to find the files. That is, if you build the program with a reference to /home/project/src/foo.cc but the file cannot be reached by that path on the debugging machine, the debugger can't find foo.cc.
    You need to arrange your NFS mount points, possibly adding symbolic links to directories, so the paths to the files look the same from both machines.
    You can mitigate this problem if all files are under a common root, and you use only relative paths in all compiler options, link options, and #include directives. That is, instead of -I/absolute/path/to/directory, use -I../../relative/path/to/directory. Similar considerations apply to -L options and #include directives.
    If you need to work on the same code from a number of machines, it might be more convenient to put all the files on a server, and mount the server at the same mount point on all machines that need to access the code. For example, put all the files on machine S in /export/home/project, then export the "/export" file system. Each machine that needs to access the files mounts S:/export/ at /mnt/S. Then you can uniformly access the project directory as /mnt/S/home/project.

  • How can I create a line break in pages for iPad?

    On the Mac you can hold the shift key while pressing the return key to creat a line break. Only pressing the return key will creat a new paragraph of course.
    On the iPad you only can creat paragraphs. Pressing the shif key does not change that.
    Does anybody know how to force a linebrek on the pages app for iPad?

    Tap and hold where you wish to insert the line break. Select Insert from the pop up menu, then Line break.
    this might be helpful for future reference: http://help.apple.com/pages/ipad/1.7/

  • HT2523 how to make a simple line across the page

    how to mmake a line across

    In what application, running what version of OS X?
    (A Mac cannot run iOS)

Maybe you are looking for

  • Problem with file association in Photoshop

    I am using Adobe Photoshop CS4, and I also have Adobe After Effects on my computer (which I don't use).  For some reason, when I click on a photograph in Adobe Bridge, the After Effects program opens, but the photo I want to open in Photoshop does no

  • Windows won't detect audio after installing windows 7.

    I have a hp pavilion dv9610us notebook pc with windows vista home premium  and i recently install windows 7. Now windows won't detect the audio device. I try different software but it said that it can't find the media or device.

  • Port Security - CMS

    I am using CMS on a 3550 to implement Port Security. I want to know how to clear the Violation Rejection count? I have tried changing the Violation, turned off Sticky Behavior and disabled Port Security. Nothing clears the Violation count. When I re-

  • Passing URL variable on login redirect

    I first want to say thank you for all the great help I have received on these forums over the past couple months - it has been very helpful and saved me countless days. Saying that, I do have another problem. I would like to pass a URL variable to th

  • How to Remove Mac OS X Games from GameCenter?

    I've uninstalled a game from my mac, but how do I remove the MAC OS X game from gamecenter? (Not ios)