Is it possible to have an attachment within a pdf doc print at the same time the main doc prints?

Okay, so this may be kind of a weird question.  We have some users who are wanting to add a page to an already existing xml document and correct me if I'm wrong, but I've read that it's not possible to add/delete pages from a pdf that's in xml format.  Since that is not possible, I have added the page to the xml document as an attachment.  Now what I am wanting to know is if it is possible to have the attachment print out at the same time as the main document.  We are using the latest version of Adobe Reader and I have access to Adobe Acrobat Standard 9 & 10 and then I have access to Adobe Acrobat Pro 7.  I've been unable to find anyting via google or by searching this forum so hopefully I'll draw out some kind of smart cookies and we'll get this figured out.  I appreciate any and all input!
Thanks,

I know of no way to do this with Reader or XML.

Similar Messages

  • Possible to have if statement within filters code?

    Hi
    I have some filters set up, and have assigned some global vars to them, which I then use in my Filters code to display the filters:
    myText:Filters [globals.data.glow1, globals.data.stroke1, globals.data.shad1]
    Works perfectly.
    Now I want to assign a global var to each global filter var to determine if it should be shown or not.  So...
    globals.data.glow1On = true;
    globals.data.stroke1On = true;
    globals.data.shadOn = true;
    ... and then somehow incorporate these new vars into an if conditional to determine if the filter global vars get included in the myText:Filters code.
    However, I cannot seem to code the if conditional into the myText:Filters code correctly.
    I even tried seperating it out like so:
    if (globals.data.glow1On = true) {myText:Filters [globals.data.glow1];
    if (globals.data.stroke1On = true) {myText:Filters [globals.data.stroke1];
    if (globals.data.shad1On = true) {myText:Filters [globals.data.shad1];
    But Flash only makes the last filter true (kinda makes sense to me now why).
    Is there a way to do it without having to make an if conditional with 7 permutations?
    Cheers
    Shaun

A: Possible to have if statement within filters code?

You are not coding the conditional properly.  "=" is for assignment, "==" is for comparing equality.
if (globals.data.glow1On == true) {myText:Filters [globals.data.glow1];
if (globals.data.stroke1On == true) {myText:Filters [globals.data.stroke1];
if (globals.data.shad1On == true) {myText:Filters [globals.data.shad1];
Also, a conditional evaluates whether or not something is true, so for Boolean values you do not need to explicitly compare them...
if (globals.data.glow1On) {myText:Filters [globals.data.glow1];
if (globals.data.stroke1On) {myText:Filters [globals.data.stroke1];
if (globals.data.shad1On) {myText:Filters [globals.data.shad1];
Lastly, for what I see that you showed, the conditionals are all missing their closing brackets, and while you can use them, the brackets are not needed for single command conditionals...
if (globals.data.glow1On){ myText:Filters [globals.data.glow1]; }
if (globals.data.stroke1On){ myText:Filters [globals.data.stroke1]; }
if (globals.data.shad1On){ myText:Filters [globals.data.shad1]; }
OR
if (globals.data.glow1On) myText:Filters [globals.data.glow1];
if (globals.data.stroke1On) myText:Filters [globals.data.stroke1];
if (globals.data.shad1On) myText:Filters [globals.data.shad1];

You are not coding the conditional properly.  "=" is for assignment, "==" is for comparing equality.
if (globals.data.glow1On == true) {myText:Filters [globals.data.glow1];
if (globals.data.stroke1On == true) {myText:Filters [globals.data.stroke1];
if (globals.data.shad1On == true) {myText:Filters [globals.data.shad1];
Also, a conditional evaluates whether or not something is true, so for Boolean values you do not need to explicitly compare them...
if (globals.data.glow1On) {myText:Filters [globals.data.glow1];
if (globals.data.stroke1On) {myText:Filters [globals.data.stroke1];
if (globals.data.shad1On) {myText:Filters [globals.data.shad1];
Lastly, for what I see that you showed, the conditionals are all missing their closing brackets, and while you can use them, the brackets are not needed for single command conditionals...
if (globals.data.glow1On){ myText:Filters [globals.data.glow1]; }
if (globals.data.stroke1On){ myText:Filters [globals.data.stroke1]; }
if (globals.data.shad1On){ myText:Filters [globals.data.shad1]; }
OR
if (globals.data.glow1On) myText:Filters [globals.data.glow1];
if (globals.data.stroke1On) myText:Filters [globals.data.stroke1];
if (globals.data.shad1On) myText:Filters [globals.data.shad1];

  • Is it possible to have access a table of DB SQL Server for the DB Oracle?

    Is it possible to have access a table of DB SQL Server for the DB Oracle? How?
    Thank you, Paulo.

    You can configure Heterogeneous Distributed Database Systems

  • Is it possible to have 2 different output config XML files and index the data into 2 endeca apps using the same indexing component ProductCatalogSimpleIndexingAdmin

    Hi ,
    We have a catalog that defines 2 types of products (they have too many different properties), so wanted to keep them on two different MDEX engines and serve the applications requests. Here DB catalog and front end ATG application is same for both the MDEX instances.
    Is it possible to have 2 different output config XML files and index the data into 2 endeca apps using the same indexing component ProductCatalogSimpleIndexingAdmin?
    Thanks
    Dev

    Hi, also have had some problem some monthes ago - I created separete component ProductCatalogSimpleIndexingAdminSecond. After that one of my colleage gave me some advice:
    The creating separate component like ProductCatalogSimpleIndexingAdmin for the second IOC is possible way for resolving your situation. But I afraid that this way will be required creating mane duplicates for already existed components.
    In my opinion the better way is the following:
    starting from AssemblerApplicationConfiguration and ApplicationConfiguration component. It contains details for connecting between ATG and Endeca. Of course you should configure different components for different Endeca Apps.
    After that:
    Find all components that uses AssemblerApplicationConfiguration and ApplicationConfiguration. Customize these components for using one or another  *Configuration component depending on what index works. (many variants released it: the most simple global custom component with flag.)
    Then customize the existed ProductCatalogSimpleIndexingAdmin. Using one or another IOC  and setting the flag in global custom component when index started. You can add some methods into your custom ProductCatalogSimpleIndexingAdmin like:
    Execute baseline index for both IOC (one by one)
    Execute baseline for IOC 1
    Execute baseline for IOC 2.
    Note: you should be afraid about incremental (partial) index in this configuration. But resolving conflicts in incremental index should be done after full implementation these changes.
    Regards

  • I have been able to open PDF docs using C# API Process.Start("Full_path_To_the_PDF_File") in windows 7 or windows 8 with all previous versions of Acrobat32 reader.

    I have been able to open PDF docs using C# API Process.Start("Full_path_To_the_PDF_File") in windows 7 or windows 8 with all previous versions of Acrobat32 reader.
    However, with v11.0, the same command, in Windows 8, it does not open the PDF document. I can see the Acrobat(32) started in the task manager, but the document does open. Not sure how I can troble shoot this problem. Any help would be appreciated.

    I haven't use the C# API but I imagine it is the same as C ShellExecute. Which in turn is the same thing (in essence) as double clicking in Windows Explorer.
    So... does Adobe Reader run normally on this machine?
    And does it start and open if you double click on a PDF file?

  • I have apps loaded on my iPad. they show in the main screen are not available to load documents to in the window list which should appear below the main window. the same apps do appear in the sub window on my other iPad. any ideas?

    i have apps loaded on my iPad. they show in the main screen are not available to load documents to in the window list which should appear below the main window. the same apps do appear in the sub window on my other iPad. any ideas?

    From what I can see, unless you're doing things with old versions of Xcode on a Mac (in which case, the solution seems to be to upgrade to the latest version), this seems to e an iTunes issue.
    Accepting that it works fine with another iPad, I suggest trying the following:
    1. Restart the non-working iPad
    2. If that doesn't work, reinstall iTunes. If you're on a Windows PC, I suggest using Control Panel to uninstall all the Apple apps, restarting the PC, and doing a fresh install. If you're using a Mac, a repair permissions might help too.
    iTunes 10.3 is now available, and that may make a difference.

  • How do I attach a 2nd PDF from iBook to the same email

    After I initiate an email from iBooks and attach a PDF document how do I attach a 2nd PDF from iBook to the same email

    You can only email one pdf at a time.

  • When I attach my battery grip to EOS 50D, the main dial doesn't work.

    When I attach my battery grip to EOS 50D, the main dial doesn't work. If I remove my battery grip.the main dial works fine. Has anyone else had this problem?

    It may be the result of the switch on the battery grip being ON. If you use the camera in Portrait mode you turn that switch on to make the shutter button on the grip active & maybe it also switches the wheel function too.
    "A skill is developed through constant practice with a passion to improve, not bought."

  • Is it possible to have an event within an event?

    I have an event named for my niece, and I have all the pictures of her in it. I'm wondering if it's possible to have events within events, so I can just have 1 event with her name, then when you click on it, sub-events named things like "Christmas" "Thanksgiving" etc.?

    no - events are time based and can not be nested - use albums and smart albums which can be placed in folders and folders can be placed in folders for that kind of organization - Europe folder containing France and Italy folders each containing cities as an example
    Events are just a very basic and inflexible organization for people to start with - albums, folders, keywords and ratings are where the power is
    LN

  • Possible to have dynamic content within a campaign?

    Is it possible to have dynamic content elements within an email campaign so that different content appears based on a recipient's interests?

    Hey there, Nope.
    BUT
    See the BC Blog

  • Is it possible to have a selectManyListBox within ui:repeat ?

    Can I have a selectManyListBox within a <ui:repeat> or that is completely wrong ? I can displayed the values properly , however I cant retrieve the selected items in my list.
    An error is displayed "myform:j_idt117:0:j_idt119:0:_t121: Validation Error: Value is not valid"
    <ui:repeat value="#{row}" var="t" >
    <h:selectManyListbox value="#{myBean.selectedItems}">
    <f:selectItem itemValue="#{t.attributeName[1]}"
    itemLabel="#{t.attributeName[1]}" />
    <f:selectItem itemValue="#{t.attributeName[2]}"
    itemLabel="#{t.attributeName[2]}" />
    </h:selectManyListbox>
    </ui:repeat>

    You can try using SSRS cascading parameter.
    http://technet.microsoft.com/en-us/library/aa337498(v=sql.105).aspx
    http://markvsql.com/2013/08/ssrs-cascading-multi-value-parameters/
    Regards, RSingh

  • Is it possible to have iMovie HD and iMovie HD 6 installed on the same Mac

    While I like some of the video editing features of iMovie HD 6, the problems with the Ken Burns Effect have killed my ability to create slideshows with iMovie. This worked just fine in iMovie HD (version 5.x). Is it possible to have both applications installed on my iMac and run one for slideshow production and the other for video production?
    I searched and could not find a thread that addressed this issue. If there is one, the URL will be greatly appreciated.

    Catspaw,
    Thank you. I should have thought of this, as I am running iMovie 8 and iMovie HD 6 on an Intel iMac at work. When I installed iMovie HD 6 onto this system (I'm not a fan of the latest incarnation of iMovie), it was put into a "previous version" folder. Since my G4 iMac already has been upgraded to iMovie HD 6, I'll just put iMovie HD 6 into a folder (maybe label it as the "latest version") and then install iMovie HD 5.
    Thank you for the insight on the trash emptying messing with the re-editing of photos. If I start a new project using the same photos from iPhoto (I use the media browser within HD 6 to select my photos in my iPhoto library) and never empty the trash until the project is complete, will the problem not appear? Or, does some magic thing tag my iPhotos so that I have to reimport them into iPhoto before using them again in iMovie HD 6?

  • Is it possible to give each page within one pdf document a specific set of print settings?

    I have a complex document (catalogue) that requires printing. There are several different printer settings required and each one is specific to each page within the document. For instance pg 1 is single sided in colour, page 2-3 is duplexed in b&w, page 3-8 is duplexed in colour, etc.... Is it possible to give each page within the pdf document a given set of print settings and then print the entire document as a whole?

    Hi jennyskop
    I assume that is not feasible ...You need to give the print command again and select the respective pages and their settings !

  • Isit possible to have two Ni elvis writer in one Vi using the same device and using 2 different NI elvis?

    Hi is it possible to have two writer in one Vi with one elvis  and also use two different elvis on one Vi? I hope someone can or know the answer.

    If memory serves me correctly, an NI Elvis board connects to a PCI card in a PC if you want 2 Elvis boards then you will need 2 PCI cards. 
    Certified LabVIEW Architect
    Certified Professional Instructor

  • Is it possible to have Indesign CS4 and CS5.5 both installed on the same Mac? 10.6.8

    We have a bunch of recent Intel macs at our corporation.  Currently they should all have 10.6.8.  They were all imaged from a base image that has Adobe CS4 embedded in it. 
    We are now using a packaging software part of the JAMF Casper suite and AAMIE to push CS5.5 to the end users.
    The problem is that we want to keep CS4 on the end user's computers in case of issues.  That way the end users can try Indesign 5.5 and see if it does everything they need to do and still have Indesign for backwards compatiblity.
    So we created a CS5.5 install package using the AAMIE tool which works fine.  We then use Casper to spam the package out to a Mac.
    The issue that arises is that a few Plugin errors occur during the lauch of Indesign CS5.5 such as:
    Adobe inDesign does not recognize InCopy Bridge UI.InDesignPlugin as a valid plug-in.
    Adobe InDesign does not recognize InCopyExport.InDesignPlugin as a valid plug-in.
    Adobe InDesign does not recognize InCopyExportUI.InDesignPlugin as a valid plug-in.
    Adobe InDesign does not recognize InCopyImport.InDesignPlugin as a valid plug-in.
    There was one more plugin error that occured before the first one but I forgot to write it down.
    If we click okay to them, the application launches okay but when you quit and relaunch it, you still get one of the errors.
    Is this because both applications are installed at the same time?
    Is it offically okay as per Adobe to have Indesign CS4 and CS5.5 installed on the same Macintosh?
    What else should we be considering what to do?

    Well currently, I'm just testing this issue.  I just installed the trial version of  Adobe CS4 suite on my mac and then deployed the CS5.5 package on top off it  The resulting errors that I listed above are the same ones that occur when the end user has a licensed volume license install of CS4 and CS5.5.
    So I'm still back to square 1 where when I deploy cs5.5 on an  end user's mac, they get those plugin errors when they launch Indesign CS5.5.  
    I am not sure about the licensing restrictions, I asked my Director and he is going to check with our VAR.

  • Maybe you are looking for