How can I make by portfolios in Adobe Pro xi able to opened by previous versions?

I recently upgraded to Adobe Pro XI.  I use this program to make portfolios for municipal meetings and post to our website.
I need to make the portfolio able to be read by various version.  I have tried the "save as other" but it still will not open and says I need to download Adobe Reader DC.... I did that and it still says I need to download it.
HELP!!!!!

Thanks for your reply.  I have been using Adobe Pro 8 for years and have been able to post the portfolios and have not had any problem opening them in Google Chrome.  There would be a little Adobe icon that would show up and you had to click on it to open it but now I get no icon.  I did not do anything to make the icon show up before it was just there.
My Trustees and residents like the option to choose what issue they want to view instead of having to scroll through page after page after page, trying to find the issue they are interested in.
Do you have any suggestions?  When I disable the Google .pdf reader the packet downloads to the computer.  I don't think they would like that.  Do I have any other options?  I have made the packets readable by Adobe 4.0 and up and it still acts the same.
Oh, and my Trustees were able to download the portfolio to their I-pad.  I sure hope I didn't spend $400+ on the latest and greatest only to have to go back to 8.0 to get it to do what I want.
Thanks!

Similar Messages

  • How can i make my scrollpane in a way that at the opening of a frame it doe

    How can i make my scrollpane in a way that at the opening of a frame it does not scroll down automatically?
    code is below
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.net.*;
    import javax.swing.JOptionPane.*;
    import java.io.*;
    import javax.swing.colorchooser.*;
    import javax.swing.filechooser.*;
    import javax.accessibility.*;
    import javax.swing.border.*;
    import java.sql.*;
    public class Signup extends JFrame
         JLabel p1,p2,p3,p4,p5,p6,uid,upass,cpass,fname,sname,hint,sl,ed,age,adr,cit,zip;
         JTextField uname,fnamet,snamet,hintt,adrt,adrt1,city,zipcode;
         JPasswordField upassw,cpassw;     
         JComboBox sex,education,agegr;
         Signup()
         Container c=getContentPane();
         c.setLayout(null);
         c.setBackground(Color.white);
         /** JPanel c = new JPanel();
         c.setBackground(Color.white);
         int v = ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS;
         int h = ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED;
         JScrollPane jsp = new JScrollPane(c, v, h); ***/
    p1=new JLabel("Create Your Icafe!ID",10);
         p2=new JLabel("Personal Information");
         p3=new JLabel("User Address");
         p4=new JLabel("Tell Us About Your Hobbiess (Optional) ");
         p5=new JLabel("Tell us something about what you like. This will help us choose the kind of content to display on           your pages.");
         p6=new JLabel("--------------------------------------------------------------------------------");
    uid=new JLabel("User Id");
         upass=new JLabel("Password");
         cpass=new JLabel("Confirmation Password");
         fname=new JLabel("UserName");
         sname=new JLabel("SurName");
         hint=new JLabel("Hint Question");
    sl=new JLabel("Sex");
         ed=new JLabel("Education");     
         age=new JLabel("Age Group");     
         adr=new JLabel("Address");
    cit=new JLabel("City");
    zip=new JLabel("ZipCode");
         uname=new JTextField(10);
         uname.requestFocus();     
         uname.setToolTipText("UserName");
    upassw=new JPasswordField(10);
         upassw.setToolTipText("Password");
         upassw.setEchoChar('*');
         cpassw=new JPasswordField(10);
         cpassw.setToolTipText("Confirmation Password");
         cpassw.setEchoChar('*');
         fnamet=new JTextField(10);
         fnamet.setToolTipText("FullName");
         snamet=new JTextField(10);
         snamet.setToolTipText("SurName");
         hintt=new JTextField(10);
         hintt.setToolTipText("Hint Question");     
    String[] gender={"[Select one]","Male","Female"};
         sex = new JComboBox(gender);          
    String[] edu={"[Select one]","S.S.C","Inter","Graduate","Post Graduate"};
         education= new JComboBox(edu);     
    String[] ageg={"[Select one]","0 - 15","16 - 35","36 - 70","70 - 100"};
         agegr= new JComboBox(ageg);     
    adrt=new JTextField(15);
         adrt.setToolTipText("Address");
         adrt1=new JTextField(15);
         adrt1.setToolTipText("Address");
         city=new JTextField(15);
         city.setToolTipText("City");
    zipcode=new JTextField(15);
         zipcode.setToolTipText("ZipCode");
         p1.setBounds(200,70,160,30);
         uid.setBounds(350,100,160,30);
         uname.setBounds(400,100,160,30);
         upass.setBounds(335,140,160,30);
         upassw.setBounds(400,140,160,30);
         cpass.setBounds(260,180,160,30);
         cpassw.setBounds(400,180,160,30);
         p2.setBounds(200,220,160,30);
         fname.setBounds(330,260,160,30);
         fnamet.setBounds(400,260,160,30);
         sname.setBounds(335,300,160,30);
         snamet.setBounds(400,300,160,30);
    hint.setBounds(315,340,160,30);     
    hintt.setBounds(400,340,160,30);
         sl.setBounds(370,380,160,30);     
         sex.setBounds(400,380,160,30);
         ed.setBounds(335,420,160,30);     
         education.setBounds(400,420,160,30);
    age.setBounds(330,460,160,30);
    agegr.setBounds(400,460,160,30);
    p3.setBounds(200,500,160,30);
         adr.setBounds(340,540,160,30);
         adrt.setBounds(400,540,160,30);
         adrt1.setBounds(400,580,160,30);
         cit.setBounds(370,620,160,30);
         city.setBounds(400,620,160,30);
    zip.setBounds(590,620,160,30);
    zipcode.setBounds(640,620,160,30);
         Font font = new Font("SansSerif",Font.BOLD, 12);
         setFont(font);
         c.add(p1);
    c.add(uid);
         c.add(uname);     
         c.add(upass);
         c.add(upassw);
    c.add(cpass);
         c.add(cpassw);
    c.add(p2);
    c.add(fname);     
         c.add(fnamet);
    c.add(sname);
    c.add(snamet);
         c.add(hint);
    c.add(hintt);     
    c.add(sl);
    c.add(sex);
    c.add(ed);
         c.add(education);
    c.add(age);
         c.add(agegr);
    c.add(p3);
    c.add(adr);
         c.add(adrt);
         c.add(adrt1);
    c.add(cit);
    c.add(city);
    c.add(zip);
    c.add(zipcode);
         setResizable(false);
         //int a=DO_NOTHING_ON_CLOSE;
         //setDefaultCloseOperation(a);
         show();
         setSize(800,500);
    // Border raisedBorder = new BevelBorder(BevelBorder.RAISED);     
         setContentPane(c);     
    public static void main (String arg[])
         try{
         UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
         }catch(Exception s)
         Signup swu=new Signup();

    just try the following:
    jsp.getVerticalScrollbar().setValue(0);after inserting and adding all your components. this will set the vertical scrollbar up to the very first line.
    regards

  • Hi. how can i make the robotic voice in pro 9

    hi. how can i make the robotic voice in pro 9?

    With this:
    http://documentation.apple.com/en/logicstudio/effects/index.html#chapter=10%26se ction=3%26hash=apple_ref:doc:uid:TempBookID-ReplacedWhenAssociatingWithMessierRe vision-PIT-1007921
    or with this:
    http://documentation.apple.com/en/logicstudio/instruments/index.html#chapter=10% 26section=0

  • Please update browser pop up everytime I open firefox........why?........how can I make it stop?....I have the latest firefox version already...annoying!!!!!!!!

    Started tonight 1/23/2014.....I opened firefox and got a new open tab with this message Please update browser.
    I have the latest version of firefox already.....why is this happening?>
    How can It be stopped?
    Please help very annoyed!!!!!

    Whenever you get a message / popup that software / files need to be updated,<br><br>
    <u>'''''DO NOT USE ANY OF THE PROVIDED LINKS'''''</u>.<br><br>
    While this may be a legitimate message, it could also be <u>'''''Malware or a Virus'''''</u>.
    Any time you want or need to check for upgrades,
    go to the web site of the <u>'''''True Owner'''''</u> of the program in question.
    For example, to check out Firefox, go to '''''[https://www.mozilla.org Mozilla.org]'''''
    or '''''[http://www.mozilla.org/en-US/firefox/all/ Firefox In Any Language]'''''.

  • How can I choose a font besides Myriad Pro as default when opening existing PDFs in Illustrator?

    I already know how to do this for new documents.
    But I work with PDFs generated in AutoCAD.
    When opening these files in Illustrator, the default font is always set to Myriad Pro.
    How can I substitute my desired font for Myriad when opening EXISTING files, short of copy/pasting into a new file? That workaround is just as time-consuming as resetting the font every time I work on a new document.
    Illustrator has to be referencing something when defaulting to this font. It seems unbelievable that this setting cannot be altered.
    Any ideas out there?

    We get autocad dies from a variety of sources, quite often the font is .txt which susbtitutes to myriad. I use find font  to substitue myriad to arial.
    Since no doucment is open, changing the New document profiles does not help to get rid of Myriad.
    You can record an action for this and set a hot key. The action is pretty fast

  • How can I see tags next to each thumbnail in PS Elements 12? Previous versions had this feature, which I found very helpful!

    Also, how can I create new tags in "Places" without having the map pop up?

    I want to know how to DISABLE the automatic updates and return to the earlier version that has a MUCH better toolbar and is MUCH easier to use I am using MAC OS 10.5.8 on a G5 tower and loved Firefox until now and did NOT want the update that automatically installed itself!

  • How can I make the UITableView go away?  The New NIB opens behind it

    The new NIB opens behind the table and the table doesn't animate away.
    I am using a TabBar Application if that makes any difference.
    Thanks!!
    - (void)tableView:(UITableView *)tableView
    didSelectRowAtIndexPath:(NSIndexPath *)indexPath
    NSInteger row = [indexPath row];
    if (row == 0)
    MoreZeroViewController *view2 = [[MoreZeroViewController alloc] initWithNibName:@"MoreZeroView" bundle:[NSBundle mainBundle]];
    self.moreZeroViewController = view2;
    [[self navigationController] pushViewController:moreZeroViewController animated:YES];
    [self.view addSubview:view2.view];
    [view2 release];

    Have you inspected the navigationController you are attempting to push the view with in the debugger? I'm guessing that it is nil since you are using a TabBar controller. The line after the pushViewController adds the new view as a sub view - that does not change what is already there so you will continue to see your table. What you need to do is to create a UINavigationController - insert that into the hierarchy then use it to push your new view. It can be a little tricky to get the UINavigationController and UITabbrController to peacefully coexist. Try searching these forums for how to make that work - I have that topic discussed.

  • How can I make different windows of the same application I have open remain on their respective desktops/spaces after reboot?

    Hi all,
    I use the same applications for work, entertainment and other personal activities, so it's impossible to simply assign different apps to different desktops/spaces. Thus, I have open windows of the same programs (Pages, TextEdit, Preview) arranged on several desktops. If I reboot my laptop, the windows are just crammed on Desktop 1. Can something be done about it?

    Barney,
    many thanks for your efforts and your time (preparing and posting the screenshot, answering to this question,...).
    Unfortunately, moving the focus to the next window only works with windows on the same desktop.
    btw, using a german keyboard layout and german language settings the shortcut is "cmd+<".
    I can switch with this shortcut between different windows of my Safari which reside on the same desktop, but I cannot swith between different safari windows distributed over several desktops.
    Thanks,
    equi    

  • How can I make Illustrator stills for Premiere Pro sequences?

    So far, when I create Illustrator stills (in this case, consisting of type) and import them into a Premiere Pro sequence, only the type itself ends up on screen. It's almost as if I've selected just the type to be used and the rest of the canvas has disappeared. Thanks.

    34airflow wrote:
    So far, when I create Illustrator stills (in this case, consisting of type) and import them into a Premiere Pro sequence, only the type itself ends up on screen. It's almost as if I've selected just the type to be used and the rest of the canvas has disappeared. Thanks.
    That is correct:

  • Macafee is not working properly with the latest version of firefox, how can I get it to work the way it was working on the previous version?

    when browsing on google, it doesn't show the macafee safety arrow or caution, nor does it name the macafee secure sites. What happened with the new version?

    '''McAfee Site Advisor:''' https://support.mozilla.com/questions/837419
    Look for an updated version in about the 3rd week of July; hopefully they'll fix their many other errors besides, I don't think I've been able to use it since about Firefox 3.6.0 or maybe 3.6.6
    Be aware that if you currently choose to use McAfee Site Advisor it has some serious problems for Firefox users, check
    *http://kb.mozillazine.org/Problematic_extensions for some things to watch out for.
    *https://support.mozilla.com/questions/837877
    *https://community.mcafee.com/message/195191

  • How can I make "mail" my default email app?

    When I click on an email address from Cobook or on a web page viewed in Safari, the chrome app opens to a gmail account that I rarely use. How can I make my regular Mail app the default?
    Thanks.

    Open Mail -> Preferences. Under the General tab there should be an option to select the default Mail app.

  • How can I make Terminal run Java 7 downloaded from the Oracle Website?

    I've downloaded Java 7 from the Oracle website, and I want the Terminal application to run that Java 7 download. I try to run Java programs that require Java 7, but it runs with the Apple Internal Java 6 release. How can I make it so my MacBook Pro runs the download of Java that I downloaded? I know this sounds stupid, but am I routing my machine to run the internal Java 6 version? I have seen many videos in which people with the same software version as me run Java like this with no problem. Could you please let me know why this is happening and how I can fix it? I really want to be able to use the Java 7, particularly because I'm always getting this "Unsupported Major Minor Version 51.0" from many applications that are Terminal based.
    Thanks!

    I think I've answered your question. The Oracle JRE is a web plugin. The JDK is a development kit for applications with embedded Java. Neither one replaces the Apple-distributed Java frameworks for running standalone applications without embedded Java. Any other questions you have should be answered by the Oracle documentation.

  • New windows don't open on top of each other in Firefox. How can I make that happen?

    New windows don't open on top of each other in Firefox. How can I make that happen? That is, every time I open a new window, it won't open on top of the old window, and instead is positioned to the right of it. I'm on a mac. Please help.
    == This happened ==
    Every time Firefox opened
    == Today

    I see. I'm not aware of how to fix this in Firefox. Usually you want to tweak your Winow Manager preferences for opening new windows.
    Example: sawfish preferences for Linux.
    Since Mac OS X doesn't have any preferences, you have to use Applescript or another technique. I found [http://amitp.blogspot.com/2006/08/mac-os-x-window-management-spooky.html Spooky], maybe there are others. I haven't tried it, but here is the [http://www.doernte.net/spooky.html Spooky Download and Description].

  • How can i make a back up on my desktop ? i have pc windows and itunes 11.0.4

    how can i make a back up full on my pc ? i have iphone4 version 6.0.1 with itunes 11.0.4 ? 

    Hi.
    Messages are included with the iPhone's backup which is updated by iTunes as the first step during the iTunes sync process.
    Are you wanting access to your messages on your computer?
    If so, there are 3rd party utilities that provide for extracting messages and other data from your iPhone's backup on your computer's hard drive, or transferring messages from your iPhone for access on your computer.

  • How can I make (automatic) accounts for users of my adobe muse site?

    Adobe, google, facebook and more site haves accounts for his users, but how can I make a system with accounts for users of my adobe muse site?

    Hi,
    Try some suggestion given in this thread
    http://forums.adobe.com/message/5362643#5362643

Maybe you are looking for

  • I've just switched from Freehand and I'm going to have a heart attack ...

    In two weeks, my tech department is ripping Freehand MX off of my machine and I'll be finally forced to use Illustrator. I know it is going to take a bit of time to get used to Illustrator after using Freehand for the past 15 years, but if someone ou

  • KVM for mixed DVI D-sub setup

    I can't find one of the KVM discussions I recall, but I don't think it addressed this. I would love to share a keyboard, mouse, and one or more monitors with my 3 PCs.  But the laptop and one PC are old (meaning D-sub video outputs), and the other is

  • ASP insert record receive a mail alert

    Hi, I have an insert record in my ASP page to my db Access, that's works fine. I want to know if it is possible to send at the same time a mail to me that tell me there is a new record? Can I put two form actions in the same form? <form action="<%=MM

  • Error message (13013) when opening iTunes

    Can anyone help with this enquiry. I amm trying to open iTunes but the following error message pops up when I do this: "the iTunes application could not be opened. An unknown error occurred (13013)". I have been able to unistall & reinstall iTunes bu

  • Uunable to find the default app.......for text file.....

    Hi guys,      Iam unable to view the downloaded text file (.txt)  in my BlackBerry playbook....the error message is showing as "unable to find the default app.     Please help me