[solved] two pdf-presentations - switching slides simultaneously

[note: I changed the subject to better suit the solution we found. (orig: dual head: two WMs, one keyboard -> I want simultaneous input!)]
Apart from my Xinerama setup I configured Xorg to run separte WMs on both screens. By default only one of them has the mouse and/or keyboard focus.
But I would like to have simultaneous input, especially for the keyboard!
It's for a talk at a conference for which I have created a (pdf) presentation. What I'm trying to do is running two versions of my presentation, each on one of the heads. The beamer VGA-ouput shall show the plain presentation, while my laptop ought to give me additional notes. However, both heads should change slides simultaneously with one single click.
Any ideas on how to get simultaneous input on both screens? Or might there be another goal to achive this. All I want is two instances of xpdf that both change slides on hitting space-key. I don't really care how it is done, two heads sharing the same input was just my first idea.
Last edited by saciel (2008-03-17 03:57:41)

So here is what I call SI(E)Mple PREsentation -- siempre -- for now. A very rudimental shell script solution. Siempre can open two pdf-files and manages the creation and deletion of the required keybindings. The two instances have to be arranged on the screen(s) manually after. Maybe I'll add some more options later.
#!/bin/bash
#SI(E)Mple PREsentation - start two instances of xpdf with simultaneous page
# turning enabled;
if test \( -z $2 \); then echo "Usage: siempre <file.for.audience> <file.with.notes>"; exit; fi
# commandline-parameters are kept simple for now; you can just pass the name
# of two pdf-files; spaces in file names are NOT SUPPORTED;
BEAMER=$1;
NOTES=$2;
# path to your standard xpdfrc file:
CONFIG="~/.xpdfrc"; #/etc/xpdfrc
# create a temporary xpdfrc (based on existing configuration), adding
# keybindings for simultaneous page-turning; any previous bindings for 'space'
# and 'backspace' are overwritten;
mkdir /tmp/siempre;
if test \( -n "$CONFIG" \); then cp $CONFIG /tmp/siempre/xpdfrc; fi
echo "bind space any nextPage run(/tmp/siempre/xpdf_next)" | cat - >> /tmp/siempre/xpdfrc;
echo "bind backspace any prevPage run(/tmp/siempre/xpdf_prev)" | cat - >> /tmp/siempre/xpdfrc;
# create temporary scripts for page-turning in the remote session; this is
# necessary as the "run" command in the keybindings cannot handle spaces;
echo -e "#!/bin/bash\nxpdf -remote 2ndInstance -exec nextPage" > /tmp/siempre/xpdf_next;
echo -e "#!/bin/bash\nxpdf -remote 2ndInstance -exec prevPage" > /tmp/siempre/xpdf_prev;
chmod 744 /tmp/siempre/xpdf_{next,prev};
# invoke both instances of xpdf; first one is the beamer presentation, second
# one is for additonal notes; kill the note-instance when the main presentation
# is closed;
xpdf -remote 2ndInstance $NOTES & xpdf -cfg /tmp/siempre/xpdfrc $BEAMER;
xpdf -remote 2ndInstance -quit;
# delete temporary files;
rm -r /tmp/siempre/;
Last edited by saciel (2008-03-17 13:38:05)

Similar Messages

  • Using a Ps PDF Presentation on a Website ?

    Hello All-
      I've created a Ps .PDF presentation or "slide show" using CS2. I have an icon on my website which you click to open the PDF file. I have problems myself with different browsers opening it, and all in very different formats. There is just no way to explain to a "user" how to open it with all the possible factors that contribute to the problem. Right now I can't open it with my iMac and Firefox (it opens a blank page), yet last time I did it worked fine, yet it opens on the laptop.
      Is there a better way to make a slide show available on a website?
    Here is my site, click on the dog above groups of thumbnails:  http://axoplasmic.com/Targhee/page1.html
    Thanks for any comments to better this slide show presentaion-
    Rhobes

    Actually, that's not a bit perverse, at all.
    Jonathan's suggestion is a standard method of connecting to a server.
    (null cable between the computer serial ports)
    ... see the Solaris man pages.
    man tip
    TeraTerm and Hyperterminal are customarily used on a PC running some dialect of Windows.
    The 'tip' command is all that's necessary between Solaris systems.
    PS/2 is not a serial connection, but is a keyboard/mouse interface 'invented' by IBM when they offered their XT-class PS/2 line of desktop systems, back in the 1980's.
    I found this next link by using Google:
    http://members.chello.at/theodor.lauppert/computer/ps2/
    The smaller DIN ports were more compact than the AT-class keyboard ports and the mouse moved from a serial port to a dedicated mouse port.
    Serial communication devices are not keyboards, per se,
    and keyboards are not serial communication devices.
    You need other hardware in between to translate what the human being sends, and another computer is a common method to accomplish that translation.
    Having said all that ...
    Since you cannot change the dedicated console hardware,
    I suggest you go to the manufacturer of that console equipment
    and have them suggest some sort of serial-to-serial interface lash-up.

  • Slider: PDF presentations

    UPDATE
    Slider has been reborn (8 Apr 2013).  I've continued the discussion in this thread starting here.  Note that all discussion up to that point likely no longer applies to what is currently on github.
    Slider is a PDF presentation / slideshow tool much like Impressive.  (PKGBUILD)
    This was very much inspired by impressive.  I liked how that app worked, but I thought it could use some optimizing and customizing.  I briefly looked at it's code, but I am absolutely horrible with python, so I started from scratch with Slider.
    Right now Slider has most of the features I liked in Impressive plus some of it's own:
    1) I shows fullscreen slide shows from pdfs
    2) It has an overview screen (aka slide sorter)
    3) Slider has customizable (through config.h and recompile) key bindings and can be fully controled by either the keyboard or just a mouse (or both of course)
    4) Customizable colored "pens" allow you to draw on your slides (with the mouse)
    5) Zoom mode to zoom in on any part of a slide.
    Slider will have added features:
    1) an ability to play embeded media and run embedded script commands within the pdf. (edit: done)
    2) a "presentation mode" where the slides are shown on one external display and notes will show on the local screen. (edit: done)
    Current limitation(s):
    1) There are no "transitions".  There likely never will be. (edit: simple fade transitions have been added)
    2) The mouse cursor is not hidden or customizable.  This is next on my todo list.
    3) General "beta" state.  Use at your own risk.
    4) No man page nor built in help system yet.  Controls are documented in the README for now.  A man page will be created once slider reaches a suitable stability for a versioned "release".  Options for slipper are documented in the sample slipper.dat file.
    Git it here or from the AUR.
    edit: for those keeping score:  Impressive - 4342 lines of python vs. Slider - 460 860 lines of C.  Who said scripting languages made things simpler!  This is said in a friendly spirit of competition, not as a rip on Impressive.  It was that app after all that inspired me to mimic it.
    edit (2012-08-30) Note: Slider assumes that all pages of the document are the same size as the first page.  Generally this is safe, but in documents with a prepended cover page it may not be - In my tests this seems to apply to older journal articles retreived from JSTOR.
    Last edited by Trilby (2013-06-20 21:30:04)

    Trilby wrote:Question: do you want to fill in the forums as a demonstration, or do you also want to be able to save the filled in forms with the new data added to the pdf?  The later would not happen (sorry), the former might have chance.
    Ideal would be ability to save the forms with the data.
    But the ability to fill them in on screen would be an incredible improvement over anything else I've found for Linux, excepting acroread.
    I use these sorts of slides in class so in an ideal world, I type up people's answers to questions etc. and then save the result and post it on the web for the students.
    But I can also tell them I'm not able to save what I type and they can take notes based on that, with me just putting up the slides on the web. The really crucial thing is being able to fill in the form fields on screen in class. I basically use this to make presentations more interactive and less passive - so it isn't always the case that the answer to the question is on the next slide. Sometimes the answer depends on the results of the students' discussing the question, for example. I also have a scratch slide at the end which I use if I want to type anything up in response to an unanticipated question.
    As far as I know, PowerPoint and similar software doesn't have this capability but beamer *does* and whenever anybody tells me I should be using PowerPoint, I have an excellent answer for not doing so!
    That isn't why I do it, of course. If it were the only reason to do it, it would not be an excellent answer. It is an excellent answer only because there really are sound pedagogical reasons for doing it - people often lament the "passivity" which presentation software induces in students. Some people create handouts with missing words to get students to pay attention to the slides but in many cases, it is much better to have incomplete slides. There's typically no right or wrong answer to interesting philosophical questions and I can't predict what people will say. Putting it in the presentation gives it a legitimacy and significance which it otherwise lacks.
    OK. I'll stop...
    EDIT: Forgot to say that I really appreciate your even being prepared to consider this!
    EDIT 2: I don't know if this makes it simpler or not but PDF forms have all kinds of different varieties - radio buttons, combo boxes etc. Apart from maybe once or twice, the only kind I ever use is a multiline text box. The kind that you make in beamer using something like:
    \TextField[charsize={10pt},multiline=true,height={10mm},width={100mm},name={eg3},bordercolor={1 1 1}]{\mbox{ }
    Last edited by cfr (2012-08-31 00:45:14)

  • Trying To Make PDF Presentation But End Up With A Normal Document?

    I am trying to make a .pdf presentation with Photoshop CS3.
    I follow all the instructions, select the time of each slide and the transition, but when I click on save I get a window asking me how I want to save the files and I end up with a normal .pdf document where I can view each picture manually or use the slideshow setting but no transitions appear.
    Any ideas from this brief account of my actions, what I might be doing wrong?

    Thank you for the link Laurentiu. At about the same time as you posted it I discovered that if I used Adobe Reader I could get the slideshow presentation to work, at least partially.
    I had been using Preview and of course it just displayed it as a .pdf document.
    However, my problem is not completely solved.
    When PS finished making the presentation I got a warning message that the preset used was not suitable for presentations and transitions between pages would not show.
    Strangely, the transitions do display, but my selection of looping the slideshow does not work.
    I wonder why and which preset should I use?

  • Photoshop/Bridge CS4 PDF Presentation Update or Plug-in

    Full Parameter PDF Presentation is essential for me.
    PDF Presentation (as in Photoshop - Bridge CS2 and CS3) with panels for selection of presentation prameters and saving with various levels of jpeg compression and image quality, presets and output color conversion, etc. . This was not only a very useful feature, but has become a required component of my workflow over the past three years. This to shoot all imaages in RAW, upload files to Bridge, develop a wide range of selected images with Camera RAW and then produce a PDF slide show of 20-25 'proofs' while still in Bridge with a size of 10-15MB that can be emailed to various recipients for review and final selection. Final selections are then fine truned in Photoshop for printing. While some of the improvements in CS4 are useful, CS3 at present is more satisfactory and remains more useful than the CS4 upgrade. Addition of this feature as an update or legacy plug-in (the basic componets exist in CS4) would be more than acceoptable and allow me to complete the upgrade to CS4. Your attention and help will be very much appreciaated!

    APOLOGIES!!!
    I just found it......
    Using the Adobe Output Module script, you can create Adobe PDF contact sheets and presentations in Adobe Bridge. Contact sheets let you easily preview and catalog groups of images by displaying a series of thumbnails on a single page. PDF presentations let you use a variety of images to create a multipage document for slide show presentation. You can set options for image quality in the PDF, specify security settings, and set the document to open automatically in full-screen mode in Adobe Acrobat. You can also add the filename as a text overlay below each image in the PDF.
    1. Select the files or the collection or folder that contains the images you want to include in the contact sheet or presentation.
    2. Choose Window > Workspace > Output.
    If the Output workspace is not listed, select Adobe Output Module in Startup Scripts preferences.
    Adobe Bridge displays the Output panel at the right side of the window and the Folders panel at the left. The Content panel with your selected photos appears at the bottom of the window, and the Preview panel appears in the middle.
    3. In the Output panel, select PDF.
    4. Choose a layout option from the Template menu.
    5. With your photos selected in the Content panel, click Refresh Preview to view the contact sheet in the Output Preview panel.
    Note: The Output Preview panel displays only one PDF page.
    6. Customize the appearance of the contact sheet by specifying options in the Document, Layout, Overlays, and Watermark areas of the Output panel.
    7. (Optional) Change the images in the PDF by navigating to them in the Folders or Favorites panel, and then selecting them in the Content panel. You can also use the Preview panel to preview the images and refine your selection. Drag thumbnails in the Content panel to rearrange the order of the images on the page.
    8. Click Refresh Preview at any time to update the PDF and see the changes in the Output Preview panel.
    9. For presentations, specify the following options in the Playback panel:
    Open In Full Screen Mode
    Opens the PDF in full-screen mode in Adobe Acrobat.
    Advance Every [x] Seconds
    Specifies how long each image is displayed before the presentation advances to the next image. The default duration is 5 seconds.
    Loop After Last Page
    Specifies that the presentation automatically starts over after reaching the end. Deselect this option to stop the presentation after the final image is displayed.
    Transition
    Specifies the transition when moving from one image to the next. Choose a transition from the Transition menu. Depending on the transition, you can also specify a Direction and a Speed.
    10. If youd like to automatically open the PDF in Acrobat after you save it, select View PDF After Save at the bottom of the Output panel. Otherwise, just click Save.
    11. In the Save (Windows) or Save As (Mac OS) dialog box, enter a name for the PDF, select a destination for the saved file, and then click Save.

  • Two PDF's - 1 created from Illustrator and the other Acrobat. Same colour is different in both. Why?

    Two PDF's - 1 created from Illustrator and the other Acrobat. Same colour is presented differently in both pdf documents. Why?

    Hi - sorry pressed send too quickly....
    I have two PDF documents that show a sample business card in PDF.
    One was apparently created through illustrator and is the focument for the printers ... it is this document that shows a completely different colour to the one that is in the other PDF that was apparently created in Acrobat. Though designers assure me that they are exactly the same patenone and that it's the software interpretting it.
    What i dont understand is why the colours would look different using the software from the same company....and why designers would put up with this as a basic layman it just looks plain wrong to me.

  • CS2 Error message.= The command "pdf presentation" is not available at this time.

    CS2 and Bridge will not make any pdfs'
    CS2 has been un-installed and re-installed twice from disc without solving problem. 
    I will download CS2 from Adobe as my next step, however my CS2 disc would have to be de-activated and there is no activation server for CS2 anymore.
    http://www.adobe.com/downloads/cs2_downloads/index.html.
    System info:
    Windows Vista
    Intel CPU 2399 Mhz
    Memory 4094MB
    Does anyone have any solutions to bring back "pdf presentation"?
    Also, is there a way to upgrade the raw plugin folder to be able to read the current raw formats?
    Thank you
    Barry
    [email protected]

    Did if ever work since putting cs2 on windows vista?
    Does the pdf presentation work if you invoke the command in photoshop proper instead of bridge?
    File>Automate>PDF Presentation.
    I really don't think using the adobe cs2 download will make any difference as either your bridge and/or photoshop preferences could be corrupted
    and you should try resetting those as they are not reset during a unistall/reinstall of cs2.
    Reset photoshop preferences:
    http://forums.adobe.com/thread/375776?tstart=0
    Reset bridge preferences:
    Reset Bridge by holding Option(Mac) or Ctrl (Pc) as soon as you click on the icon to start it.
    ADD -  If done properly you will get a reset window with 3 options.

  • CS4/CS3 PDF Presentation

    Installed CS4 Production Premium about a month ago. Recently went to File--Automate--PDF Presentation and it is missing. Should have read the forums before I got CS4! So I confidently went back to Photoshop C3 Extended and started to do a series of PDF Presentation document builds. My one page "documents" went fine. Had two multi-page documents. Go thru the menus ok and even see the page by page presentation during the document build and then no error. Come to find out, all the multi-page files have the proper "name.pdf" but have a file size of zero. Now this never happened prior to installing CS4.
    Q1. Did the installation of CS4 actually remove function from the installed Photoshop CS3?
    Q2. What happened to all the Photoshop CS3 plug-ins? Don't see any way to get a listing in CS4.
    Maybe I missed it but was all the function removal from CS3 with CS4 ever described in the "What's New in CS4" documentation?

    >What happened to all the Photoshop CS3 plug-ins? Don't see any way to
    >get a listing in CS4
    As discussed many times: Several features have been moved to Bridge, others are still available via an optional install from your content disc.
    >Did the installation of CS4 actually remove function from the >installed Photoshop CS3?
    No, but it may have updated the globally shared PDF libraries so they are no longer compatible with what the particular script/ tool expects.
    Mylenium

  • Using Remote/Clicker for PDF presentation

    I know in PowerPoint, you can use a remote/clicker to cycle through the slides. I am looking to do the same thing but using a PDF.
    I want to be able to remotely control the PDF presentation using a remote/clicker.
    Is this possible?
    Thanks in advance.
    Rob

    It is possible. I have used a laser pointer/remote mouse that can act as
    a clicker and it worked well using Acrobat 7 and 8 under both Windows
    and Mac OS.
    Mike

  • Automate - Pdf Presentation

    This works fine in PS CS3, now in CS5 is gone. Please give us back because using Bridge CS5 to make a multipage PDF is not as fast as it was with pdf presentation. We need to see thumbnails of files, select them, select output style... if we want a file two times we need to hardcopy the file.
    I read other user asking for this feauture to be back... so, will it be back?

    Yes I support this. The ability to create multiple page PDF's directly from Photoshop should never have been removed.
    Looks like at one point someone in management at Adobe had the smart idea that Bridge would be some kind of 'hub' that every user would see the sense in using. A kind of asset management alternative to the Operating System. Never really took off. Why?- because the OS got considerably better at previewing images and assets. Well for some of us. And Bridge itself had too much overhead.

  • How to convert Presenter PDF presentation into MP4?

    Hi could someone please tell me how to convert a Presenter PDF presentation into MP4? To clarify, Presenter was used to create PDF presentations with voice over the powerpoint slides. I would like to take the PDFs and convert them to MP4s using Presenter or any other way. Would appreciate any assistance that could be provided.

    Pardon my reply. This a.m. I studied the documents that transfered nicely after being passed through Acrobat Pro to MS Word and the ones that did not. Those that did were mostly black and white and the cells were not as complex. The ones that transferred but with bad formatting had cells in red, instructions in the margins, with some lettering in red but most lettering in black. Both the first set and the last set carried the suffix .pdf .

  • Apple TV and PDF presentations

    Is there any way to be able to show PDF presentations on a TV using Apple TV?
    Powerbook G4 17"   Mac OS X (10.4.9)  

    The only thing that comes to my mind: Export the individual slides as jpg in the correct resolution and load them into iPhoto. Make an album of your presentation, and you can put it on ATV and navigate it using your remote. No transitions and animations, of course.

  • How do I combine two PDF files into one?

    I want to merge two PDF files into one to make things easier when I take the file(s) to a professional printer.
    Can I do this in Preview?
    Thanks.

    You can't do in Preview.
    You can combine individual PDFs into one PDF using one of these freeware utilities.
    PDFMergeX @ http://www.malcom-mac.com/blog/pdfmergex/
    joinPDF @ http://www.macupdate.com/info.php/id/16604
    Combine PDFs @ http://www.monkeybreadsoftware.de/Freeware/CombinePDFs.shtml>
    PDFLab (join & split) @ http://pdflab.en.softonic.com/mac
     Cheers, Tom

  • Can I combine two pdf files by using command lines?

    Hi
    I always need to combine two pdf files into one in my regular work
    Currently, I open one of them, press ctrl+shift+I,
    find another file and double click it.
    It works but not so efficient since I need to do
    this procedure many times everyday
    So I'm looking for a better solution
    Something like command lines,
    for example:
    acrobat.exe "combine" "doc1.pdf" "doc2.pdf"
    Does acrobat have these functions or not?
    Thx &
    Best Regards

    File > Combine

  • Is there any way to run a timer on the presentation screen during two consecutive presentations?

    I administer exams that require running two consecutive presentations and interact with the person being tested. With each candidate we use two different presentations, so I can't just make only one presentation.  Is there a way to have a timer display on the presentation screen through both presentations? Each person only has thirty minutes to get thru both presentations. If one only takes ten minutes, then they have twenty for the final one. I'd like to get away from using egg timers.

    take a look at this thread, you can find some useful info about running old and some new games on Booklet there.

Maybe you are looking for

  • Yoga 13 - On-screen Keyboard Randomly Popping Up When Using Physical Keyboard?

    While in laptop mode, and typing on the built-in physical keyboard or a keyboard attached via USB, the on-screen keyboard will randomly pop up, taking away focus (particularly noticeable when using extended desktop on an external display) and eating

  • Problem in External catalog set up

    HI Experts, i have SRM5.0. and i i have this link form the customer http://www.bechtle.fr/shop/MasterServlet?SSID=BIOS_FR&LANG=fr&SSID_ORIGINATOR=BD_FR&SHOPKEEPER=HD_FR i have set up a external catalog as mentioned below but the problem is when i cli

  • Z10 group call log

    Hi all, is there any way to group call by name in Z10 call log/call history? With old BB, calls were grouped by name and was easy to see contact's call history; now, If a contact call me 10 times, I have 10 entry in my call log and, with a daily  hug

  • Issue with Task Control Call back and Event Choice in WLI BPM 8.1

    Hi, I am using a Task Control Factory to create Task Control Instances in a loop and then create tasks and assign them to a predefined group. I have an event choice for two events waiting for the onTaskCompleted and onTaskAborted event call backs. I

  • Text message edit bug and price

    Anyone else going nuts trying to text with this phone? For one thing with the stock keyboard it only types in portrait mode even when it should be in landscape. Then it locks up and you can't backspace! No fix yet! Its been a problem since I paid 330