'File Link' shows image on local pc only

Hello All,
I am trying to make a report with an image as background image ...for doing this i tried inserting File link and given a path of image and when i run on the local developement pc it shows the image ...
but when i give the same link to another developer to check, he can not see that background image ...rest everything is visible as it is ...
To avoid the file sharing problem ...i shared the folder which contains image and then given full network path as image path but then too same result.
what i should do to achieve this ....?
regards
Jinesh

As always there are a few options:
1. Include the xml in your virt... snap/config your app but don't build, add the file to the correct location in the files section. This will make the file pretty much static though, only the virt app would be able to edit it.
2. Use folder isolation settings to allow the virt app to see the xml file on the PC. Snap/config your app but don't build, in the files section add the folder path of your xml. Set isolation(for all folders in path based on need) to either merge or writecopy. I personally try to avoid merge if at all possible. look at the zav help section (search for isolation) to see a description of the isolation settings.

Similar Messages

  • How can I sync all files in 2 Macs using local network only?

    I am looking to equip a small office with 2 Macs, iMac and MBAir. I would like for all files to be synced (either automatically, daily, or worst case, on demand). The trick is that this has to be in the local network only, as these are sensitive files. There will be a QNAP NAS on the network as well if it matters.
    Maybe it is possible to setup both Time Machines to look at the same folder on the NAS? Any ideas on how to make this possible?

    Here are three ways to do it. None of the ways is automatic:
    (1) Get an Acrobat.com account, and copy your files via Acrobat.com:
    http://forums.adobe.com/docs/DOC-3440
    (2) If you have a computer with iTunes, and you're syncing your iPad and iPhone to this computer, your PDF files already exist on the computer. In iTunes, select the device. Then go to the Apps folder, scroll down to the File Sharing section and select Adobe Reader. All your PDF files are shown and you can save the ones you want to your computer hard drive. Then import them in a similar way via iTunes.
    (3) Use a Dropbox account. Install Dropbox on both your iPad and iPhone. Copy the PDF files via Dropbox.

  • How to make links show images?

    Today I was playing with Trinity Rescue Kit and links in this CD shows images from web. How to do that?

    Err, I'm talking about links: http://en.wikipedia.org/wiki/Links_%28web_browser%29

  • Having issues with docx files that contain images. I can only see the first page of a multipage docx (the docx only contain images)

    I'm trying to open a file for school on my ipad.  The file is a 14 page document that is text in the form of an image (i.e. someone scanned the document and pasted into micrsoft word).  When I open the file (docx format) in safari I only see one page.  If I save the file on my computer as a .doc I have the same problem.  If I save it as a pdf, I have no problem viewing it.  I was wondering if anyone else is having the same issue and if so, what they've done to solve it.  I use my ipad heavily for school, and do not always have access to a computer, so a solution that stays within the ipad would be best, although at this point i think my best option is to save it as a pdf on a computer to view on my ipad. 

    Hey all,
    I solved this problem. It was not a code-problem but a printer problem. This code do not work on a BrotherHL1660e-printer. On all other printer I tried it works fine.
    Greetings - netti

  • Jar file not showing images

    Hi
    When I make a runable jar file, my images it not showing if I try it on another computer. I searched the net and most people seems to use URLs instead ImageIO. But that doesnt help me either. Then I get the error message: Uncaught error fetching image:
    java.lang.NullPointerException
    Code is below. I hope someone can tell me what I should do.
        private Show show;
        private final int unit = 32;    // size of the images
    //    private BufferedImage free;
        private Image free;
        private BufferedImage booked;
        private BufferedImage toBeBooked;
        private BufferedImage ableToEdit;
        public TheaterOverview(Show show)
            this.show = show;
    //        try
    //            free = ImageIO.read(new File("src/images/user_alt2.png"));
    //            booked = ImageIO.read(new File("C:/Documents and Settings/Mads/Programmering/Eclipse/workspace/BioBooking/src/images/user_alt.png"));
    //            toBeBooked = ImageIO.read(new File("C:/Documents and Settings/Mads/Programmering/Eclipse/workspace/BioBooking/src/images/user.png"));
    //            ableToEdit = ImageIO.read(new File("C:/Documents and Settings/Mads/Programmering/Eclipse/workspace/BioBooking/src/images/user-yellow.png"));
    //        catch (Exception e)
    //            System.out.println("Not able to read images " + e);
            try
                URL myurl = this.getClass().getResource("images/user_alt2.png");
                Toolkit tk = this.getToolkit();
                free = tk.getImage(myurl);
    //            free = ImageIO.read(new File("images/user_alt2.png"));
                booked = ImageIO.read(new File("images/images/user_alt.png"));
                toBeBooked = ImageIO.read(new File("images/images/user.png"));
                ableToEdit = ImageIO.read(new File("images/images/user-yellow.png"));
            catch (Exception e)
                System.out.println("Not able to read images " + e);
         * The paint method. Checks what the status is of each seat and draws them accordingly.
        public void paint(Graphics g)
            Show show = getShow();
            int numberOfRows = show.getTheater().getNumberOfRows();
            int numberOfSeatsInRow = show.getTheater().getSeatsPerRow();
            for (int i = 0; i < numberOfRows; i++)
                for (int j =0; j < numberOfSeatsInRow; j++)
                    Seat seat = getShow().getRow(i).getSeat(j);
                    if(seat.isAbleToEdit())
                        g.drawImage(ableToEdit, j*unit+1, i*unit+1, null);
                    else if (seat.isBooked())
                        g.drawImage(booked, j*unit+1, i*unit+1, null);
                    else if (!seat.isBooked() && !seat.isSelected())
                        g.drawImage(free, 0, 0, this);
                    else if (seat.isSelected())
                        g.drawImage(toBeBooked, j*unit+1, i*unit+1, null);
        }

    just work on getting one simple image to .jar OK
    e.g. this should .jar OK (after changing image names)
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    class Testing
      Image img;
      public void buildGUI()
        try
          java.net.URL url = new java.net.URL(getClass().getResource("Test.gif"), "Test.gif");
          if(url != null) img = javax.imageio.ImageIO.read(url);
        catch(Exception e){}//swallow exception - handled in paintComponent
        JPanel p = new JPanel(){
          public void paintComponent(Graphics g){
            super.paintComponent(g);
            if(img != null) g.drawImage(img,100,100,this);
            else g.drawString("this space for rent",100,100);
        JFrame f = new JFrame();
        f.getContentPane().add(p);
        f.setSize(400,300);
        f.setLocationRelativeTo(null);
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.setVisible(true);
      public static void main(String[] args)
        SwingUtilities.invokeLater(new Runnable(){
          public void run(){
            new Testing().buildGUI();
    }put the image in the same folder, make .jar, then try the .jar on another pc
    if all OK, change code to locate image file in subfolder, make .jar, then try the .jar on another pc
    if all OK now, modify main program accordingly.
    note: in .jars, capitalization of the image file names counts
    e.g. in my above example, if I change Test.gif to test.gif, the image is not drawn

  • Firefox won't open localhost files, it downloads the file instead and then won't show images, IE9 localhost works fine.

    I have installed XAMPP to preview web pages locally. Everything works fine in IE9 but not in Firefox. When I load a localhost page Firefox downloads the file, then displays the downloaded file without showing images within the page.
    So, in IE9 the address bar looks like this (correctly): http://localhost/my_sites/WebMaestro/Exercises/Lesson8/changeImage.html
    In Firefox the address bar looks like this: file:///C:/Users/Rog/AppData/Local/Temp/changeImage-3.html

    Are you using a Firefox extension like '''Auto Save Document ''' ? If you are using then you need to disable it. The documents are stored as html-text only (no embedded objects like pictures etc.) As a result the images don't appear on browser.

  • Can't open file:///-Links in Messages or Mail (Adium is working)

    In 10.9 opening of file:///-Links was no problem with PathFinder. After upgrading I can't open file:///-Links in Messages or Mail. Only Adium is still working. What can I do to enable it again? Or did Apple stopped supporting the file:///-Protocol? Best regards Michael

    Safari > Preferences > General > Default web browser: Safari (or whatever you want.)

  • File Link to show the image or logo

    Database Version:10g
    Report Builder Version:10g
    Good Morning to one and all,
    Guys Iam Facing the problem to show a logo on the report using the
    Image Url option.If i use the image option and set the path of the logo it is displaying but when i change the option Source File Format to Image Url and Source File name to http://www.XXXXX.com/XXX/images/logo.jpg it is only displaying the text.
    Plss help me out guys
    Thanks & Regards :)

    Denis Thanks for the reply :)
    Actually iam not setting any System parameters.Iam just running the report using Run paper layout option Iam not running it on web.
    Is it compulsory to Run the report in web or set the system parameters to display the logo using the File link???
    Regards

  • We are currently looking for a way to link images to a design file within programs like InDesign and Illustrator using an HTML link instead of a local file.  We are hosting our images in SharePoint and need the design file to retain it's links, no matter

    We are currently looking for a way to link images to a design file within programs like InDesign and Illustrator using an HTML link instead of a local file.  We are hosting our images in SharePoint and need the design file to retain it's links, no matter who on our network opens the design file.

    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • Issue opening .AI file with linked/embedded images in Illustrator 6

    Received an Illustrator 16.x ai file with 6 Linked\embedded images. Opening in Illustrator 16.0.3 2 images are missing, but opening in Illustrator 15.1 opens them correctly. Illustrator 16.0.3 has warning "Could not find linked file “filename.png”. Choose replace to select another file or Ignore to leave the link unchanged". Illustrator 15.1 has warning "The file “filename.ai” was created by a newer version of Illustrator. Would you like to import this file? Some data loss may occur.". When I open in Photoshop 12.1 and select Images only 4 images show. The two that are missing in ai. are not showing in Photoshop Images option tab, but are in Photoshop when I open the file using pages option tab. Any idea what is happening here and why Illustrator 15.1 opens fine, but Illustrator 16.0.3 cannot?
    Thanks,  Dale

    Illustrator CS5 opens the PDF part of the file. Images are always embedded in that part, but you might not be able to edit all objects in it.
    Illustrator CS6 will access the AI part of the file, where linked images are not embedded. You should ask for the images in order to edit the file.
    Recommended reading: Real World Illustrator: What's in a file?

  • Can I link to images using absolute paths in HTML Help and still see them locally?

    I'm publishing HTML help pages to a Web server.  All .htm files on the Web server are in their own folder, and all image files are in a separate folder.  Links to images are generally of the form <img src="/images/clear.png" height="14" width="8">.  That is, the images use an absolute path reference from the doc root folder (rather than relative path from the current file folder, such as "../images/myImg.png").
    I can modify the HTML for the images to follow this convention, but then I cannot see the images locally within RoboHelp, but must instead wait until the files are integrated with the Web server.  Is there a way to set up a RoboHelp project so that I can force an image path of "/images" both locally and in the HTML?
    Using RoboHelp 9.0.1.232.
    Thanks.

    RoboHelp expects the images to be within the project and will need that if you are to see them when working. It then uploads them to the server when you publish.  There is a check box when you publish so that only updated files get  uploaded.
    You could point Resource Manager to the server folder with the images and then link to those images. What happens then is the image gets downloaded into your project so that you see it when working. If the server image changes you will see the icon in Project Manager changes so that you can update the local copy. It would be a one-off exercise changing your workflow.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Using local file links like file://n:/path/filename.txt in Announcements does not work

    Hi all,
    I would like to use the SharePoint 2013 announcement web part for our company intranet. Basically this works fine. Now and then we have the need to include local file links into the body of the announcement, e.g. "Read this new Version of
    file x: link". When creating a new announcement I can insert a link like this:
    file:///n:/path/file.docx or similar.
    But as soon as I save the new announcement, the link is gone (href part is removed from the anchor).
    Is this behaviour per design? Can I change it to allow local file links inside of list columns?
    Thanks for your help,
    Nothi

    Hi Nothi,
    We can go to that particular existing announcement list(e.g. mine is Announcement1)->list settings page.
    1. then make sure the option "Allow management of content types? " is enabled from Advanced settings.
    2. then click "Annoucement" content type link (like image below).
    3. then click "Body" column link.
    4. then click "Edit column" link.
    5. then select "Rich text" option as above image showed, save the change.
    6. then you can test again in this particular announcement list, it should work.
    If you want make all announcement type lists could use link to network location in the furure, you can create a custom announcement content type with the Body column which has enabled this "Rich text" option, then use this
    custom announcement content type for those lists.
    Thanks
    Daniel Yang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Online banking site now shows login page as text-only; on different computer it still shows page with images and clickables -- is there a fix?

    Previously when I logged in to my INGdirect online bank account, the login window came up showing images and clickable hotspots. Recently, the login window changed to a text-only version. On two different computers running Firefox, the login comes up in the previous version, with images and clickable hotspots. I'm unaware of having done anything to change my settings either in Firefox or on the banking website. Because it seems to be localized on this computer, I've tried downloading latest version of Firefox, but got no change, login still comes up in text-only format.

    Try clearing your browser cache.
    Tools > Clear Recent History... - hit Details and make sure only Cache is selected, then select Everything and hit the Clear Now button.

  • After upgrading my iPhone 4S to iOS6, my Find My Friends app no longer links to my Contacts and does not show contact names. It only shows e-mail addresses and does not link up to the corresponding email address in my Contacts. How can I fix this?

    After upgrading my iPhone 4S to iOS6, my Find My Friends app no longer links to my Contacts and does not show contact names. It only shows e-mail addresses and does not link up to the corresponding email address in my Contacts. How can I fix this?

    I am also having problems with a site I am building. No matter what websafe font I use it displays as New Times Roman in FireFox. The correct fonts show in both IE9 and Chrome.
    In addition, text shifts in FireFox. I have to position other text objects farther and farther apart as I go down the page or they start to overlap. Nav buttons and other images also have to be positioned in the wrong place for them to be in the correct place when the page is opened in FireFox. FireFox should display pages correctly by default. I can't expect th average user to have to tweek his/her settings to display my site.
    I have been recommending FireFox on my website as the best browser. I might have to change that and abandon FireFox myself.

  • "File Link" - Images - displaying landscape image as portrait image

    I am trying to link a image by using file link button. I have a image of size, width 10' and height 6'. When i link this image in reports, it doesn't come up in these coordinates. It is displaying as 6x6 size image. I have tried to link other images also. Report doesn't display linked images in their actual size, even if i change the size of rectangle in reports for these linked files.
    Any idea how to fix this in report?
    Thanks

    I have figured it out. In paper layout mode it doesn't display right size. But in paper design mode it is showing full image.

Maybe you are looking for

  • Layer Opacity shortcuts not working on mac OSX 10.9.5

    Hello, I work on a macbook pro retina (OSX 10.9.5.) with photoshop CC and the shortcuts to change the layers' opacity don't work. When I press a number (with a tool other than the brush tool), I know it should change the layer's opacity depending on

  • Exists in sequence

    So I can create a sequence, insert and delete from it, but can I do a quick "in" check. Something like     if (3 in [1..10]) ...

  • How to include new fields for output conditions

    Dear Gurus, I want to maintain the field "kunag" in output condition table.But it's displaying in allowed filedcatalog but at the time of creating condition table it's not showing there.Please advice me. Thanks Hari

  • Sun Management Console 2.0 - RMIERROR

    Hi Guys, SMC Loads up fine, but none of the modules are loading for me sSuch as performance). The error which is returned is : Performance is not able to connect to the server. Reason: RMIERROR. Verify that the server is running. If it is running, tr

  • Import more than 1 dump file

    Kindly some one help me , how to specify more than 1 dump file in the para file. I know how to spcify one dump file in the parfile. I dont know how to specify 2 dump file to load as my export produces 2 dump files as the limit of file size.