Can I make a deployment on OS X that works on every OS X version ?

Hello,
We have Adobe CC for education.
When I make a deployment with Creative Cloud Packager on my MacBook Pro (OS X 10.7.5) than this deployment does not work on another machines with other OS X. (Script error)
Is there a way to make a deployment that works on all versions of OS X ?
Thanks.
Johan Heylen
Katholieke Hogeschool Limburg

Hi Johan,
You can deploy the Package on all OSX which is 10.7 above as many of the CC apps are not comptible on OSX 10.6.8 If you are getting script error than I would suggest to check the Installer logs for more details.
You can refer to this link for evaluating the logs.
http://helpx.adobe.com/creative-suite/kb/troubleshoot-install-logs-cs5-cs5.html
Please let us know if it helps.
Regards,
Abhijit

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

  • Can Apple make an app or an update that makes you insert your password to turn your phone off? This can help deal with theft of iPhones because people take or find a iPhone, the first thing they do is turn the phone off.

    Can Apple make an app or an update that makes you insert your password to turn your phone off? This can help deal with theft of iPhones because people take or find a iPhone, the first thing they do is turn the phone off.

    They probably can do such s thing if they choose to do so.
    Let them know that you would like this:
    http://www.apple.com/feedback
    Not sure this is a very useful thing.  It would run down the battery.  All a thief has to do is remove them SIM and restore the iphone to stop it from being tracked.

  • On my Mac desktop I must have changed a setting so that now when I move the mouse the open windows fly off to the sides and I can't see them. They come back when I move the mouse, but it is so annoying. How can I make the windows not disappear like that?

    On my Mac desktop I must have changed a setting so that now when I move the mouse the open windows fly off to the sides and I can't see them. They come back when I move the mouse, but it is so annoying. How can I make the windows not disappear like that?

    Click on the Hot Corners..  button and look at the four definitions.  In the picture below, if you moved the cursor to the right top of the screen, it would slide all the applications off the screen as you describe and show the desktop.  Set it to "-" to deactivate.

  • Can I make the ringing last longer so that I can answer the phone in time?

    Can I make the ringing last longer so that I can answer the phone in time?

    Contact your carrier and ask them for a longer ring time.

  • Where can I get a Mac CS2 or 3 that works on an Intel computer?

    Where can I get a Mac CS2 or 3 that works on an Intel computer? My CS2 on a G4 doesn't work.
    Björn

    @Eugene – CS2 should install on Macs with OSX up to version 10.6.8. An older OS component is required: "Rosetta". With OS X 10.7 and above the install is not possible, because "Rosetta" is no longer supported in 10.7 and above.
    Uwe

  • I have the Droid X2 .. can anyone give me a clock/weather app that works?

    I have a Droid X2 ,, can anyone give me a clock/weather app that works?

    I personally like Fancy Widget on the Market. They have so many different clocks there it's unreal. Plus, I can put my clock and weather together! I hope this helps. I have the LG Revolution and there is a picture of mine with the app on.

  • HT3775 WAAAPA.MPG.... can i convert this file format to one that works on Mac?

    WAAAPA.MPG.... can i convert this file format to one that works on Mac?

    Welcome to Apple Communities
    Install VLC. QuickTime is limited in Mac, so use VLC

  • How can I make my hotmail account delete emails that I delete on my phone?

    How can I make my hotmail account delete the messages that I delete on my Droid 3? I selected the "obey the other program" in my hotmail account, but nothing's being deleted.
    Thanks,
    Cesslie

    You're welcome.     Lots of good info. can be found in this forum; if you can't find what you're looking for in a search, just post another question.  Have fun with your Droid!

  • How can I make my email boxes smaller, so that all the stuff does not show after I have opemed it?

    The email that I am reading is very large with a lot of stuff that I do not need to see. How can I make my box smaller?

    ''hhennes [[#question-1047185|said]]''
    <blockquote>
    The email that I am reading is very large with a lot of stuff that I do not need to see. How can I make my box smaller?
    </blockquote>

  • I can't update my iPad because it says that i have the most current version of software but i only have iOS 5.1.1. what can i do?

    i can't update my iPad because it says that i have the most current software but its only 5.1.1. what can i do?

    Get a newer device. The original iPad can't be updated past 5.1.1.
    (120544)

  • Can I make my iphoto library a screensaver that rotates repeatedly selecting randomly

    I understand how to make one or more pictures my desktop picture.  But what I would like to do is have the pictures in my IPhoto library selected randomly be a screensaver that rotates across the screen when I am not using my computer.  How can I do that?

    The available options for SceenSavers are found in the Desktop and Screen Savers Peference Pane. Yes the iPhoto Library is available for use by screensavers, but what exactly is done with them is a matter for the Screensaver options there.

  • How can I make a label for my chart that changes dynamically when I drag selection of data to adjacent column?

    I have a custom budget using Numbers '08 and have labeled a chart in previous versions of my budget but when I tried to update it for the new year I can't figure out how to make the label change dynamically as I drag the selected area to the adjacent column. I have checked Numbers Help and Tutorial videos as wellas the manual and have not found anything that comes close to helping but as I said I had it on previous versions but obviously don't remember how I did it and unfortuanately it is not a very intuitive feature. Thanks in advance for any help on this.

    The linkage appears to be automatic, but when broken, does not reattach itself.
    Redoing the chart isn'r a long process, though, unless you've made extensive format changes to it. Here's my process, which started with a headerless table wiht the Month labels in Row 1 (and a Chart that had an "Untitled" label on the category axis, and ended with the table and chart shown below:
    Click on any cell in the table to activate it.
    Go Table > Add Header Row.
    Select the cells containing the month names. Copy.
    Select the cells in the same columns of the Header row. Paste.
    Select the table. If the Header for the current month is highlighted and the month label is on the table, Stop here.  If not (and it probably will not be), continue.
    Delete the existing Chart (or drag it aside to use as a colour and style reference)
    Unhide any hidden rows used in the Chart.
    Select the cells to be charted.
    Click the Series orientation control (¡¡¡) to change it. The control will turn 90° and move from the column highlight to the row highlight.
    Your table and chart should now resemble the one in the image above. Edit the style as needed and you're done.
    Regards,
    Barry

  • How can i make to not be saved everything that i spell?

    How can i remove some spelling on websites and make it to not be saved anymore?
    I hope the question was understand.

    If I understand your problem, do you want to remove some words that you added to your personal dictionary of the spell checker? If that is the problem, see [[using the spell checker]], the "Removing a word you have accidentally added" section gives details of a file that you need to edit to remove the words.

  • How can I make sure my power fan is still working?

    I haven't heard it go off in a while and there's a whole lot of heat getting pushed out by case fan. I'm worried about the oncoming summer heat waves; I'd like this machine to last until next year.
    How does a little overheating affect system performance?

    If you feel a strong movement of hot air being vented out the back by the power supply's fan, at least you know that it's doing its job. With the computer ON, open the side panel and check the larger fan for proper operation. Does it appear to be covered with brown dust? You can use a can of compressed air to blow off the dust, or (preferably) remove the fan (with mounting bracket) and clean the individual blades. Placement of the computer affects the fans' capability to freely draw in outside air, as well as exhaust hot air. Make sure that there aren't any obstructions to either. Fans can eventually slow down or stop turning, as their magnetic field weakens. When the power supply fans slows down to the point that the supply gets too hot, the thermal trip will turn OFF the computer. The larger case fan doesn't cause the computer to shut down, when it starts to fail. If replacement is needed, you should replace them with ones having better CFM ratings and lower noise levels than the originals. Additionally, you could remove the processor's heat sink and use alcohol to remove the residual thermal compound from the processor and sink (remove the OEM thermal pad on the heat sink - if any). Apply a small amount of a quality thermal compound ("Arctic Silver" or equivalent) to the processor, then reinstall the heat sink, noting the proper orientation of the retainer clip. When installed correctly, its offset pressure point should be directly above the processor.

Maybe you are looking for

  • Pairing issue

    hi i have got some problem about pairing my iphone 5s to my macbook pro retina yosemite OS can u tell me what to do ?thanks advance

  • Default file type for photosmart 7525

    I am trying to find the default file type that is saved to a USB drive when scanning on the HP Photosmart 7525.  This is not my printer, I am just trying to help my sister who lives in another city and is not computer literate.  She scanned some pict

  • WIP SETTLEMENT

    I am trying to run WIP settlement through KKAO and CO88 system creates document with document type "SA". I want to change the document type. Please confirm where i have change the customization? Regards

  • EMET 4.1 update 1 Application Errors

    I have Win7, 64 bit and have installed EMET 4.1 update 1.  I keep getting different errors with the following applications: IE11 - SimExecFlow error.  Had to disable the SimExecFlow mitigation to get it to work. Adobe Reader - SimExecFlow error.  Had

  • Unable to save sent on imap server

    i am running mail with one imap account, one pop. pop works fine, but with the imap account i am unable to save sent imap messages on server. i have to first save them locally, and then move them to the imap sent folder. if i set preferences for savi