A newbie with a newbie question

Ask a Question related to Adobe Acrobat Macintosh, Design and Development.

  1. #1

    Default A newbie with a newbie question

    Good afternoon everyone,
    My Name is Dusty
    I am new to this forum and pretty new to Acrobat.
    I have Acrobat 9 running on an IMAC running 10.5.2
    I am trying to publish a cd with some PDF files. I need to get the PDF files to open with the Advanced Search Window already up. I have tried everything that my limited Knowledge would allow. I was told I could use a script to do that but A. Don't know how to do that and B. Don't know if it will work on other computers, such as Windows machines with only Reader installed.
    Any help will be greatly appreciated.

    Thanks in advance,
    Dusty
    dusty_davis@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. Newbie question...
      Hey all, I deceided to do my best to pick up perl a week or so ago so I'll probably be hanging around a bit asking silly questions. Hope that not...
    2. Newbie DB question
      How do people who build full dynamic websites whose content is entirely contained in a DB, get around the limitation on text field size (255...
    3. newbie question xml...
      I'm just starting to teach myself xml, and there's one thing I just cannot figure out... This is my xml-document, named "XMLtext" : <?xml...
    4. [newbie] dbi question
      I am new to perl, and expecially dbi, but am trying to figure the best way to accomplish the following: I have an HTML form, that lets the user...
    5. Newbie OO question
      In article <EbkRa.331382$fC.2436421@news.easynews.com>, "Ed W" <dodgynewsgroups@ewildgoose.demon.co.uk> wrote: perldoc perltoot it's all you...
  3. #2

    Default Re: A newbie with a newbie question

    If you'll run this line from the console:
    this.addScript("Open Search","app.execMenuItem('FindSearch');");
    It will add a script that will open the Search window whenever the PDF is opened (if JavaScript is enabled).
    try67 Guest

  4. #3

    Default Re: A newbie with a newbie question

    Thank you so much for the reply, I just have a couple of questions.
    I know where console is, but where do I tell it what PDF to run that script with, I am really new to this. Thank you again.

    Dusty
    dusty_davis@adobeforums.com Guest

  5. #4

    Default Re: A newbie with a newbie question

    It will run on whatever file is currently top-most in Acrobat. If you put it in a batch sequence, it should work on all the files that you select (I haven't tested this, though).

    And you're welcome.
    try67 Guest

  6. #5

    Default Re: A newbie with a newbie question

    You Rock, That worked I have been working on this for almost 2 full weeks. Thank you soooooo much. Do you know if there is a script to make the windows open in a certain way, Example, always make the search window open on the left and arrange the windows. Just wondering, I am trying to make a cd for training and need it to be as simple as possible so I don't get a thousand calls. Either way if not you were a huge help. Thank you again.
    Dusty
    dusty_davis@adobeforums.com Guest

  7. #6

    Default Re: A newbie with a newbie question

    Hi Dusty,

    I'm not sure there's a way to do what you describe (but maybe there is and I'm not aware of it...), but you can try to tile the windows, like so...
    app.execMenuItem("TileVertical");
    try67 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139