Image shortcut in a document? (hyperlink)

How can i create a word so when i click on it it opens up an image from a folder on my mac.
Kind of like a hyperlink.
Or a shortcut on the document to open the image.
iv'e looked around on the web but can't find an answer. Cheers.

Pages doesn't do this exactly.
It will link to email, web pages, and other Pages documents.
Add whatever word you want to link, select it:
Inspector > Link > Hyperlink > check Enable as a hyperlink > Link to : Pages document > browse to file.
Peter

Similar Messages

  • Keyboard shortcut for Compare Documents (or configurable keyboard shortcuts)

    Hi,
    I'm guessing the ability to configure Keyboard Shortcuts as one can in other Adobe applications is coming soon to Acrobat (the software release cycles haven't quite synched up yet), but if there are no plans for this, I would appreciate a Keyboard Shortcut for a function I use very frequently: Compare Documents.
    Thanks much,
    Adam

    If you go to system prefs - keyboard & mouse - keyboard shortcuts you can set a shortcut for anything that is in the mail menus.
    click the + at bottom left to add one, select mail from the applications drop down, then type in the exact name of the mail menu item you want a shortcut for eg :Add Hyperlink . Then find a shortcut combo that isn't in use by something else & there you are.
    I prefer the edit link, so's you get a neat link, rather than the (sometimes) 3 line url.
    checking the way mail works while interested in another post
    http://discussions.apple.com/thread.jspa?threadID=367990&tstart=0
    we've noticed that mail doesn't send rtf that outlook on an exchange server likes
    unless you not only enable rtf, but also actually make some alteration that really requires rtf. That's to say a different font,a larger font, italics, a signature in italics, a colour etc.
    The fact that your composed message displays in arial 48pt (for example) doesn't cut it - it'll still be sent as plain unless you do one of the above. Making a change & reversing it works too.

  • I am using a Photoshop cs2, and I wonder if it is possible to keep the settings of the guidelines when closing an image, with the actual document ? It would be nice to have the guidelines locked down, I find it than when opening the same or another image,

    I am using a Photoshop cs2, and I wonder if it is possible to keep the settings of the guidelines when closing an image, with the actual document ? It would be nice to have the guidelines locked down, I find it than when opening the same or another image, the guidelines are not locked, it is annoying to have to lock them down again. and it would actually be nice, to ba able to give specific directions when placing the guidelines. Thanks

    Then why are the guides unlocked when I reopen a document that I saved with the guides locked ?
    Thanks.

  • Error while uploading images to SAP Mobile Documents from iPad application using ObjectiveCMIS.

    Hi,
    I am getting the error while uploading images to SAP Mobile Documents from custom iOS(iPad )application using ObjectiveCMIS library.
    My Custom method is as follows:
    - (void)createSalesOrderRouteMapImageInFolder:(NSString*)salesOrderRouteMapFolderId routeMapImageTitle:(NSString *)imageTitle routeMapContent:(NSData *)imageData
        NSInputStream *inputStream = [NSInputStream inputStreamWithData:imageData];
        NSMutableDictionary *properties = [NSMutableDictionary dictionary];
        [properties setObject:[NSString stringByAppendingFileExtension:imageTitle] forKey:@"cmis:name"];
        [properties setObject:@"cmis:document" forKey:@"cmis:objectTypeId"];
        [self.session createDocumentFromInputStream:inputStream
                                           mimeType:@"image/png"
                                         properties:properties
                                           inFolder:salesOrderRouteMapFolderId
                                      bytesExpected:[imageData length]
                                    completionBlock:^(NSString *objectId, NSError *error) {
                                        NSLog(@"Object id is %@",objectId);
                                        if(error == nil) {
                                            [inputStream close];
                                            NSLog(@"Uploading Sales order route map successfully.");
                                            [[NSNotificationCenter defaultCenter] postNotificationName:SaveOrderSuccessNotification object:nil];
                                        } else {
                                            [inputStream close];
                                            NSLog(@"Uploading sales order route map failed.");
                                            [[NSNotificationCenter defaultCenter] postNotificationName:SaveOrderFailedNotification object:error];
                                    } progressBlock:^(unsigned long long bytesUploaded, unsigned long long bytesTotal) {
                                        NSLog(@"uploading... (%llu/%llu)", bytesUploaded, bytesTotal);
    OBjectiveCMIS Method in which i am getting error during upload:
    - (void)sendAtomEntryXmlToLink:(NSString *)link
                 httpRequestMethod:(CMISHttpRequestMethod)httpRequestMethod
                        properties:(CMISProperties *)properties
                contentInputStream:(NSInputStream *)contentInputStream
                   contentMimeType:(NSString *)contentMimeType
                     bytesExpected:(unsigned long long)bytesExpected
                       cmisRequest:(CMISRequest*)request
                   completionBlock:(void (^)(CMISObjectData *objectData, NSError *error))completionBlock
                     progressBlock:(void (^)(unsigned long long bytesUploaded, unsigned long long bytesTotal))progressBlock
        // Validate param
        if (link == nil) {
            CMISLogError(@"Must provide link to send atom entry");
            if (completionBlock) {
                completionBlock(nil, [CMISErrors createCMISErrorWithCode:kCMISErrorCodeInvalidArgument detailedDescription:nil]);
            return;
        // generate start and end XML
        CMISAtomEntryWriter *writer = [[CMISAtomEntryWriter alloc] init];
        writer.cmisProperties = properties;
        writer.mimeType = contentMimeType;
        NSString *xmlStart = [writer xmlStartElement];
        NSString *xmlContentStart = [writer xmlContentStartElement];
        NSString *start = [NSString stringWithFormat:@"%@%@", xmlStart, xmlContentStart];
        NSData *startData = [NSMutableData dataWithData:[start dataUsingEncoding:NSUTF8StringEncoding]];
        NSString *xmlContentEnd = [writer xmlContentEndElement];
        NSString *xmlProperties = [writer xmlPropertiesElements];
        NSString *end = [NSString stringWithFormat:@"%@%@", xmlContentEnd, xmlProperties];
        NSData *endData = [end dataUsingEncoding:NSUTF8StringEncoding];
        // The underlying CMISHttpUploadRequest object generates the atom entry. The base64 encoded content is generated on
        // the fly to support very large files.
        [self.bindingSession.networkProvider invoke:[NSURL URLWithString:link]
                                         httpMethod:httpRequestMethod
                                            session:self.bindingSession
                                        inputStream:contentInputStream
                                            headers:[NSDictionary dictionaryWithObject:kCMISMediaTypeEntry forKey:@"Content-type"]
                                      bytesExpected:bytesExpected
                                        cmisRequest:request
                                          startData:startData
                                            endData:endData
                                  useBase64Encoding:YES
                                    completionBlock:^(CMISHttpResponse *response, NSError *error) {
                                        if (error) {
                                            CMISLogError(@"HTTP error when sending atom entry: %@", error.userInfo.description);
                                            if (completionBlock) {
                                                completionBlock(nil, error);
                                        } else if (response.statusCode == 200 || response.statusCode == 201 || response.statusCode == 204) {
                                            if (completionBlock) {
                                                NSError *parseError = nil;
                                                CMISAtomEntryParser *atomEntryParser = [[CMISAtomEntryParser alloc] initWithData:response.data];
                                                [atomEntryParser parseAndReturnError:&parseError];
                                                if (parseError == nil) {
                                                    completionBlock(atomEntryParser.objectData, nil);
                                                } else {
                                                    CMISLogError(@"Error while parsing response: %@", [parseError description]);
                                                    completionBlock(nil, [CMISErrors cmisError:parseError cmisErrorCode:kCMISErrorCodeRuntime]);
                                        } else {
                                            CMISLogError(@"Invalid http response status code when sending atom entry: %d", (int)response.statusCode);
                                            CMISLogError(@"Error content: %@", [[NSString alloc] initWithData:response.data encoding:NSUTF8StringEncoding]);
                                            if (completionBlock) {
                                                completionBlock(nil, [CMISErrors createCMISErrorWithCode:kCMISErrorCodeRuntime
                                                                                     detailedDescription:[NSString stringWithFormat:@"Failed to send atom entry: http status code %li", (long)response.statusCode]]);
                                      progressBlock:progressBlock];
    Attaching the logs:
    ERROR [CMISAtomPubBaseService sendAtomEntryXmlToLink:httpRequestMethod:properties:contentInputStream:contentMimeType:bytesExpected:cmisRequest:completionBlock:progressBlock:] HTTP error when sending atom entry: Error Domain=org.apache.chemistry.objectivecmis Code=260 "Runtime Error" UserInfo=0x156acfa0 {NSLocalizedDescription=Runtime Error, NSLocalizedFailureReason=ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public void com.sap.mcm.server.service.AbstractChangeLogService.updateChangeLog(java.lang.String,boolean) throws com.sap.mcm.server.api.exception.MCMException method on bean instance com.sap.mcm.server.nw.service.NwChangeLogService@4e7989f3 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|NwChangeLogService in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.ejb.EJBTransactionRolledbackException: ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public com.sap.mcm.server.model.ChangeLog com.sap.mcm.server.dao.impl.ChangeLogDaoImpl.findByUserId(java.lang.String) method on bean instance com.sap.mcm.server.dao.impl.ChangeLogDaoImpl@2852b733 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|ChangeLogDaoImpl in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.persistence.NonUniqueResultException: More than 1 objects of type ChangeLog found with userId=25f8928e-8ba0-4edd-b08e-43bf6fb78f1a; nested exception is: javax.ejb.EJBException: ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public com.sap.mcm.server.model.ChangeLog com.sap.mcm.server.dao.impl.ChangeLogDaoImpl.findByUserId(java.lang.String) method on bean instance com.sap.mcm.server.dao.impl.ChangeLogDaoImpl@2852b733 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|ChangeLogDaoImpl in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.persistence.NonUniqueResultException: More than 1 objects of type ChangeLog found with userId=25f8928e-8ba0-4edd-b08e-43bf6fb78f1a}
    2015-03-12 04:08:31.634 Saudi Ceramics[4867:351095] Uploading sales order route map failed.

    Hi Sukalyan,
    Have you checked the below links?
    These will give you step by step implementation procedure.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a099a3bd-17ef-2b10-e6ac-9c1ea42af0e9?quicklink=index&overridelayout=true
    http://wiki.sdn.sap.com/wiki/display/WDJava/KmuploadusingWebdynproapplication
    Regards,
    Sandip

  • How do I hide the file names/path names of embedded images in a PDF document?

    I created a PDF document from a Word document, and the problem is that the PDF document shows the file names and path names for all of the embedded images in the PDF document. I don't want that information displayed. I don't want to send the PDF out to clients and have them read the names I've assigned to those images, plus it looks messy. And I've lost many of the original image files so they only exist in the Word document, thus I can't go back and rename them. I searched the internet for an answer but I couldn't find one anywhere.

    When you create a tagged (accessible) PDF file from Word, placed bitmap images will use their filename as the "ALT text" if you don't define something else for the text to say, because an image without any ALT text is a failure against the accessibility standards. You can't change that default action, so you should put your own meaningful text into the ALT field for each image - which is what you should be doing anyway if the PDF is standards-compliant.
    You can can set the text in Word, but it depends on your version as to where the dialogs are - Google for it - or you can change/delete it in Acrobat using the tags navigation pane on the left side of the window (right-click the sidebar if it's not visible). Drill down through the tags structure to find the "<Figure>" tag you want to change, right-click and choose Properties, then put something in the "Alternative text" field. This process isn't something you can easily automate, but if you don't need tags at all, you can save without tags (or print to PDF).

  • I want to place an image in my InDesign document that can work with an address like this (\Resources\Thumb) rather than this (C:\Users\JSmith\Desktop\InDesign thumbnail Test\001\Resources\Thumb) is this possible?

    I want to place an image in my InDesign document that can work with an address like this (\Resources\Thumb) rather than this (C:\Users\JSmith\Desktop\InDesign thumbnail Test\001\Resources\Thumb) is this possible? In a nutshell I want to point the link to an image in a directory that uses just part of the address.

    I know this is something you can do in Maya with linked files. I guess InDesign just isn't there yet.
    MW Design -  Yeah I think "Relative paths" is the right term! I want to create a Layout with an image in the center of the page - and then duplicate my folder structure with that file. With that, I want to replace the Linked image file with a diferent image file of the same name. In effect having multiple files of the same layout with different images.  I hope that made sense.  

  • Image resolution for converted documents and images

    We are converting documents from several different formats to PDF.  We have a requirement that the images must be 300 dpi when converted.  I turned off the down sampling option in PDF settings.  However, the images are all coming out at 72 dpi. So I have some questions.
    Is there a way to control the dpi of a converted image?
    How about an image embedded in a document?
    Is there any easy way to check the dpi of an image in a PDF?  The only way I've found to check the image dpi is use preflight in Acrobat.
    -Kelly

    No good.
    I've followed the instructions 3 times to the letter and it still opens without any mention of a password request. In fairness, its exactly the same process I followed with the Google instructions so I am at a complete loss with this one.
    Maybe my Macbook is configured wrong somewhere. I'll have to take it in to the Apple Store when I can get up there and see if they can work it out.
    Thanks for the assist anyway Allan, I'm sure I'll get it working one way or another
    Maffstar

  • Images in a KM Document

    I have created a KM document iview for a KM document which refers to an image within the same folder. The problem is that the image is not showing up in the iView. Though the image shows up if its a url iview. Does anyone know how I could acheive this without it being specific to the hostname as we would not like to modify these documents when we move to dev and production

    I have pretty much tried the same thing. It works fine. I have created a test document into which I have inserted an image which exists in one of the KM folders. I have created a KM Document IView and works fine.
    How is the image referenced in the document? When you create a KM document you can insert the image directly.
    If it is referenced right, the image URL may look something similar to the following..
    http://hostname:port/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/yourfolder/image.gif
    You can transfer all the KM content using several methods.
    One way is by using ICE.
    Hope this helps..

  • Appending to a word document hyperlink text

    Hey, Is it possible to change the hyperlink text not the address? I would like to append to it not completely replace it. This is my example. I would like the hyperlink to display "Fig 1" instead of just the number "1". Is this
    possible somehow? thanks.

    Hi Rundownbassman92,
    This script below may be helpful for you to edit the text of hyperlink in a Word Document:
    $word = New-Object -ComObject word.application
    $document = $word.documents.open("word file path")
    $hyperlinks = @($document.Hyperlinks)
    $hyperlinks | ForEach {
    $newtext ="Fig "+ $_.TextToDisplay # add "Fig" before original text
    $_.TextToDisplay=$newtext
    $document.save()
    $word.quit()
    Best Regards,
    Anna Wang

  • Last image placed in the document comes up as being modified constantly

    I have an indesign issue.
    Running CS4 (6.06) and CS5 (7.0.4)
    On snow leopard  10.6.8
    On a Mac Pro Quad-Core Intel Xeon
    My problem is that when I have a document with images in for some reason it seems that the last image placed in the document comes up as being modified.
    I do the required update everything appears up to date save the job and the same link will again show as being modified, so I get in to an infinite loop.
    This happen with documents saved locally and on a server, with documents I created and documents I have picked up form other artworkers.
    It is not an issue with specific link as we have seen this in many linked images, I tried to identify a trigger for this problem.
    I took 4 images placed them into a document save locally in my desktop opened closed the document after each image was placed, it work fine for all 4 images on there own. I added a text box to my document saved and the last image placed then flagged are being modified in my links panel, I deleted the image that was flagged as modified from the document and saved, as soon as I saved the next image in placed order now came up as being modified (this image was not flagged and being modified when I have 4 images placed).
    If I remove the text box from this document at any point then no images are flagged as modified.
    Just to confirm. This in not based around one document, specific images or one mac. I didn’t have this issue with 10.5.8 and Older CS4 on the same machine.
    Please help??

    You said this is not an issue on just one machine. Does this mean that other machines are alos showing this behavior?
    The first thing to try for any flakiness like this is: Replace Your Preferences
    That said, this sounds like it coud be some sort of conflict. Are you running any third-party plugins?

  • Linked images in my Word document don't show up in RoboHelp

    I'm using RoboHelp 8 and Microsoft Word 2003 on Windows XP. I create a new WebHelp project. I added all the .png image files from my Microsoft Word directory to Baggage Files. I then used the Link>>Word Document function to add my Word document to the RoboHelp project. Set my preferences for style pagination, did a Force Update All. However, most of the images I inserted as links into my Word document don't come through into RoboHelp. Apparently I'm missing a setting somewhere but I can't figure out what it is. In addition, one of the images that did come through is horribly degraded.

    Still no joy. All of the images in my Word document are linked .png files.
    Here's the step-by-step of what I just did:
    Open Word document
    Tools>>Options>>General>>Web Options.
    Change setting. Click OK
    Click OK
    Change text on page one of document to make sure document is "dirty".
    File>>Save As.
    Increment number in file name.
    File>>Exit.
    Launch RoboHelp
    Start new project
    Add all .png files to baggage.
    File>>Link>>Word Document
    Select appropriate Word file.
    File>>Project Settings>>Import tab
    Edit Word conversion settings to set pagination for heading styles and set Convert Word list to RoboHelp list
    Click OK
    Click Apply
    Click OK
    Right-click Word document in HTML Files (Topics) and choose Update>>Force Update All
    no joy

  • Insert image file to word document using active X

    Hello,
    I would like to insert an image into my word document (at the end). The image is saved as a bmp file and I'm using LV 8.2.1.
    I would like to do this using Active X (without using report generation toolkit).
    Any idea please ? Thanks in advance.
    J.
    Solved!
    Go to Solution.

    Hi J.
    The method to use is Inline shapes (Add pictures). I have linked an example. You will have to configure it in order for it to be at the end of your document but that shouldn't be a problem for you.
    Best Regards,
    Charlotte F. | CLAD
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    >> "Du 11 octobre au 17 novembre, 2 sessions en parallèle : bien démarrer - approfondir vos connais...
    Attachments:
    activex image.vi ‏13 KB

  • How can I preserve word internal document hyperlinks when importing into indd cs6

    I have a document that is hundreds of pages long. The document was created in word by another user and has many internal document hyperlinks. Is it possible to preserve the hyperlinks, so that they show up and work in indd CS6? The document will then be exported as an interactive pdf and the links need to work there as well.
    The final product is the interactive pdf. I am just using indd to add a simple background to the content created in word. If there is any other way to preserve the hyperlinks, perhaps, by somehow adding the background in acrobat pro and excluding even taking the document into indd, please let me know.
    Mahalo!

    Thanks Lori for the reply.
    Unfortunately. my Epson 3170 Photo does not come with scan-to-fax software.
    I ended up creating a word doc and inserting the scans into it - on scan per page.
    Thanks for the suggestion though. It is greatly appreciated.
    Dual G5 2GHz, 2.5 GB RAM, 360 GB HDD   Mac OS X (10.4.2)  

  • Where does time machine store content that would be found in the Finder window under "All Images, All Movies, All Documents"? Also, I have many Garageband projects and mp3 files I can't find.

    Where does time machine store content that would be found in the Finder window under "All Images, All Movies, All Documents"? Also, I have many Garageband projects and mp3 files I can't find.

    Easiest way to find time machine files is to open up the folder or application(works for email and iphoto)  they were in - then click on time machine ICON or enter time machine from the time machine menu to go back through the files.

  • Working Backwards - is the image in any Indesign Documents?

    Hi guys
    Here at my place of work IT are continually trying to keep the amount of data on our network as low as possible.
    To do this they produce a large files report and a duplicate files report.
    Using indesign and packaging files as we do, we are quite often culprits of the large files or more often than not duplicate files.
    Because it isn't just us that has access to our images etc we feel we have to package our documents because of the risk of a file being moved or deleted and therefore losing its link to indesign.
    My question is this:  If we have an image, a jpg for example, is there a way of seeing any indesign files that that is linked to?  This way, if we have a large image file, we can see if it is connected to any of our indesign files and then if not, reduce / delete it without the fear of affecting any documents.
    Thanks
    Si

    The other way around, yes, you can find links to InDesign files through
    Bridge. This way, no.
    Bob
    SimonLaughton <mailto:[email protected]>
    Thursday, December 13, 2012 10:44 AM
    >
          Working Backwards - is the image in any Indesign Documents?
    created by SimonLaughton
    <http://forums.adobe.com/people/SimonLaughton> in /InDesign/ - View
    the full discussion <http://forums.adobe.com/message/4918461#4918461

Maybe you are looking for

  • How can I stream Live video?

    I'm working on a project where I take live video from an NTSC source. I'm looking for a simple program to import and allow me to take screen captures on the fly. I can edit it later. Can iMovie 09 do this...if so how?

  • Change EKPO-KZWI6 in Batch input

    Hi experts. I'm creating a PO in ME21 via batch input and need to change the field EKPO-KZWI6, but I can't find this field in the transaction screens. How would you guy suggest me to do it? Thanks in advance, Alm.

  • Mac Pro DVD Burner

    I am looking for a recommendation on which DVD Burner I should get to replace the one I got in my new Mac Pro. For some unknown reason I can't get a disc to burn that is viewable in my DVD player. My old G4 worked great! I don't know if it is because

  • Online Threads Atachment Issues

    Regards from Sweden, When I access "Online Threads", if I wish to attach a photo, I am unable to do so as only "My Location" is available. The other choices such as "Picture", "Video", "Voice Note" and "Contact" remain grey and are thus unusable. Is

  • USB drive on airport network?

    I have installed a usb 50 gig drive to my airport base station. The airport utility "sees" it. I have all the settings correct (as far as I can tell- sharing etc.) However my iMac connected via the LAN to the base station will not see it and neither