Display image in a new window

HI,
I am new with APEX ,
I have an application storing an image in blob column and when I click the link the image is showing in the same window, I'd like to open a new window to show the image.
Thanks

A simple solution would be to use a case selection so that when you criteria has been met
then a VI pops ups with image .
Use an exit button to terminate VI(close ).
chow
xseadog

Similar Messages

  • Display an image in a new window

    I am trying to display an image when certain criteria is met.  How can I either open the image to a new window jsut displaying the image or just have the image pop up in the window that is already open.
    Thanks

    A simple solution would be to use a case selection so that when you criteria has been met
    then a VI pops ups with image .
    Use an exit button to terminate VI(close ).
    chow
    xseadog

  • Image in gallery - new window

    http://thebeautyroomashby.co.uk/gallery.html
    Used contentflow.js and have now finally got this gallery displaying how I want.
    Just one quick question, I was wondering if anyone knew how to overcome as I can't seem to figure it out:
    It says you can open the image in a new window (at the moment you can only open it in the same window and only when the image is in the centre (which is perfect as you need to be able to click through the gallery))
    I tried both bits of code at the bottom of this page: http://www.jacksasylum.eu/ContentFlow/docu.php
    but the problem is because it makes the images a link when you do this, you can't click through the gallery (you have to use the scroll, which is not what I want!) - so i want it to only open the image in a new windown when it's in the centre.
    I had a scroll through the js sheet but wasn't sure what I was looking at... surely as it already only opens when the image is in the centre, there must be a setting that just changes it from same to new/blank window?
    Regards
    L

    I'm not sure if there is an easier way to do it in JavaScript. However, in the link tag of each photo you can set
    target="0"
    for example:
    <canvas src="entrance.jpg" width="207" height="207" class="content landscape" target="0" title="Beauty Room Entrance" origproportion="1.5"></canvas>

  • When I use yahoo images and i open an image in a new window, it tweakes out firefox so that panes are distorted and exerything, the whole firefox browser looks like an F5 tornado took it apart and lumped it on my desktop... is this a known glitch?

    When I use yahoo images and open an image in a new window, the page, once I click its tab causes the entire browser to scramble graphically, making it nearly impossible to navigate further. I right-clicked and selected close tab. That regains the visual clarity of the browser. But how can I fix this to browse the images?

    Phillipp,
    I tried it again using "save link as", and this time it actually worked! I just now downloaded several more using the "save link as" option, and it works perfectly. Thanks. Problem solved.
    Littleberry

  • Display pdf in a new window

    I need to display the pdf in a new window on click of a button in the iview. The pdf is fetched as an array of bytes from an RFC. It displays correctly, but in the same window. Pls see the extract of the code:
    To Write
    writeText(IPortalComponentRequest request, IPortalComponentResponse response, byte[] pdfResult)
    try{
    Document doc = new Document(PageSize.A4);
    javax.servlet.http.HttpServletResponse myResponse = request.getServletResponse(true);
    myResponse.setHeader ("ContentDisposition", "inline;filename=\"ShortCV.pdf\"");
    myResponse.setContentType("application/pdf");
    OutputStream os = myResponse.getOutputStream();
    os.write(pdfResult);
    PdfWriter.getInstance(doc,os);
    catch(Exception Ex){
    OnView(Event evt){
    JCO.Field Table1 = m_function.getExportParameterList().getField("PDF_STRING");
    client.execute(m_function);
    writeText(request, response, Table1.getByteArray());
    onView is called on
    Button myButton11 = new Button("myButton11");
    myButton11.setText("View");
    myButton11.setOnClick("View");
    myButton11.render(rendererContext);
    Pls advice

    See Display pdf in a new Window in a JSPDynPage

  • Display Oracle Report on new window

    Hi,
    How can I display Oracle report from HTML DB on a new browser window? I have branch to this report. Thanks much for your help.
    Lakshmi

    Search this forum for "new window". You should find it. Try:
    checkbox and report page in new window

  • Problem displaying PDF file in new window.

    Using NetBeans 6.5, Internet Explorer 7.
    I am using the code example from BalusC at the site:
    http://balusc.blogspot.com/2006/05/pdf-handling.html
    I am having no problem reading and displaying the PDF file, but it displays it in the same window,
    not a new window and it overwrites the current page, so I can't use the back arrow to fetch the page that is overwritten.
    I am using a commandLink to fetch the file.
    Does anyone know why I am not getting a new window or tab for the display?
    The jsp portion for the link is:
    <h:commandLink action="#{MainPage.linkAction3_action}" id="linkAction3"
              style="color: rgb(0, 0, 0); font-family: Arial,Helvetica,sans-serif; font-size: 12px; font-weight: bold; left: 280px; top: 0px; position: absolute"
              target="_blank" value="Insurance Document"/>The "MainPage.linkAction_action" method just makes a call to the display function:
        public String linkAction3_action() {
            sb1.setMessage("");
            dsb.setFilePath("C:/");
            dsb.setFileName("Insurance_Summary.pdf");
            dsb.downloadPDF();
            return null;
        }And the downloadPDF() method is basically a cut and paste from the BalusC site;
        public void downloadPDF()
            // Reference:   http://balusc.blogspot.com/2006/05/pdf-handling.html
            // Prepare.
            FacesContext facesContext = FacesContext.getCurrentInstance();
            ExternalContext externalContext = facesContext.getExternalContext();
            HttpServletResponse response = (HttpServletResponse) externalContext.getResponse();
            File file = new File(getFilePath(), getFileName());
            BufferedInputStream input = null;
            BufferedOutputStream output = null;
            try {
                // Open file.
                input = new BufferedInputStream(new FileInputStream(file), DEFAULT_BUFFER_SIZE);
                // Init servlet response.
                response.reset();
                response.setContentType("application/pdf");
                response.setContentLength( (int)file.length());
                response.setHeader("Content-disposition", "inline; filename=\"" + fileName + "\"");
                output = new BufferedOutputStream(response.getOutputStream(), DEFAULT_BUFFER_SIZE);
                // Write file contents to response.
                byte[] buffer = new byte[DEFAULT_BUFFER_SIZE];
                int length;
                while ((length = input.read(buffer)) > 0) {
                    output.write(buffer, 0, length);
                // Finalize task.
                output.flush();
            catch( Exception e )
                System.out.println( "Error displaying file.");
            finally {
                // Gently close streams.
                close(output);
                close(input);
            // Inform JSF that it doesn't need to handle response.
            // This is very important, otherwise you will get the following exception in the logs:
            // java.lang.IllegalStateException: Cannot forward after response has been committed.
            facesContext.responseComplete();
        }

    1) window.open will open a new window and call a servlet.
    window.open ("http://path_to_yourservlet/PDFServlet", "newWindowName");
    if you ant to pass some values from your web page to the servlet you can pass as
    window.open ("http://path_to_yourservlet/PDFServlet?param1=value1&param2=value2", "newWindowName");
    2) The servlet will fetch and display the pdf file.
    import java.io.BufferedInputStream;
    import java.io.BufferedOutputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.io.OutputStream;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    public class PDFServlet extends javax.servlet.http.HttpServlet implements javax.servlet.Servlet
         private final static int DEFAULT_BUFFER_SIZE = 1000;
         public PDFServlet()
              super();
         public void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
              String fileName = "Insurance_Summary.pdf";
              File file = new File("C:/"+fileName+"");
              response.setContentType("application/pdf");
         OutputStream output = response.getOutputStream();
         BufferedInputStream input = null;
         //BufferedOutputStream output = null;
         try {
         // Open file.
         input = new BufferedInputStream(new FileInputStream(file), DEFAULT_BUFFER_SIZE);
         response.setContentLength( (int)file.length());
         response.setHeader("Content-disposition", "inline; filename=\"" + fileName + "\"");
         output = new BufferedOutputStream(response.getOutputStream(), DEFAULT_BUFFER_SIZE);
         // Write file contents to response.
         byte[] buffer = new byte[DEFAULT_BUFFER_SIZE];
         int length;
         while ((length = input.read(buffer)) > 0) {
         output.write(buffer, 0, length);
         output.flush();
         catch( Exception e )
         System.out.println( "Error displaying file.");
         finally {
         input.close();
    Regards,
    Milind Dhar

  • Opening a list item pdf attachment from the display form in a new window

    I have a list setup in which attachments are enabled.
    Users attach pdf's to list items.
    When they go into the display form for a list item and click on a pdf attachment in the "Attachments" area at the bottom of the form, it opens in the same browser window.
    I would like to amend this so it opens in a new window.  Has anyone found a fix for this?
    Thanks in advance,
    Mark

    Hi ,
    Put the code below in your DispForm.aspx page .The you can open the attachments in a new window. Including all the other links on the DispForm.aspx page .
    <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
    <script type="text/javascript">
    $(function(){ 
    $('a').click(function(){
                    window.open(this.href);
                   return false;
    });</script>
    Thanks,
    Entan Ming

  • Display portal report in new window

    In 9.0.2, I have a sql based portal report displayed on my page. I would like to create links that open up a new report in a different browser window. Is this possible? For example:
    My 1st report lists the Deptno, Deptname in a tabular display. I created a link on the Deptname that calls up all employees in the department. I want that report to show in a new window. When I select a different Deptno, it should re-display with the correct employees.

    Not familiar with using this:
    wwctx_api.get_proc_path(p_url =>
    Can you give me a little help. Here is my SQL curentky be processed on the graph.
    select 'STARS3.ADMIN_DAILY_ATT_DET.SHOW?p_arg_names=v_student_id&p_arg_values='||replace(:student_id,'%','%25') ||
    '&p_arg_names=v_atcode_desc&p_arg_values='||replace(replace(C.atcode_desc,'%','%25'),' ','%20')||'&p_arg_names=_v_atcode_desc&p_arg_values=%3D'
    the_link,
    the_name,
    count(*) the_data

  • Display pdf in a new Window in a JSPDynPage

    I need to display the pdf in a new window on click of a button in the iview. The pdf is fetched as an array of bytes from an RFC. It displays correctly, but in the same window. Pls see the extract of the code:
    To Write
    writeText(IPortalComponentRequest request, IPortalComponentResponse response, byte[] pdfResult)
    try{
    Document doc = new Document(PageSize.A4);
    javax.servlet.http.HttpServletResponse myResponse = request.getServletResponse(true);
    myResponse.setHeader ("ContentDisposition", "inline;filename=\"ShortCV.pdf\"");
    myResponse.setContentType("application/pdf");
    OutputStream os = myResponse.getOutputStream();
    os.write(pdfResult);
    PdfWriter.getInstance(doc,os);
    catch(Exception Ex){
    OnView(Event evt){
    JCO.Field Table1 = m_function.getExportParameterList().getField("PDF_STRING");
    client.execute(m_function);
    writeText(request, response, Table1.getByteArray());
    onView is called on
    Button myButton11 = new Button("myButton11");
    myButton11.setText("View");
    myButton11.setOnClick("View");
    myButton11.render(rendererContext);
    Pls advice

    Detlev .....
    I am still not able to implement your suggested solution.
    If I call javascript written in JSP, will I be able to pass a bean to it. Pls see the code that I hv in addition to the one posted ...
    In ICellRenderer ....
    if ( column == 11 )
    Button myButton11 = new Button("myButton11");
    myButton11.setText("View");
    myButton11.setOnClientClick("Test("beantv2")");
    In JSP
    <script>
    function Test(zBean)
    popAssetWinSpecs = "left=250,top=250,width=300,height=300,scrollbars=no,toolbar=no,menubar=no,resizable=no,status=no,titlebar=no,location=no";
    htmlfile="/irj/servlet/prt/portal/prtroot/AIPLetters.HersheyTeamViewerAIPPDF?zBean="+zBean;
    window.open(htmlfile,"editWindow",popAssetWinSpecs);
    return false;
    </script>
    in the doInitialization of the second comp
    IPortalComponentRequest request = (IPortalComponentRequest) this.getRequest();
    IPortalComponentContext compcontext = request.getComponentContext();
    AIPBean = new HersheyTeamViewerAIPBean();
    HttpServletRequest zHttpRequest = request.getServletRequest();
    AIPBean = (HersheyTeamViewerAIPBean)zHttpRequest.getAttribute("zBean");
    nothing gets executed ....
    I am not sure whether I am passing the bean correctly
    Thanks for your help,
    Devina

  • Displaying image in a frame window using file dialog(using swing) ...

    here is my code....pls try running it...
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    public class MainMenu3 extends JFrame {
    BorderLayout layout ;
    JPanel buttonPanel ;
    JFileChooser fileChooser ;
    JButton btn1,btn2,btn3,btn4,btn5,btn6,btn7,btn8;
    JMenuItem item1,item2,item3,item4,item5;
    JTextArea area;
    static private final String newline = "\n";
    JLabel label;
    public MainMenu3( ) {
    super("Image Processor");
    setSize(1024,740);
    setLocation(0, 0);
    layout= new BorderLayout(20,20);
    setLayout(layout);
    fileChooser = new JFileChooser();
    fileChooser.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
    // create the File menu
    JMenu file = new JMenu("File");
    file.setMnemonic(KeyEvent.VK_F);
    file.add(item1=new JMenuItem("New"));
    file.add(item2=new JMenuItem("Open"));
    file.addSeparator();
    file.add(item3=new JMenuItem("Save "));
    file.add(item4=new JMenuItem("Save As"));
    file.addSeparator();
    file.add(item5 = new JMenuItem("Quit"));
    // do some fancy stuff with the item
    item1.setMnemonic(KeyEvent.VK_N);
    item1.setAccelerator(
    KeyStroke.getKeyStroke(KeyEvent.VK_N, Event.CTRL_MASK));
    item2.setMnemonic(KeyEvent.VK_O);
    item2.setAccelerator(
    KeyStroke.getKeyStroke(KeyEvent.VK_O, Event.CTRL_MASK));
    item3.setMnemonic(KeyEvent.VK_S);
    item3.setAccelerator(
    KeyStroke.getKeyStroke(KeyEvent.VK_S, Event.CTRL_MASK));
    item5.setMnemonic(KeyEvent.VK_Q);
    item5.setAccelerator(
    KeyStroke.getKeyStroke(KeyEvent.VK_Q, Event.CTRL_MASK));
    area=new JTextArea(10,10);
    //adding event listeners
    item2.addActionListener(new ActionListener( ) {
    public void actionPerformed(ActionEvent e) {
    int result = fileChooser.showOpenDialog(null);
    File file1 = fileChooser.getSelectedFile();
    area.append("Attaching file: " + file1.getParent()+"\\"+file1.getName()
    + "." + newline);
    Image img = Toolkit.getDefaultToolkit().getImage(file1.getParent()+"\\"+file1.getName());
    item5.addActionListener(new ActionListener( ) {
    public void actionPerformed(ActionEvent e) {
    System.exit(0);
    // create the Filter menu
    JMenu Filter = new JMenu("Filter");
    Filter.setMnemonic(KeyEvent.VK_I);
    Filter.add(new JMenuItem("Normal"));
    Filter.add(new JMenuItem("Blur"));
    Filter.add(new JMenuItem("Sharpen"));
    Filter.add(new JMenuItem("Invert"));
    Filter.add(new JMenuItem("Rotate"));
    Filter.add(new JMenuItem("GrayScale"));
    Filter.add(new JMenuItem("Colour"));
    // create the Help menu
    JMenu Help = new JMenu("Help");
    Help.setMnemonic(KeyEvent.VK_H);
    // create a menu bar and use it in this JFrame
    JMenuBar menuBar = new JMenuBar( );
    menuBar.add(file);
    menuBar.add(Filter);
    menuBar.add(Help);
    //setJMenuBar(menuBar);
    //creating buttons
    btn1=new JButton("Blur");
    btn1.setToolTipText("imparts blurredness to the image");
    btn2=new JButton("Sharpen");
    btn2.setToolTipText("sharpens the images outlines");
    btn3=new JButton("Invert");
    btn3.setToolTipText("inverts the image 180 degress ");
    btn4=new JButton("Rotate");
    btn4.setToolTipText("rotates the image by 90 degrees");
    btn5=new JButton("GrayScale");
    btn5.setToolTipText("imparts greyscale to the image");
    btn6=new JButton("Color");
    btn6.setToolTipText("color the image as desired");
    btn7=new JButton("Load");
    btn8=new JButton("Exit");
    buttonPanel = new JPanel();
    buttonPanel.setLayout(new GridLayout(1,6,10,0));
    buttonPanel.add(btn1);
    buttonPanel.add(btn2);
    buttonPanel.add(btn3);
    buttonPanel.add(btn4);
    buttonPanel.add(btn5);
    buttonPanel.add(btn6);
    add(menuBar, BorderLayout.NORTH);
    add(btn7, BorderLayout.WEST);
    add(btn8, BorderLayout.EAST);
    add(area,BorderLayout.CENTER);
    add(buttonPanel,BorderLayout.SOUTH);
    public static void main(String[] args) {
    JFrame f = new MainMenu3( );
    f.addWindowListener(new WindowAdapter( ) {
    public void windowClosing(WindowEvent we) { System.exit(0); }
    f.setVisible(true);
    the code runs fine but d prob is.... i wnt is load a image in the area specified as Jtextarea(as i do not know the component on which the image is to be loaded,so i have just used it as a region to load the image)....pls help me to display an image in the specified region when i click on the "OPEN" option on the File Menu bar..

    here is my code....pls try running it...
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    public class MainMenu3 extends JFrame {
    BorderLayout layout ;
    JPanel buttonPanel ;
    JFileChooser fileChooser ;
    JButton btn1,btn2,btn3,btn4,btn5,btn6,btn7,btn8;
    JMenuItem item1,item2,item3,item4,item5;
    JTextArea area;
    static private final String newline = "\n";
    JLabel label;
    public MainMenu3( ) {
    super("Image Processor");
    setSize(1024,740);
    setLocation(0, 0);
    layout= new BorderLayout(20,20);
    setLayout(layout);
    fileChooser = new JFileChooser();
    fileChooser.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
    // create the File menu
    JMenu file = new JMenu("File");
    file.setMnemonic(KeyEvent.VK_F);
    file.add(item1=new JMenuItem("New"));
    file.add(item2=new JMenuItem("Open"));
    file.addSeparator();
    file.add(item3=new JMenuItem("Save "));
    file.add(item4=new JMenuItem("Save As"));
    file.addSeparator();
    file.add(item5 = new JMenuItem("Quit"));
    // do some fancy stuff with the item
    item1.setMnemonic(KeyEvent.VK_N);
    item1.setAccelerator(
    KeyStroke.getKeyStroke(KeyEvent.VK_N, Event.CTRL_MASK));
    item2.setMnemonic(KeyEvent.VK_O);
    item2.setAccelerator(
    KeyStroke.getKeyStroke(KeyEvent.VK_O, Event.CTRL_MASK));
    item3.setMnemonic(KeyEvent.VK_S);
    item3.setAccelerator(
    KeyStroke.getKeyStroke(KeyEvent.VK_S, Event.CTRL_MASK));
    item5.setMnemonic(KeyEvent.VK_Q);
    item5.setAccelerator(
    KeyStroke.getKeyStroke(KeyEvent.VK_Q, Event.CTRL_MASK));
    area=new JTextArea(10,10);
    //adding event listeners
    item2.addActionListener(new ActionListener( ) {
    public void actionPerformed(ActionEvent e) {
    int result = fileChooser.showOpenDialog(null);
    File file1 = fileChooser.getSelectedFile();
    area.append("Attaching file: " + file1.getParent()+"\\"+file1.getName()
    + "." + newline);
    Image img = Toolkit.getDefaultToolkit().getImage(file1.getParent()+"\\"+file1.getName());
    item5.addActionListener(new ActionListener( ) {
    public void actionPerformed(ActionEvent e) {
    System.exit(0);
    // create the Filter menu
    JMenu Filter = new JMenu("Filter");
    Filter.setMnemonic(KeyEvent.VK_I);
    Filter.add(new JMenuItem("Normal"));
    Filter.add(new JMenuItem("Blur"));
    Filter.add(new JMenuItem("Sharpen"));
    Filter.add(new JMenuItem("Invert"));
    Filter.add(new JMenuItem("Rotate"));
    Filter.add(new JMenuItem("GrayScale"));
    Filter.add(new JMenuItem("Colour"));
    // create the Help menu
    JMenu Help = new JMenu("Help");
    Help.setMnemonic(KeyEvent.VK_H);
    // create a menu bar and use it in this JFrame
    JMenuBar menuBar = new JMenuBar( );
    menuBar.add(file);
    menuBar.add(Filter);
    menuBar.add(Help);
    //setJMenuBar(menuBar);
    //creating buttons
    btn1=new JButton("Blur");
    btn1.setToolTipText("imparts blurredness to the image");
    btn2=new JButton("Sharpen");
    btn2.setToolTipText("sharpens the images outlines");
    btn3=new JButton("Invert");
    btn3.setToolTipText("inverts the image 180 degress ");
    btn4=new JButton("Rotate");
    btn4.setToolTipText("rotates the image by 90 degrees");
    btn5=new JButton("GrayScale");
    btn5.setToolTipText("imparts greyscale to the image");
    btn6=new JButton("Color");
    btn6.setToolTipText("color the image as desired");
    btn7=new JButton("Load");
    btn8=new JButton("Exit");
    buttonPanel = new JPanel();
    buttonPanel.setLayout(new GridLayout(1,6,10,0));
    buttonPanel.add(btn1);
    buttonPanel.add(btn2);
    buttonPanel.add(btn3);
    buttonPanel.add(btn4);
    buttonPanel.add(btn5);
    buttonPanel.add(btn6);
    add(menuBar, BorderLayout.NORTH);
    add(btn7, BorderLayout.WEST);
    add(btn8, BorderLayout.EAST);
    add(area,BorderLayout.CENTER);
    add(buttonPanel,BorderLayout.SOUTH);
    public static void main(String[] args) {
    JFrame f = new MainMenu3( );
    f.addWindowListener(new WindowAdapter( ) {
    public void windowClosing(WindowEvent we) { System.exit(0); }
    f.setVisible(true);
    the code runs fine but d prob is.... i wnt is load a image in the area specified as Jtextarea(as i do not know the component on which the image is to be loaded,so i have just used it as a region to load the image)....pls help me to display an image in the specified region when i click on the "OPEN" option on the File Menu bar..

  • Opening an image in a new window

    Ok, I've been browsing around the web trying to find out but
    all examples point me to the this one:
    on(release){
    getURL ("your page name/path", "_blank");
    but i don't want to grab the image from a url i want to be
    able to click on a thumbnail which then opens a new window of the
    larger version of the picture that's within my site folder. I hope
    this makes sense. Any help would be much appreciated.

    Where are your images then, if they're not somewhere online?
    You said
    they're in your site folder? Then they're online and getURL
    will work
    fine...
    Dave -
    Head Developer
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

  • Display remote topic in new window with remote project TOC?

    Although I've used RoboHelp for several years, I'm self-taught and work independently, so would have to classify myself as a beginning user. I'm using RoboHelp HTML 6.0 and Windows XP Professional.
    My question is this: I know how to link to a topic in a remote project, but is there a way to display the remote topic in a new help window with its own (remote project's) TOC? I've attached an illustration. Here's the background, if you need it, and why I think I want to do this:
    The company I'm working with previously provided user assistance via three printed manuals: a Setup Guide, a User's Guide, and an Administrator's Guide. The first project I completed for them was to convert the information in the User's and Administrator's Guides into a single online help system. We combined the two because their users are generally smaller companies where the "users" and the "administrators" are often the same people. The Help is deployed as a .chm file on the same CD with software updates.
    The next step we are taking is to transform the Setup Guide to online help. It will be context-sensitive (screen-level) help for each of the 80 or so setup screens that a new user of their software should complete to tailor the application to their business practices and get the most out of it. Obviously users will need a higher level of access rights to be able to perform or make changes to the setup. However we still want to be able to cross-reference the user's help and the setup help, so that the relationship between specific setup choices and functionality is clear and adjustments can easily be made, if necessary, as they gain more experience with the software. For example, a user feels a need for an additional customer description code on a customer profile page. The user presses F1 to view Help for the page, the Help tells them exactly on which setup screen those codes are created, and they can follow the link to those instructions if they want to.
    I want these two help systems to be accessible to each other and the user, and yet retain their separate identities. I don't think I want Setup to appear as yet another book in the User's Table of Contents, which is already somewhat overwhelming. So far I have written it as a separate RH project, knowing that I can import topics to the User help if I need to. Thanks in advance for your help! And don't forget I'm a relative newbie to RH. Thanks!

    I got the new window to open up with the new CHM now...
    As a follow up, it seems I need to define the new window with
    the specific TOC and Index of the new CHM. I there a way to define
    a window that picks up the related TOC and Index of the chm that it
    opens(in this way, a single window type gets created, so that when
    I get a new subsytem, I do not have to keep adding/creating new
    windows, which makes me have to redistribute the main system
    help...which is what I am trying to avoid)

  • Viewing Larger Image Version / in New Window/Tab

    I have added in the links to larger image files to my lower res images. When I click those images in Preview it takes me out of the page and to a new window to view the larger image. Will this larger image be viewed in antoher tab/window? I see the option to click "Open in new Window/Tab" in the hyperlinks menu. I have not activated that for each image link. Should I?
    I want to make sure I don't leave the site and don't maintain a tab to get bak to the page I was on after I view a larger image.

    Yes you will need to do it for each link. Wether it opens in a new tab or a new window really depends on what browser the user is using and how they have it set up.

  • How do you open an image in a new window at a larger size?

    Yes I am new at this.
    Basically all I'd like to do is have a thumbnail on a page as a button, click it so it opens in a new window at a zoomed larger size.
    I know this is probably simple but I can't figure out how to do this.
    Anybody have a second to point me in the right direction?
    I would appreciate it.

    It sounds like you want to create a button hot spot. See this article:
    https://blogs.adobe.com/indesigndocs/2010/12/hot-spot-button-workaround-for-indesign-dig-p ubs.html
    You might also want to download the free DPS Tips app for an example of this and other DPS effects.

Maybe you are looking for