Possible to open two preview windows simultaneously?

Hi,
I'm trying to view a PDF with two preview panes at the same time, one with the text I'm reading, and one with the appendix of the document.
I'd like to see both at the same time so I don't have to keep switching pages.
Is this possible?
Thanks,
Boris

Something else you might try...
With the document displayed, open the Drawer and highlight your appendix from among the listed pages.
From the Edit menu choose Copy.
From the File menu choose "New From Clipboard" -- this will open your appendix page in a new pane, and will leave your main document pane unchanged. Adjust the size of each pane a bit and you should be able to view them both side by side.
Good luck!
Andrew9
iMac 1 GHz Flat Panel 15" PPC 768 MB RAM   Mac OS X (10.4.9)  

Similar Messages

  • Possible To View Two Edit Windows Simultaneously?

    Is there a way to either view 2 files simultaneously (as in the MS "compare side-by-side," etc.) in edit view? Or at the least, quickly toggle between the windows when two files are open? I need to bounce back and forth between 2 or more files a lot, but each time I'm having to go to the Window" drop-down menu, and click on the window I want to see. That's slowing down my workflow.
    I did a search of the Help and Knowledgebase but didn't find anything.
    Thanks.
    Ken

    For viewing two audio files 'side by side', it's better to align them horizontally, isn't it? The Multitrack view (MV) is ideal for this. You can expand the the vertical track size so that you see only two waveforms, having a good view at each. You only need to engage the Mute or Solo buttons for each track to switch between them. If you set any markers (F8) it will actually appear in either view, should you opt to open a wave in Edit View (one at a time).
    What is "editing" anyway? Does it always mean altering the content of the wave (only possible in EV), or does drawing volume curves and moving things around in MV account as editing too?
    You can alter the volume of a section in EV destructively and compare the result with the original perhaps, aligned in MV.
    You can also draw different volume curves on two instances of the same wave in MV, and then compare the
    audible result. Note that you can actually slice, delete and move sections of your wave around in MV as well. This way you can have several working copies of your edit (indeed?) easily available for comparison.

  • Is it possible to open 2 Firefox windows with a different set of tabs at start-up?

    I would like Firefox to open two separate windows at start-up, each containing a different set of tabs.
    Is there a way to do this?

    If you close Firefox with these open and start Firefox with the windows from last time yes.
    It is also possible to select the active tabs/windows by selecting the Home page to be "Use Current Pages".
    *[[How to set the home page]]

  • Open two GUI( JFrame) simultaneously for one application

    Can we open two GUI( JFrame) simultaneously for one application at tha same time.if yes why ?and if no why?

    OK, its really simple, basically, you need a desktop frame to stor all the other frames and then you just pop them in, from a new class each time.
    Here's the code from the demo I learnt it from:
    (The demo itself)
    import javax.swing.JInternalFrame;
    import javax.swing.JDesktopPane;
    import javax.swing.JMenu;
    import javax.swing.JMenuItem;
    import javax.swing.JMenuBar;
    import javax.swing.JFrame;
    import javax.swing.KeyStroke;
    import java.awt.event.*;
    import java.awt.*;
    * InternalFrameDemo.java requires:
    * MyInternalFrame.java
    public class InternalFrameDemo extends JFrame
    implements ActionListener {
    JDesktopPane desktop;
    public InternalFrameDemo() {
    super("InternalFrameDemo");
    //Make the big window be indented 50 pixels from each edge
    //of the screen.
    int inset = 50;
    Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
    setBounds(inset, inset,
    screenSize.width - inset*2,
    screenSize.height - inset*2);
    //Set up the GUI.
    desktop = new JDesktopPane(); //a specialized layered pane
    createFrame(); //create first "window"
    setContentPane(desktop);
    setJMenuBar(createMenuBar());
    //Make dragging a little faster but perhaps uglier.
    desktop.setDragMode(JDesktopPane.OUTLINE_DRAG_MODE);
    protected JMenuBar createMenuBar() {
    JMenuBar menuBar = new JMenuBar();
    //Set up the lone menu.
    JMenu menu = new JMenu("File");
    menu.setMnemonic(KeyEvent.VK_D);
    menuBar.add(menu);
    //Set up the first menu item.
    JMenuItem menuItem = new JMenuItem("New");
    menuItem.setMnemonic(KeyEvent.VK_N);
    menuItem.setAccelerator(KeyStroke.getKeyStroke(
    KeyEvent.VK_N, ActionEvent.ALT_MASK));
    menuItem.setActionCommand("New");
    menuItem.addActionListener(this);
    menu.add(menuItem);
    //Set up the second menu item.
    menuItem = new JMenuItem("Quit");
    menuItem.setMnemonic(KeyEvent.VK_Q);
    menuItem.setAccelerator(KeyStroke.getKeyStroke(
    KeyEvent.VK_Q, ActionEvent.ALT_MASK));
    menuItem.setActionCommand("Quit");
    menuItem.addActionListener(this);
    menu.add(menuItem);
    return menuBar;
    //React to menu selections.
    public void actionPerformed(ActionEvent e) {
    if ("New".equals(e.getActionCommand())) { //new
    createFrame();
    } else { //quit
    quit();
    //Create a new internal frame.
    protected void createFrame() {
    MyInternalFrame frame = new MyInternalFrame();
    frame.setVisible(true); //necessary as of 1.3
    desktop.add(frame);
    try {
    frame.setSelected(true);
    } catch (java.beans.PropertyVetoException e) {}
    //Quit the application.
    protected void quit() {
    System.exit(0);
    * Create the GUI and show it. For thread safety,
    * this method should be invoked from the
    * event-dispatching thread.
    private static void createAndShowGUI() {
    //Make sure we have nice window decorations.
    JFrame.setDefaultLookAndFeelDecorated(true);
    //Create and set up the window.
    InternalFrameDemo frame = new InternalFrameDemo();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    //Display the window.
    frame.setVisible(true);
    public static void main(String[] args) {
    //Schedule a job for the event-dispatching thread:
    //creating and showing this application's GUI.
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();
    Myinternalframe.java:
    import javax.swing.JInternalFrame;
    import java.awt.event.*;
    import java.awt.*;
    public class MyInternalFrame extends JInternalFrame {
    static int openFrameCount = 0;
    static final int xOffset = 30, yOffset = 30;
    public MyInternalFrame() {
    super("Document #" + (++openFrameCount),
    true, //resizable
    true, //closable
    true, //maximizable
    true);//iconifiable
    //...Create the GUI and put it in the window...
    //...Then set the window size or call pack...
    setSize(300,300);
    //Set the window's location.
    setLocation(xOffset*openFrameCount, yOffset*openFrameCount);
    You should be able to tell from that

  • Can I open two Safari windows at the same time?

    Can I open two Safari windows at the same time and split the windows in two on my screen? Right now, I have to open Safari and Firefox to get the split screen. I know I can press command to get multiple tabs, but that's not what I want. I want to use Safari on two open windows.

    HI,
    Open a browser window in Safari. Then Command + N
    Press command and ~ or ` to toggle between the windows.
    Carolyn

  • I have 2 copies of Firefox open (two different windows with lots of tabs), if I reboot can I restore both sessions?

    I have 2 copies of Firefox open (two different windows with lots of tabs), if I reboot can I restore both sessions? I am familiar with clicking history/ restore previous session, but don't want to reboot to let windows update to do it's thing unless I can restore both sessions.

    If they are running different profiles, then yes.

  • Is it possible to play two audio files simultaneously.

    Hi,
    Is it possible to play two audio files simultaneously.
    I modified the 'SpeakHere' to play two audio files simultaneously, it worked perfectly on simulator but get hanged on iphone.
    To this I implemented NSTimer, which regularly checks for both player instance every second.As soon as any player gets stopped Timer task stops the second one forcefully and again starts both.
    thanks.

    Hi Jay
    Do you have the eLearning Suite? If so, you have Adobe Presenter available to you. If you don't, you should be able to download the Presenter installation file and evaluate it.
    Presenter is an add in for PowerPoint. The neat thing about it is that it provides for a Table of Contents type of functionality as you see is configured in Captivate. But the twist with that is you are able to do something you cannot do in Captivate. You are able to insert videos inside the TOC area!
    Just musing out loud... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Designer Control automaticaly opens its Preview Window

    Hey Guys
    I am having a problem and hope you can help to fix it up
    Here is the code i use to open a new Report Using RDC XI with VB6
    Set m_Report = Nothing
    Set m_Report = m_Application.NewReport
    CRDesignerCtrl1.ReportObject = m_Report
    The Above Statements work fine when New Report is created for the first time.
    The Problem is at run time, when i create another new Report (Using Statements above mentioned) Designer Control automaticaly opens its Preview Window tab "Main Report Preview".
    As I am using My own Viewrer Control, I don't want this Tab to be opened. I have searched a lot but yet to find any help
    Kindly let me know what can i do TO NOT LET IT OPEN
    Your Cooperation will be very much appreciated!

    Thank Ludek for your responce..
    Let me explain code
    Referecnes Added:
    Crystal Reports Active X Designer Design And Run-Time Library 11.5
    Embedable Crystal report Designer Control libaray 11.5
    Crystal Active X Report viewere Library 11.5
    Code
    Dim m_Application As New CRAXDDRT.Application
    Dim m_Report As CRAXDDRT.Report
    ' Code Executed for new Report Button
    Set m_Report = Nothing
    Set m_Report = m_Application.NewReport
    CRDesignerCtrl1.ReportObject = m_Report
    '  Set the report source.
    CRViewer1.ReportSource = m_Report
    '  Set the viewer to view the report.
    CRViewer1.ViewReport
    CRViewer1.Zoom 1
    When this code is executed for the 1st time (If i click New Report Button) It works fine. but if I click New Report button again  "Main Report Preview" tab of Embedable Designer Controls opens automatically. This tab is opened precisely for execution of this statement
    CRDesignerCtrl1.ReportObject = m_Report
    More to add, if i click New Report Button again, it raises error "Index out of range".
    If hope this explain my situation, if there is anything else, let me know.
    Your help will very much be appreciated!
    Abdul Rehman

  • Is it possible to open Account Search window in a new page

    Hi All,
    Is it possible to open Account Search window in a new page instead of displaying Account Search on Work center page.
    Any pointers will be helpful.
    Thanks,
    Udaya

    Have a look at the NavBar component and the generic workcenter component. If you are lucky, they utilize one common method for navigation. I would try to put some custom coding in there and use it to open the new link inside a popup.
    Never tried it before as the necessity never occured to me. Thus I can not help you any further. It is just an idea.
    Maybe you get some good results and can post them here
    cheers Carsten

  • Did 11.1 restore the iTunes 10 feature of opening two iTunes windows at the same time?

    I use an iPod Classic and I like rating my songs. When I get home from a trip, I will open two iTunes windows and play with the iPod music and iTunes music at the same time. I cannot upgrade to iTunes 11 because this feature was (stupidly) missing. Did 11.1 bring this functionality back?

    Hi,
    Unfortunately no.
    Jim

  • Mail opens two Safari windows when I click on a link in email

    When I click on a link in Mail, it opens in Safari -- that's the way I have it setup. Yet, the problem is that it opens two windows in Safari, one empty and one with the content of the link.
    This is the second problem I have with Mail. The second one was posted to this discussion but it was not resolved. I repeat here the text of the problem:
    I've been having a problem with mail for a while, when sending attached JPEGs from my Mac using Mail or Entourage. The photos are split -- say a 140 kb file will show up in my two other computers (both Windows PCs) as two files, one 65 kb and the other 75 kb, for example.
    Yet, when I click on Mail's (in my Mac) sent folder and click on the particular sent email, it shows a full blown 140 kb attachment, not split.
    Several weeks ago, my Mac Address book got cranky and for some reason it would repeat the name of an addressee. I finally deleted the name of that addressee and created a new entry and it seemed to work, so it did not split JPEGs -- or at least I thought that was the case.
    Now it is back splitting the JPEGs but this time, the addressee's name is well formatted -- no repeats within the entries in the card in Address Book.
    When I mail something from my Windows PCs and open it in my Mac, the file is complete.
    What could be causing this split?

    Do a malware check with some malware scanning programs on the Windows computer.<br />
    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of their databases before doing a scan.<br /><br />
    *http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    *http://www.superantispyware.com/ - SuperAntispyware
    *http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    *http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    *http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked
    * https://support.mozilla.com/kb/Searches+are+redirected+to+another+site

  • Is a Windows registry error responsible for Firefox opening two browser windows whenever I use a hyperlink from a Word file?

    Whenever I use a hyperlink from an MS Word document, Firefox opens two windows instead of one. The first window is the one I need. The second contains a message that the page could not be found and the address bar contains the URL appended with "Firefoxhtml/shell/open/command".
    This problem is similar but NOT identical to one in MozillaZine headed "Windows error opening internet shortcut or local HTML file - Firefox". But none of the solutions in that article work for my problem: I've disabled all extensions but that hasn't helped. I've tried editing file types so that the DDE is removed (I'm not a teccie so have no idea what that means), but after following the instructions to the letter it doesn't seem to remove the DDE. Also I read that removing the DDE is not a good idea for people like me who need to open numerous firefox browser windows at one time. Furthermore, the MozzilaZine article refers only to problems opening a URL link in a MS Outlook email when Firefox is NOT running. My problem concerns the opening of URL links in MS Word when Firefox IS running!
    I've run countless different virus programmes, rootkit checkers etc but they all come up blank. However, I did come across guidance on this website: http://antivirus.about.com/od/windowsbasics/a/shellopen.htm which suggests that something may have altered the shell open command for two registry keys used by Firefox.
    # HKEY_CLASSES_ROOT\htafile\shell\open\command
    # HKEY_CLASSES_ROOT\htfile\shell\open\command
    The default value for each of these should be "%1" %*. But on my user, the default value reads:
    (for htafile) c:\windows\system32\mshta.exe "%1"%*
    (for htfile) c:\programfiles\windowsNT\hypertrm.exe"%1
    What should the value be for these two files?
    Can anyone sort this for me please? Bear in mind I'm not a teccie!

    Do a malware check with a few malware scan programs.<br />
    You need to use all programs because each detects different malware.<br />
    Make sure that you update each program to get the latest version of the database.
    *http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    *http://www.superantispyware.com/ - SuperAntispyware
    *http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    *http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    *http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    See also "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked and [[Searches are redirected to another site]]

  • Clicking on link from any application opens two Firefox windows

    I have Firefox 3.6.3 set as my default browser on my MacBook Pro running Snow Leopard. When I click on a web link from any application (iWeb, Mail, etc.), two Firefox windows open, one to the home page and the other to the link that I have clicked.
    I just checked the Mozilla help forums and several people have reported the same thing, but I thought I'd see if anyone in these forums has figured out the solution (or workaround), as it seems as if nobody on the Mozilla boards has the answer...yet.
    Thanks.
    Attn: Forum Moderator: If this is in the wrong forum, please feel free to move it to the correct place. Thanks!
    Message was edited by: Andrew Stivelman

    HI Andrew,
    Try clearing the cache.
    From the Tools menu, select Clear Recent History... .
    From the Time range to clear: drop-down menu, select the desired range; to clear your entire cache, select Everything.
    Click the down arrow next to "Details" to choose what history elements to clear. Click Clear Now.
    Relaunch Firefox.
    Carolyn

  • Is there a way to open two color windows? I want to use both HSB and RGB sliders and have them side by side. If there isn't a way, how would I go about creating my own script for it?

    Here's an example of what I mean:
    http://i.imgur.com/Q5aiHvE.png
    I would have access to both RGB and HSB at the same time instead of constantly switching back and forth. Any input on this matter would greatly help thank you!

    Photoshop only has one Color Palette.  If you could script something  like a Color Palette with  two sets of active sliders the script would be in control till you dismissed its sliders dialog.  You would not be able to do anything but adjust the script's sliders in Photoshop while the script dialog window is being displayed.  Photoshop Scripting does not have real palette dialog type support.
    I do not know what is possible with Photoshop extensions using HTML 5 Panels.....

  • Is it possible to open a browser window from an applet?

    Hi,
    this might seem a simple beginners question to you, but to me it is more like a nightmare.
    Is it possible to have a link in an Applet that opens up a new browser
    window with a fixed address??
    If yes, can anybody tell me how? or where can I find documentation about it?
    Please help me.
    Thanks.
    dunja

    myApplet.getAppletContext().showDocument(URL url, String target);
    TARGET:
    "_self" Show in the window and frame that contain the applet.
    "_parent" Show in the applet's parent frame. If the applet's frame has no parent frame, acts the same as "_self".
    "_top" Show in the top-level frame of the applet's window. If the applet's frame is the top-level frame, acts the same as "_self".
    "_blank" Show in a new, unnamed top-level window.
    name Show in the frame or window named name. If a target named name does not already exist, a new top-level window with the specified name is created, and the document is shown there.

Maybe you are looking for

  • Background Job using JOB_OPEN & JOB_CLOSE

    Experts, I have coded a program in SE38 which calls other program to be scheduled in background using JOB_OPEN , SUBMIT, & JOB_CLOSE. Now my requirement is to send an email to the person who runs (schedules)  a job in background by Email (SAP Inbox o

  • How can I get the iTunes 1 page to stop popping up on my computer every 2 minutes?

    Ever since I set up iTunes to synch with my IPad I get the iTunes page popping up on my computer every 2 minutes.  It's very annoying.  Can anyone tell me how to stop it?

  • My speaker isn't working. How do I fix it?

    My iPod speaker isn't working and only happens to work when I use my headphones. I would like to fix my speaker, how can I fix this problem??

  • Testing a SOAP adapter

    Hello friends I want to play with SOAP adapter. I have a basic question. For File adapter I can put a file in a director in the XML or Comma delemeted format and point to that location in ID (Configuration Side). In case of SOAP, which is the best wa

  • Error in previousAction when I have  iframe in jsp.

    Hi,           When I have one <iframe> in jsp,           and I try to redirect to "previousAction" occurs this           error:           notation:           @jpf:forward name="actionPreviuos" return-to="previousAction"           *When I don?t Have <