How to use command "Add Link" in Number 3.0

I have seen the command "Add Link" in Number 3.0. I try to use it but I can't.  What happen ?

TA,
If you are referring to the Add LInk item in the Format menu, you need to write some text in a cell and Select that text. Then the Add Link option will be enabled.
Jerry

Similar Messages

  • How can I add a hyperlink to a PDF with OSX 10.9? The "Help" article says to use the "add link" feature under "edit." It's not there.

    How can I add a hyperlink to a PDF with OSX 10.9? The "Help" article says to use the "add link" feature under "edit." It's not there. I could add links w/ the previous OS. Time sensitive project.

    Which application are you using?
    Clinton

  • How can I change keychain linked phone number because I cannot access account

    How can I change keychain linked phone number because I cannot access account

    How do I set up iCloud Keychain on a new device if I don't have one of my other devices to approve from?
    If you don't have access to any of your other devices that are using iCloud Keychain, you can still set up iCloud Keychain on another device if you have these items:
    Your iCloud Security Code
    The device that is using the SMS-capable phone number you provided when you first set up iCloud Keychain. A verification code is sent via SMS to this phone number. If you don't have access to this number, contact Apple Support, who can verify your identity so that you can complete setup on your new device.
    If you have these items, follow the iCloud Keychain setup steps documented above. Your iCloud Keychain will then be pushed from the cloud to the new device.
    iCloud: Frequently asked questions about iCloud Keychain

  • How to use the html:link with a arraylist

    Hi everyone:
    I want to display the data using struts html:link.
    I query the database and place all the data to javabean,later place all the javabean to ArrayList.In Action,I use the "request.setAttribute("lovetable",articlelist) to set request to jsp page.
    I want to pass a parameter "id" use the hyperlink so I can get the parameter when I click the hyperlink.
    But how to use html:link to display it?
    I use <html:link action="viewtopic.do" paramId="id" paramName="lovetable" paramProperty="id"/>,it can't work and Tomcat report error :
    org.apache.jasper.JasperException: No getter method for property id of bean lovetable
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:248)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
    The lovetable is a ArrayList and it don't have a getter or setter method.
    How to use it pass parameter? :( Thks

    Thank you.
    I use the bean:define successful.And display all the data to jsp.My jsp code is:
    <logic:iterate id="love" name="lovetable">
    <bean:define id="idbean" name="love"/>
    <tr bgcolor="<%=color%>">
    <td><bean:write name="love" property="id"/></td>
    <td><html:link forward="viewtopic" paramId="id" paramName="idbean" paramProperty="id"><bean:write name="love" property="title"/></html:link></td>
    <td><bean:write name="love" property="name"/></td>
    <td><bean:write name="love" property="time"/></td>
    </tr>
    </logic:iterate>
    In Action : request.setAttribute("lovetable",articlelist)
    ResutlSet rs=.............
    List articlelist=new ArrayList();
    while(rs.next()){
    articlebean bean=new articlebean();
    bean.setName(rs.getString("name"));
    bean.setTitle(rs.getString("title"));
    articlelist.add(bean);
    The above code will work property.
    The Tag "html:link" need bean to work other than arraylist so I iterate all the bean out.
    The Tag "logic:iterate" need collection to work so I make Action return a List.
    right?
    Any idea? :)

  • How to use Cross Company Code document  number as Reffrence.

    Hi
    Actually user wants to post the same debit credit line items with Editing the amounts which he has posted last month
    So i suggested him to use post refference of the previous month document number.
    Since that is Cross company document number. There is no source to give  in T.Code FBR2. There is a fecility to give only document number of a company code not cross company code.
    Assume that there are 3 company's involved in that document.
    company  X --- 25 line items
    company  Y -- 75 line items
    Company  Z -- 100 line items
    Since he given in header data X Co code it has generated the Cross company code document number 1000X 08 ( which means 1000 is doc.number X is company code 08 is year. This is sap standard cross company code doc number format)
    and individual document number is
    X - 1000
    Y-  2000
    Y-  3000
    If he post with the reffrence of X company only 25 lines will come remaining 175 line he as to post manually.
    If he take Y Doc number  only 75 lines will come
    If he take Z Doc number  only 100 lines will come
    To bring all lines there is no provision to give Cross company Doc number.
    Please advice how to use cross company doc number as refference.
    Tks
    Shivaji

    Hi guru
    This is answered
    Thanks
    shivaji

  • (Urgent)help: how to use sdk add a gif image into a pdf document

    I had use sdk plus-in add a new button of mine,if I click the button,a gif image will be inserted into the current page of pdf document
    My questions:
    one : When I clicked the button,there was a warnning box said:the image has not enough data.I don't known why?
    two : How can I be sure the position of the image which I inserted? and how to change it's position?
    three:  how to use sdk get the content of the document?

    hi Leonard:
    I do it like you said, but
    Why my image can not display in the pdf.
    code is:
    //====================================================================
    const ASInt32 theImageByteSize = IMG_WIDTH * IMG_HEIGHT;
    char* buff = new char[theImageByteSize];
    PDEImage volatile pdeImage = NULL;
    PDEImageAttrs pdeImageAttrs;
    PDEColorSpace pdeColorSpace;
    ASFixedMatrix imageMatrix;
    memset(&pdeImageAttrs, 0, sizeof(PDEImageAttrs));
    int hdl = _open(ImagePath, _O_RDONLY | _O_BINARY, _S_IWRITE | _S_IREAD);
    if (hdl == -1)
         AVAlertNote("[%s] create fail !!!!") ;
    if (_read(hdl, buff, theImageByteSize) == -1)
         AVAlertNote("read image fail!") ;
    pdeImageAttrs.width = IMG_WIDTH;
    pdeImageAttrs.height = IMG_HEIGHT;
    pdeImageAttrs.intent = ASAtomNull;
    pdeImageAttrs.bitsPerComponent = 8;
    pdeImageAttrs.flags = kPDEImageExternal | kPDEImageIsIndexed;
    pdeImageAttrs.decode[0] = fixedZero;
    pdeImageAttrs.decode[1] = fixedOne;
    pdeImageAttrs.decode[2] = fixedZero;
    pdeImageAttrs.decode[3] = fixedOne;
    pdeImageAttrs.decode[4] = fixedZero;
    pdeImageAttrs.decode[5] = fixedOne;
    ASFixedRect theMediaBox;
    PDPageGetMediaBox( AVPageViewGetPage(pageView), &theMediaBox );
    ASFixed theFixedWidth = (theMediaBox.right - theMediaBox.left);
    ASFixed theFixedHeight = (theMediaBox.top - theMediaBox.bottom);
    imageMatrix.a = ASInt16ToFixed(theFixedWidth);
    imageMatrix.d = ASInt16ToFixed(theFixedHeight);
    imageMatrix.b = imageMatrix.c = fixedZero;
    imageMatrix.h = 0;
    imageMatrix.v = 0;
    const Int32 cPaletteColors = 256;
    PDEIndexedColorData theIndexedData;
    theIndexedData.size = sizeof(theIndexedData);
    theIndexedData.baseCs = PDEColorSpaceCreateFromName(ASAtomFromString( "DeviceRGB"));
    theIndexedData.hival = cPaletteColors - 1;
    unsigned char data[3] = {255, 0, 0};
    theIndexedData.lookup = (char *)data;
    theIndexedData.lookupLen = cPaletteColors * 3;
    PDEColorSpaceStruct theColorData;
    theColorData.indexed = &theIndexedData;
    pdeColorSpace = PDEColorSpaceCreate(ASAtomFromString( "Indexed" ), &theColorData );
    pdeImage = PDEImageCreate(&pdeImageAttrs, sizeof(pdeImageAttrs), &imageMatrix,
                                                0, pdeColorSpace, NULL, NULL, NULL, (unsigned char*)buff, theImageByteSize);
    I want die, I had done this for so many days, My GIF doesn't insert into pdf,
    unsigned char data[3] = {255, 0, 0};
    theIndexedData.lookup = (char *)data;  "
    whether the data set wrong?
    I confused what I do next   

  • How to use SNRO to create daily number range?

    Dear all,
    I would like to know how to use SNRO to create a daily number range.
    We would like to have the following sequence. The first 8 digits are date and the last 2 digits are number sequence. Each day, the last 2 digits will start from 01 again. i.e. <8-digits date><2-digit sequence>
    For example, today is 22 May 2006,
    2006052201
    2006052202
    2006052203
    Tomorrow will have sequence like this:
    2006052301
    2006052302
    2006052303
    Thanks!

    Thomas,
    I don't there is a automated way of doing as the dates do NOT follow a numbering sequence. What you can do is to create a number range for getting the last two digits every day and manually concatenate the date with the serial number.
    However, as you have to reset the counter every day that might be a issue.
    Regards,
    Ravi

  • How to use a data link file (UDL)

    Hi,
    several times I developed applications using Crystal Reports 2008 which used a data base on my development PC and when I deployed them on a production server I had the problem to change the Data Source Location to reflect the new Server name and SQL Server Instance. Moreover, this had to be done on the server, because CR 2008 check the new data source location when you change it, and because I was not connected to the server I couldn't do it on my development pc.
    I thought that the data link file was the solution to this problem, meaning that CR2008 could use a data link file (UDL file) as a data source location, so when deploying the reports on the server I had only to point the data link file to the new server instance.
    With my surprise, I have seen that when using a data link file to define the data source in CR 2008, it copies the definition found in it, instead of using it at run time. SO when I deploy the reports on the server I still have the same problem to change the data source location for all the reports.
    Perhaps I didn't understand the data link file use. So, how do I solve the problem of using a data source location that can be valid when deploying the reports on a server?
    Thanks

    Hi Antonio,
    Go to our download page above, there you will find samples to test with:
    http://www.sdn.sap.com/irj/boc/samples
    Or to .NET samples: http://www.sdn.sap.com/irj/boc/samples?rid=/webcontent/uuid/80774579-b086-2b10-db91-ed58c4dda375 [original link is broken]
    Find any of them that sets database location/log on.
    Thank you
    Don

  • How to use Opendoc to link parent and child

    I have parent and child reports, I want to link them. When I click parent id then it should display child report.
    How to use Opendoc for this?
    Thanks,
    Charita

    You can use openDoc selection variable method for link the reports.
    Refer this link
    http://book.soundonair.ru/sams/ch31lev1sec2.html#PLID2

  • How to use SKU Bundle Links?

    Hi,
    I'm trying to create a bundle with 2 sku skulinks in crs, but I am not able to make the purchase of the items contained in skulinks in my bundle sku by crs.
    The manual that follows this http://docs.oracle.com/cd/E22630_01/Platform.1002/pdf/ATGCommStoreGuide.pdf page 19.
    Anyone know how to use skulink and skubundle?

    Hi <h:selectOneMenu is not working properly for my. My code is as follow
    JSP code
    <h:selectOneMenu styleClass="selectOneMenu" id="slcAccountIDList" value="#{pc_AccountSelectionPortletView.defaultAccountID}" >
         <f:selectItems id="itmsAccountID" value="# pc_AccountSelectionPortletView.accountIDList}"/>
    <h:selectOneMenu
    view bean code
    private String defaultAccountID = "1";
    List accountIDList = new ArrayList();
    accountIDList.add(new SelectItem("123244", "123244"));
    accountIDList.add(new SelectItem("101", "1011"));
    accountIDList.add(new SelectItem("102", "1022"));
    View bean has a session scope. I am not able to get the selected value.i,e in drop down when i select 101 and clicks on submit button i am not able to get the 101 value in defaultAccountID variable. Please tell where is the problem.
    Thanks
    Monu

  • How to use command line with acrobat to extract page(s) from pdf file?

    I have adobe acrobat, and have a pdf file with over 500 pages. I need to extract small chunks of pages from it as seperate pdf files. I was hoping I could use command line interface to do this faster.
    Something like:
    acrobat src des start end
    so for example
    adobe file.pdf my_folder 3 5
    Is this possible? There are many chunks and I don't want to manually do it for every chunk. Command line would be much easier...
    Thanks

    I can't find any programs... sorry.
    Can you create one for me please.
    It should at least have these 5 arguments: (well the first one is not neccessary since were not using acrobat anymore...)
    [program] [src path/src file] [destination path/file name] [start page (inclusive)] [end page (inclusive)]
    for example:
    acrobat ./my_file.pdf ./my_folder/chunk1.pdf 3 5
    if start page == end page, then it only extracts that one page.
    So this way I can just stack these comands on a .bat file or something (maybe like 100 commands), then run the bat file, and it will create all the files.
    Thanks for doing this, it is appreciated.

  • How to use command promt for calling a java programe

    Hi
    i am using command promt to call my class CreateProdcut
    i am trying to call cmd.exe and then calling a class with argument *"java CreateProduct -----argument----"*
    Following is the code i am using to call cmd.exe as a seprate process
    Problem :-  I am not able to see command promt and called class o/p
    import java.io.*;
    public class ExecCreateProduct{
         public static void main(String args[]) throws IOException, java.lang.InterruptedException{
              Runtime runtime = Runtime.getRuntime();
                             Process pr = runtime.exec ("cmd /c"+"java "+"CreateProduct "+"Hello World"+"HHH");
               try {
               String line;
               BufferedReader input = new BufferedReader(new InputStreamReader(pr.getInputStream()));
                    while ((line = input.readLine()) != null) {
                   System.out.println(line);
                   input.close();
                   } catch (Exception err) {   
                        err.printStackTrace();
              int exitVal = pr.waitFor();
            System.out.println("Exited with error code "+exitVal);
    }Edited by: rahul_p on Jun 9, 2009 2:58 AM

    do it like this it works for me :)
    try{
    Runtime rt = Runtime.getRuntime();
    Process proc = rt.exec("java CreateProduct -----argument-----");
    InputStream stderr = proc.getErrorStream();
    InputStreamReader isr = new InputStreamReader(stderr);
    BufferedReader br = new BufferedReader(isr);
    String line = null;
    while ( (line = br.readLine()) != null)System.out.println(line);
    int exitVal = proc.waitFor();
    exitVal!=0?System.out.println("Error"):System.out.println("success");
    catch(Exception e){
    System.ourt.println(e);
    }

  • Do I have to use Edit-add link each time I want to add a URL in Mail?

    There has to be another way to add a hyperlink (URL) like http://www.apple.com to a message in Mail- other than going to the menu, EDIT going to LINK and choosing add then typing or pasting in a box??
    I mean even in the 15 year old Eudora Program I was using, if I type http://www.whatever.com I get an automatic hyperlink created! Please tell me that there is a way to set Mail to just interpret hyperlinks (URL's) to turn blue, get underlined and work when I just type or paste them in my message.
    Thanks!
    Best regards,
    Steve Schulte
    Tuesday 13 October 2009 at 19:28

    I am using Apple Mail 3.6 (Leopard) and it has been detecting/converting (or whatever you would like to call it) URL's I enter in the body of the email ever since I started using Mail. Unlike the original post of this message, for me Mail has been doing this almost as I type. Unfortunately, for me, I can't stand it!
    I post a lot of files to our web server and then email clients and staff links to these files. The links I type tend to be a bit lengthy, about 60 characters or more - typical for web links. My frustration is that Mail will 'detect/convert' the URL to a link before I even finish typing it! I then have to place my cursor wherever Mail determined the end of the URL was in order to type the rest of the URL. This is because when Mail converts the URL it somehow takes me out of typing mode? I have to click in the body of the email again to resume typing.
    Once I have finished typing the URL, I then need to select the URL portion that Mail identified and right-click 'Remove', otherwise the clickable link that gets sent in the email will error out because it is incomplete.
    Finally, I have to select the entire URL, copy, right-click 'Link' and paste the URL into the Link popup. Frustratingly, sometimes, if I'm not fast enough, Mail will re-convert the original portion of the URL before I can click <OK> on the Link popup, which makes me have to start the process all over again! Very frustrating!
    This detect/convert also occurs with email addresses. If I type an email address into the body of an email, Mail usually lets me finish typing it. However, while I might be a sentence or two after the email address I typed in, Mail will detect/convert the address to a link AND take me all the way back to the BEGINNING of the first email address so that as I am typing, my characters are being inserted in front of the email address!?! Again, very frustrating!
    I have searched the web several times trying to find an answer to this. I finally came across a method for disabling 'Data Detectors' in Mail (see below if you want to know how to do this). However, frustratingly enough, this DID NOT disable the detect/convert of the URL and email addresses that I am talking about in this post. It only disables the detection of addresses, dates, names for use with the right-click 'Add to Address Book', etc. type of thing, which I don't mind keeping.
    Does anyone know what I am talking about and have a solution for how to stop Mail from doing this? If so, I would be very thankful for a solution or any assistance. Thanks.
    Disable Data Detectors
    if you don’t like the data detectors that Apple added to Mail in Leopard, you can disable them by opening Terminal and typing...
    defaults write com.apple.mail DisableDataDetectors YES
    You have to quit Mail and restart it again. But after that, you're data detector free and loving it. Typing or pasting the exact same string, but changing "YES" to "NO," reverses the setting so that they're back on if you decide to change your mind.

  • How to use gotoandplay scene link using class property (external code.as)

    Hello
    I am using ‘gotoandplay’ scene by scene link using this code. If I use this in the same time line (internal), it’s working properly but when I use this code in as a class, I got this error
    Call to a possibly undefined method MovieClip.
    I use this code in time timeline
    b_enter.addEventListener(MouseEvent.CLICK, fl_ClickToGoToScene_enter1);
    function fl_ClickToGoToScene_enter1(event:MouseEvent):void
                MovieClip(this.root).gotoAndPlay("p menu", "Menu");
    I use this code in class
    package  {
                import flash.display.SimpleButton;
                public class next extends SimpleButton {
                            public function next() {
                                        // constructor code
                                        MovieClip(this.root).gotoAndStop("p2", "page2")
    u can download the flash file using this link
    http://www.delta-adv.com/nav/np.rar

    oops, i didn't notice you were trying to add that code in a button class and were nesting named functions.  use:
    package  {
                        import flash.display.SimpleButton;
                        import flash.display.MovieClip;
                        import flash.events.MouseEvent;
                        import flash.events.Event;
                        public class np extends SimpleButton {
                        public function np() {
    this.addEventListener(Event.ADDED_TO_STAGE,init);
    private function init(e:Event):void{
    MovieClip(this.root).addEventListener(Event.RENDER,renderF);
                                    this.stage.invalidate();
                                    MovieClip(this.root).nextScene();
    private function renderF(e:Event):void{
                                              MovieClip(this.root).gotoAndStop(5);

  • How to use a db link created in another schema to another schema?

    Hi ,
    How to access a dblink in y schema when the link is created in x schema?
    Thanks in advance.
    Paritosh Sharma

    And to add to Toon Koppelaars, you could create a synonym in X schema for the table you would like to access via DB link and grant required permission on the synonym to the Y schema.
    hi i don't think making it public will resolve the issue.If you can make it as a public DB link, then it can be access from all the schema's and not just from Y and X. But you should consider security reasons.
    Edited by: Prazy on Jun 16, 2010 3:13 PM

Maybe you are looking for

  • Front Row versus iTunes

    Upgraded my G5 dual 1.8 tower to Leopard. Couldn't wait to use Front Row on the 30" Apple Cinema Display. Heart-broken to discover that all my movies and tv shows from my iTunes library are practically unwatchable when played through Front Row. The v

  • Symantec AntiVirus LiveUpdate hangs my mac mini intel

    Hello. I have an intel mac mini running mac osx 10.4.6 I installed norton antivirus corporate edition (site-licensed at my university) and all worked well. That is, it did until I installed the firmware update on the mini. Since then, when I try to r

  • Printer Profiles on iPrint

    Hello Forums Is there any automatic processes that updates already installed printers on workstations if the Printer Profiles is updated e.g. with another tray, or do i have to delete the printer and reinstall it manually with that /ipp webpage? - Mi

  • Plan to give my old Nano to a PC non-iTunes owner, but

    I plan to buy a new Nano and give my old one to a friend who has a PC.  I doubt he wants to upload iTunes because we like the same music, so then how can he charge the Nano's battery?  What will happen if he just connects with the USB cord (or whatev

  • Is there a way to open .kat files

    Is there a app or program that will open .kat files on a mac book pro?