Using the apps on a Mac and Pc

Hello

If I subscribe to creative cloud, I'll be able to run applications on my desktop as well as my Macbook when I travel? Or it requires 2 licenses?

Thank you

One creative cloud subscription can be used on both Mac and Windows systems.  You can facilities on both types of systems and can have two of them signed in use.

Tags: Adobe

Similar Questions

  • can I use the cs6 on a mac and a pc on a license

    -We have both in our office. I don't know if to buy the mac cs6 AND cs6 version of pc version or if we can buy a multi-user license and download the mac version of our mac and pc to our pc version.

    I think I may have the answer--a volume license. Nobody knows how many ones that cost?

    You think that we could get both mac and pc, with the cloud membership (membership) and be able to use both - at the same time or not?

    Read the EULA. Your second activation is not a second license and intended to be used on one computer (laptop or other) when not to use the main computer, not at the same time.

    Mylenium

  • using the App: variable scrollbar help and problems

    It is a large amount of code, but please bare with me please.  I would really appreciate the help!

    If I write a financial application where the user enters the initial investment, the compound interest rate period and duration of investment and it calculates the value.  Here is my code: each "screen" that appears on the emulator is its own class:

    package com.rim.samples.Finance;
    
    import net.rim.device.api.ui.UiApplication;
    
    public class FinanceApplication extends UiApplication
    {
        //VARIABLES FOR THE INVESTMENT GROWTH
        public double initialInvestment;
        public double interest;
        public int compoundPeriod;
        public int investmentLength;
    
        public static void main(String[] args)
        {
            FinanceApplication firstApplication  = new FinanceApplication();
            firstApplication.enterEventDispatcher();
        }
    
        public FinanceApplication()
        {
            //OPENING SCREEN FOR INVESTMENT GROWTH
            pushScreen(new Screen1());
        }
    
    }
    
    //SCREEN 1 INPUTS *INITIAL INVESTMENT*
    
    package com.rim.samples.Finance;
    
    import net.rim.device.api.ui.Color;
    import net.rim.device.api.ui.DrawStyle;
    import net.rim.device.api.ui.Field;
    import net.rim.device.api.ui.FieldChangeListener;
    import net.rim.device.api.ui.Font;
    import net.rim.device.api.ui.Manager;
    import net.rim.device.api.ui.MenuItem;
    import net.rim.device.api.ui.UiApplication;
    import net.rim.device.api.ui.XYEdges;
    import net.rim.device.api.ui.component.BasicEditField;
    import net.rim.device.api.ui.component.ButtonField;
    import net.rim.device.api.ui.component.Dialog;
    import net.rim.device.api.ui.component.LabelField;
    import net.rim.device.api.ui.component.Menu;
    import net.rim.device.api.ui.component.SeparatorField;
    import net.rim.device.api.ui.container.HorizontalFieldManager;
    import net.rim.device.api.ui.container.MainScreen;
    import net.rim.device.api.ui.container.VerticalFieldManager;
    import net.rim.device.api.ui.decor.Border;
    import net.rim.device.api.ui.decor.BorderFactory;
    
    public class Screen1 extends MainScreen implements FieldChangeListener
    {
    
        //DECLARE MENU BUTTONS
        protected void makeMenu(Menu menu, int instance)
        {
    
            menu.add(_close);
        }
        private MenuItem _close = new MenuItem("Close", 110, 10)
        {
            public void run()
            {
                onClose();
            }
        };
        public boolean onClose()
        {
            Dialog.alert("Goodbye!");
            System.exit(0);
            return true;
        }
    
        //SCREEN 1 METHOD
        Screen1()
        {
    
            HorizontalFieldManager _fieldManagerTop = new HorizontalFieldManager(Manager.VERTICAL_SCROLL | Manager.VERTICAL_SCROLLBAR);
            VerticalFieldManager _fieldManagerMiddle = new VerticalFieldManager(Manager.VERTICAL_SCROLL | Manager.VERTICAL_SCROLLBAR);
            HorizontalFieldManager _fieldManagerBottom = new HorizontalFieldManager(Manager.VERTICAL_SCROLL | Manager.VERTICAL_SCROLLBAR);
            HorizontalFieldManager _fieldManagerButton = new HorizontalFieldManager(Manager.VERTICAL_SCROLL | Manager.VERTICAL_SCROLLBAR);
    
            //SET TITLE: FINANCIAL APPLICATION
            LabelField title = new LabelField ("Financial Application", LabelField.USE_ALL_WIDTH | DrawStyle.HCENTER);
            Font titleFont = this.getFont().derive(Font.BOLD | Font.ITALIC);
            title.setFont(titleFont);
            setTitle(title);
    
            //SET PAGE & INFO TEXT
            LabelField _page = new LabelField("Homepage ~ Initial Investment", LabelField.USE_ALL_WIDTH | DrawStyle.HCENTER);
            LabelField _info = new LabelField("\nThis application acts as a an investment or growth calculator.  The user inputs the amount of money he or she would like to invest originally, input the interest, the compound period, the regular monthly deposit into the investment, and the time her or she will have the investment and this application will calculate how much the investment will be worth.\n\n Please enter initial amount of money you are depositing into the investment.\n$XX.xx", LabelField.USE_ALL_WIDTH);
    
            //INPUT FIELDS TESTING!!!!
    
            //INPUT FIELD W/ BORDER
            BasicEditField _input = new BasicEditField();
    
            XYEdges padding = new XYEdges(10, 10, 10, 10);
            int color = Color.DARKGREEN;
            int lineStyle = Border.STYLE_SOLID;
            Border inputBorder = BorderFactory.createRoundedBorder(padding, color, lineStyle);
            _input.setBorder(inputBorder);
    
            //ADD FIELDS AND SEPARATORS
            add(_fieldManagerTop);
            add(new SeparatorField());
            add(_fieldManagerMiddle);
            add(new SeparatorField());
            add(_fieldManagerBottom);
            add(new SeparatorField());
            add(_fieldManagerButton);
    
            //ADD PAGE, INFO, INPUT
            _fieldManagerTop.add(_page);
            _fieldManagerMiddle.add(_info);
            _fieldManagerBottom.add(_input);
    
            //CREATE BUTTON TO NEXT PAGE
            ButtonField pressButton = new ButtonField("NEXT");
            pressButton.setChangeListener(this);
            _fieldManagerButton.add(pressButton);
    
        }
    
        //BUTTON FIELD CHANGE: ACTIONS
        public void fieldChanged(Field field, int context)
        {
            // PROBLEM IS HERE, I WANT WHATEVER IS TYPED INTO _input TO BE SET AS THE VARIABLE initialInvestmentFinanceApplication.initialInvestment=_input;
    
            UiApplication.getUiApplication().popScreen(this);
            UiApplication.getUiApplication().pushScreen(new Screen2());
    
        }
    
    }
    
    //SCREEN 2 INPUTS *INTEREST*
    
    package com.rim.samples.Finance;
    
    import net.rim.device.api.ui.Color;
    import net.rim.device.api.ui.DrawStyle;
    import net.rim.device.api.ui.Field;
    import net.rim.device.api.ui.FieldChangeListener;
    import net.rim.device.api.ui.Font;
    import net.rim.device.api.ui.MenuItem;
    import net.rim.device.api.ui.UiApplication;
    import net.rim.device.api.ui.XYEdges;
    import net.rim.device.api.ui.component.BasicEditField;
    import net.rim.device.api.ui.component.ButtonField;
    import net.rim.device.api.ui.component.Dialog;
    import net.rim.device.api.ui.component.LabelField;
    import net.rim.device.api.ui.component.Menu;
    import net.rim.device.api.ui.component.SeparatorField;
    import net.rim.device.api.ui.container.HorizontalFieldManager;
    import net.rim.device.api.ui.container.MainScreen;
    import net.rim.device.api.ui.container.VerticalFieldManager;
    import net.rim.device.api.ui.decor.Border;
    import net.rim.device.api.ui.decor.BorderFactory;
    
    public class Screen2 extends MainScreen implements FieldChangeListener
    {
        //DECLARE MENU BUTTONS
        protected void makeMenu(Menu menu, int instance)
        {
            menu.add(_home);
            menu.add(_close);
        }
    
        private MenuItem _home = new MenuItem("Home Page", 110, 10)
        {
                public void run()
                {
                    onHome();
                }
        };
    
        public boolean onHome()
        {
            Dialog.alert("Homepage Selected");
            UiApplication.getUiApplication().popScreen(this);
            UiApplication.getUiApplication().pushScreen(new Screen1());
            return true;
        }
    
        private MenuItem _close = new MenuItem("Close", 110, 10)
        {
            public void run()
            {
                onClose();
            }
        };
    
        public boolean onClose()
        {
            Dialog.alert("Goodbye!");
            System.exit(0);
            return true;
        }
    
        //SCREEN 2 METHOD
        Screen2()
        {
            HorizontalFieldManager _fieldManagerTop = new HorizontalFieldManager();
            VerticalFieldManager _fieldManagerMiddle = new VerticalFieldManager();
            HorizontalFieldManager _fieldManagerBottom = new HorizontalFieldManager();
            HorizontalFieldManager _fieldManagerButton = new HorizontalFieldManager();
    
            //SET TITLE: FINANCIAL APPLICATION
            LabelField title = new LabelField ("Financial Application", LabelField.USE_ALL_WIDTH | DrawStyle.HCENTER);
            Font titleFont = this.getFont().derive(Font.BOLD | Font.ITALIC);
            title.setFont(titleFont);
            setTitle(title);
    
            //SET PAGE & INFO TEXT
            LabelField _page = new LabelField("Page Two ~ Interest", LabelField.USE_ALL_WIDTH | DrawStyle.HCENTER);
            LabelField _info = new LabelField("\nNow please enter the interest that will be put on this investment", LabelField.USE_ALL_WIDTH);
    
            //INPUT FIELD W/ BORDER
            BasicEditField _input = new BasicEditField();
            XYEdges padding = new XYEdges(10, 10, 10, 10);
            int color = Color.DARKGREEN;
            int lineStyle = Border.STYLE_SOLID;
            Border inputBorder = BorderFactory.createRoundedBorder(padding, color, lineStyle);
            _input.setBorder(inputBorder);
    
            //ADD FIELDS AND SEPARATORS
            add(_fieldManagerTop);
            add(new SeparatorField());
            add(_fieldManagerMiddle);
            add(new SeparatorField());
            add(_fieldManagerBottom);
            add(new SeparatorField());
            add(_fieldManagerButton);
    
            //ADD PAGE, INFO, INPUT
            _fieldManagerTop.add(_page);
            _fieldManagerMiddle.add(_info);
            _fieldManagerBottom.add(_input);
    
            //CREATE BUTTON TO NEXT PAGE
            ButtonField pressButton = new ButtonField("NEXT");
            pressButton.setChangeListener(this);
            _fieldManagerButton.add(pressButton);
    
        }
    
        //BUTTON FIELD CHANGE: ACTIONS
        public void fieldChanged(Field field, int context)
        {
            UiApplication.getUiApplication().popScreen(this);
            UiApplication.getUiApplication().pushScreen(new Screen3());
        }
    }
    
    //SCREEN 3 INPUTS *COMPOUND PERIOD*
    
    package com.rim.samples.Finance;
    
    import net.rim.device.api.ui.Color;
    import net.rim.device.api.ui.DrawStyle;
    import net.rim.device.api.ui.Field;
    import net.rim.device.api.ui.FieldChangeListener;
    import net.rim.device.api.ui.Font;
    import net.rim.device.api.ui.MenuItem;
    import net.rim.device.api.ui.UiApplication;
    import net.rim.device.api.ui.XYEdges;
    import net.rim.device.api.ui.component.BasicEditField;
    import net.rim.device.api.ui.component.ButtonField;
    import net.rim.device.api.ui.component.Dialog;
    import net.rim.device.api.ui.component.LabelField;
    import net.rim.device.api.ui.component.Menu;
    import net.rim.device.api.ui.component.ObjectChoiceField;
    import net.rim.device.api.ui.component.SeparatorField;
    import net.rim.device.api.ui.container.HorizontalFieldManager;
    import net.rim.device.api.ui.container.MainScreen;
    import net.rim.device.api.ui.container.VerticalFieldManager;
    import net.rim.device.api.ui.decor.Border;
    import net.rim.device.api.ui.decor.BorderFactory;
    
    public class Screen3 extends MainScreen implements FieldChangeListener
    {
        //DECLARE MENU BUTTONS
        protected void makeMenu(Menu menu, int instance)
        {
            menu.add(_home);
            menu.add(_close);
        }
    
        private MenuItem _home = new MenuItem("Home Page", 110, 10)
        {
                public void run()
                {
                    onHome();
                }
        };
    
        public boolean onHome()
        {
            Dialog.alert("Homepage Selected");
            UiApplication.getUiApplication().popScreen(this);
            UiApplication.getUiApplication().pushScreen(new Screen1());
            return true;
        }
    
        private MenuItem _close = new MenuItem("Close", 110, 10)
        {
            public void run()
            {
                onClose();
            }
        };
    
        public boolean onClose()
        {
            Dialog.alert("Goodbye!");
            System.exit(0);
            return true;
        }
    
        //SCREEN 3 METHOD
        Screen3()
        {
    
            HorizontalFieldManager _fieldManagerTop = new HorizontalFieldManager();
            VerticalFieldManager _fieldManagerMiddle = new VerticalFieldManager();
            HorizontalFieldManager _fieldManagerBottom = new HorizontalFieldManager();
            HorizontalFieldManager _fieldManagerButton = new HorizontalFieldManager();
    
            //SET TITLE: FINANCIAL APPLICATION
            LabelField title = new LabelField ("Financial Application", LabelField.USE_ALL_WIDTH | DrawStyle.HCENTER);
            Font titleFont = this.getFont().derive(Font.BOLD | Font.ITALIC);
            title.setFont(titleFont);
            setTitle(title);
    
            //SET PAGE & INFO TEXT
            LabelField _page = new LabelField("Page Three ~ Compound Period", LabelField.USE_ALL_WIDTH | DrawStyle.HCENTER);;
            LabelField _info = new LabelField("\nNow please enter the compound period.\npress spacebar to go through the choices:", LabelField.USE_ALL_WIDTH);;
    
            //ADD FIELDS AND SEPARATORS
            add(_fieldManagerTop);
            add(new SeparatorField());
            add(_fieldManagerMiddle);
            add(new SeparatorField());
            add(_fieldManagerBottom);
            add(new SeparatorField());
            add(_fieldManagerButton);
    
            //OBJECT CHOICE FIELD
            String choicestrs[] = {"Weekly", "Bi-Weekly", "Monthly", "Quarterly", "Annually"};
            ObjectChoiceField choice = new ObjectChoiceField("Compound Period: ", choicestrs, 0);
    
            //ADD PAGE, INFO, OBJECT CHOIE TO FIELD
            _fieldManagerTop.add(_page);
            _fieldManagerMiddle.add(_info);
            _fieldManagerBottom.add(choice);
    
            //CREATE BUTTON TO NEXT PAGE
            ButtonField press2Button = new ButtonField("NEXT");
            press2Button.setChangeListener(this);
            _fieldManagerButton.add(press2Button);
    
        }
    
        //BUTTON FIELD CHANGE: ACTIONS
        public void fieldChanged(Field field, int context)
        {
            UiApplication.getUiApplication().popScreen(this);
            UiApplication.getUiApplication().pushScreen(new Screen4());
        }
    }
    
    //SCREEN 4 INPUTS *LENGTH OF INVESTMENT*
    
    package com.rim.samples.Finance;
    
    import net.rim.device.api.ui.Color;
    import net.rim.device.api.ui.DrawStyle;
    import net.rim.device.api.ui.Field;
    import net.rim.device.api.ui.FieldChangeListener;
    import net.rim.device.api.ui.Font;
    import net.rim.device.api.ui.MenuItem;
    import net.rim.device.api.ui.UiApplication;
    import net.rim.device.api.ui.XYEdges;
    import net.rim.device.api.ui.component.BasicEditField;
    import net.rim.device.api.ui.component.ButtonField;
    import net.rim.device.api.ui.component.Dialog;
    import net.rim.device.api.ui.component.LabelField;
    import net.rim.device.api.ui.component.Menu;
    import net.rim.device.api.ui.component.SeparatorField;
    import net.rim.device.api.ui.container.HorizontalFieldManager;
    import net.rim.device.api.ui.container.MainScreen;
    import net.rim.device.api.ui.container.VerticalFieldManager;
    import net.rim.device.api.ui.decor.Border;
    import net.rim.device.api.ui.decor.BorderFactory;
    
    public class Screen4 extends MainScreen implements FieldChangeListener
    {
        //DECLARE MENU BUTTONS
        protected void makeMenu(Menu menu, int instance)
        {
            menu.add(_home);
            menu.add(_close);
        }
    
        private MenuItem _home = new MenuItem("Home Page", 110, 10)
        {
                public void run()
                {
                    onHome();
                }
        };
    
        public boolean onHome()
        {
            Dialog.alert("Homepage Selected");
            UiApplication.getUiApplication().popScreen(this);
            UiApplication.getUiApplication().pushScreen(new Screen1());
            return true;
        }
    
        private MenuItem _close = new MenuItem("Close", 110, 10)
        {
            public void run()
            {
                onClose();
            }
        };
    
        public boolean onClose()
        {
            Dialog.alert("Goodbye!");
            System.exit(0);
            return true;
        }
    
        //SCREEN 4 METHOD
        Screen4()
        {
            HorizontalFieldManager _fieldManagerTop = new HorizontalFieldManager();
            VerticalFieldManager _fieldManagerMiddle = new VerticalFieldManager();
            HorizontalFieldManager _fieldManagerBottom = new HorizontalFieldManager();
            HorizontalFieldManager _fieldManagerButton = new HorizontalFieldManager();
    
            //SET TITLE: FINANCIAL APPLICATION
            LabelField title = new LabelField ("Financial Application", LabelField.USE_ALL_WIDTH | DrawStyle.HCENTER);
            Font titleFont = this.getFont().derive(Font.BOLD | Font.ITALIC);
            title.setFont(titleFont);
            setTitle(title);
    
            //SET PAGE & INFO TEXT
            LabelField _page = new LabelField("Page Four ~ Investment Length", LabelField.USE_ALL_WIDTH | DrawStyle.HCENTER);
            LabelField _info = new LabelField("\nNow please enter how long you will have this investment for?\nPlease enter the amount in months:", LabelField.USE_ALL_WIDTH);
    
            //INPUT FIELD W/ BORDER
            BasicEditField _input = new BasicEditField();
            XYEdges padding = new XYEdges(10, 10, 10, 10);
            int color = Color.DARKGREEN;
            int lineStyle = Border.STYLE_SOLID;
            Border inputBorder = BorderFactory.createRoundedBorder(padding, color, lineStyle);
            _input.setBorder(inputBorder);
    
            //ADD FIELDS AND SEPARATORS
            add(_fieldManagerTop);
            add(new SeparatorField());
            add(_fieldManagerMiddle);
            add(new SeparatorField());
            add(_fieldManagerBottom);
            add(new SeparatorField());
            add(_fieldManagerButton);
    
            //ADD PAGE, INFO, INPUT
            _fieldManagerTop.add(_page);
            _fieldManagerMiddle.add(_info);
            _fieldManagerBottom.add(_input);
    
            //CREATE BUTTON TO NEXT PAGE
            ButtonField pressButton = new ButtonField("NEXT");
            pressButton.setChangeListener(this);
            _fieldManagerButton.add(pressButton);
    
        }
    
        //BUTTON FIELD CHANGE: ACTIONS
        public void fieldChanged(Field field, int context)
        {
            UiApplication.getUiApplication().popScreen(this);
            UiApplication.getUiApplication().pushScreen(new InvestmentWorth());
        }
    }
    
    //INVESTMENT WORTH
    
    package com.rim.samples.Finance;
    
    import net.rim.device.api.ui.Color;
    import net.rim.device.api.ui.DrawStyle;
    import net.rim.device.api.ui.Field;
    import net.rim.device.api.ui.FieldChangeListener;
    import net.rim.device.api.ui.Font;
    import net.rim.device.api.ui.Manager;
    import net.rim.device.api.ui.MenuItem;
    import net.rim.device.api.ui.UiApplication;
    import net.rim.device.api.ui.XYEdges;
    import net.rim.device.api.ui.component.ButtonField;
    import net.rim.device.api.ui.component.Dialog;
    import net.rim.device.api.ui.component.LabelField;
    import net.rim.device.api.ui.component.Menu;
    import net.rim.device.api.ui.component.SeparatorField;
    import net.rim.device.api.ui.container.HorizontalFieldManager;
    import net.rim.device.api.ui.container.MainScreen;
    import net.rim.device.api.ui.container.VerticalFieldManager;
    import net.rim.device.api.ui.decor.Border;
    import net.rim.device.api.ui.decor.BorderFactory;
    
    public class InvestmentWorth extends MainScreen
    {
    
        //DECLARE MENU BUTTONS
        protected void makeMenu(Menu menu, int instance)
        {
    
            menu.add(_close);
        }
        private MenuItem _close = new MenuItem("Close", 110, 10)
        {
            public void run()
            {
                onClose();
            }
        };
        public boolean onClose()
        {
            Dialog.alert("Goodbye!");
            System.exit(0);
            return true;
        }
    
        //SCREEN 1 METHOD
        InvestmentWorth()
        {
    
            HorizontalFieldManager _fieldManagerTop = new HorizontalFieldManager(Manager.VERTICAL_SCROLL | Manager.VERTICAL_SCROLLBAR);
            VerticalFieldManager _fieldManagerMiddle = new VerticalFieldManager(Manager.VERTICAL_SCROLL | Manager.VERTICAL_SCROLLBAR);
            HorizontalFieldManager _fieldManagerBottom = new HorizontalFieldManager(Manager.VERTICAL_SCROLL | Manager.VERTICAL_SCROLLBAR);
    
            //SET TITLE: FINANCIAL APPLICATION
            LabelField title = new LabelField ("Financial Application", LabelField.USE_ALL_WIDTH | DrawStyle.HCENTER);
            Font titleFont = this.getFont().derive(Font.BOLD | Font.ITALIC);
            title.setFont(titleFont);
            setTitle(title);
    
            //SET PAGE & INFO TEXT
            LabelField _page = new LabelField("Homepage ~ Initial Investment", LabelField.USE_ALL_WIDTH | DrawStyle.HCENTER);
            LabelField _info = new LabelField("\nHere is the worth of your investment:\n", LabelField.USE_ALL_WIDTH);
    
            //INPUT FIELD W/ BORDER
            LabelField _worth = new LabelField();
            XYEdges padding = new XYEdges(10, 10, 10, 10);
            int color = Color.BLACK;
            int lineStyle = Border.STYLE_SOLID;
            Border inputBorder = BorderFactory.createRoundedBorder(padding, color, lineStyle);
            _worth.setBorder(inputBorder);
    
            //ADD FIELDS AND SEPARATORS
            add(_fieldManagerTop);
            add(new SeparatorField());
            add(_fieldManagerMiddle);
            add(new SeparatorField());
            add(_fieldManagerBottom);
    
            //ADD PAGE, INFO, INPUT
            _fieldManagerTop.add(_page);
            _fieldManagerMiddle.add(_info);
            _fieldManagerBottom.add(_worth);
    
        }
    
    }
    

    So when I run on the emulator, on Blackbery 8520 SDK emulator, it doesn't let me scroll upwards on the first screen to see the rest of the text, it's like the cursor on the button sticks or editing field base so it wont allow to exceed upwards the button or basic edit field , but I can scroll between them.

    Second problem is trying to address (as defined in the first class) variables to different edit fields so when something is typed in (double), it is placed in the variable to use in the rest of the program.  I want to make sure the basic edit fields only allow "double" number entered, otherwise it displays a message 'incorrect type '.   Please help me with this, or give me some advice.

    I would REALLY appreciate it.

    LabelFields will display several lines later the OS, so maybe this isn't a problem.  However, LabelFields are by default not active, so you can't scroll on them.  RichTextFields are active by default.  So either change your LabelFields for et focusable (style LabelField.FOCUSABLE) pr change to RichTextField, as the previous poster suggested.

    I do not understand your second question, what are the numbers 'double '?

    However, I was watching the styles FILTER_ that you can use to BasicEditField or watch extending TextFilter to check the characters that they are entered.  I suspect TextFilter is the right way to go, but I've never done anything like this.  But having a good overview in this field and classes that extends.

  • Can I use the creative cloud in mac and windows?

    I want to buy the cloud Creative photography using both microsoft Surface pro and my macbook. is this possible?

    Yes. Licenses CC is independent of the platform and you can use your two allowances in mixed configurations.

    Mylenium

  • Is the app for Better Homes and Gardens Cookbook for Mac still available?

    I have the app for Better Homes and Gardens Cookbook, but it works on my iPad.  I want it on my Macbook Pro.  How to do it?

    HOW is it that so many things are available on the iPad but not on Mac computers?

    You can try to contact the developers of the versions of iOS apps and ask them if they have plans to make a Mac version of them

  • How we would use the apps with connecting them to creative cloud and it is not not a trial.

    How we would use the apps with connecting them to creative cloud and it is not not a trial.

    Log, activation, or connection errors. CS5.5 and later, Acrobat DC

    Mylenium

  • I have a Mac and a PC. I currently use the LR5 on my Mac. If I had to buy a CC plan, can I install it on my Mac and PC, iPad and iPhone?

    Can I install the software on a Mac and a PC CC, as well as mobile devices?

    Creating cloud plans allow for mixed platforms.  You can set up on all numbersd machines that meet the system requirements for the software, but you can only be connected to the two of them at some point.  I think you need the mobile version for mobile devices.

  • Photosmart HP 6520: HP Photosmart 6520 - error message when you try to use the apps

    I can't access is more apps on my Photosmart HP 6520.  I get the error message "error connection server - 1".

    I don't know if this problem just since I recently changed from a Windows PC on a Mac.

    I very rarely use the apps, so I don't know when it started.

    Everything else seems to work very well I would say.

    Can someone please tell me what could be the cause, or if there is something I can try to sort it out?

    I seem to be going round in circles, and I can't work on what is happening.

    Thanks for your help.

    Hey @TraceyMac,

    Welcome to the Forum from HP Support.  I hope you enjoy your experience here.

    I understand that you are unable to use the pads (Print Apps) on your HP Photosmart 6520 e-all-in-one printer.  I want to help you with this.  A recent installation of printer would not affect your performance of platelets but no loss of connection or wireless Web services could be a factor.

    Note that to access the applications and their use from the front panel of your printer requires two ingredients to be successful: 1) Wi - Fi connection and 2). the ePrint feature (webservices are enabled).

    • Touch the wireless icon () on the front panel of your printer - is the printer connected to your wireless network?  (If not, run the wireless configuration wizard, select your network name/SSID and enter your password wireless reconnect).  If you are connected, proceed as explained below.
    • Tap the icon of webservices/ePrint () on the front panel of your printer.
    • If webservices are not enabled, press OK in order to enable them and allow the automatic updates of printers.
    • This will cause your printer to print an information document describing the characters before @hpeprint.com your printer (ePrint address).  This is known as the claim code.  As another way to use printing applications available for your printer, you can sign in to http://www.hpconnected.com to program applications printing to print and review all the content that ideally will reappear on the front of your printer.
    • From there, you can click the devices tab and use the claimcode to add your printer to the site and take advantage of the available applications, it.

    If these basic steps to respond to a resolution, please, try the following:

    When users encounter this type of problem in general, I suggest from scratch with wireless printer, webservices, and apps printing configuration.  You can clear all of these parameters in a swoop by the factory default restore * your printer.

    Here's how:

    * Note that this step resets the setting up your printer wireless, address ePrint and other custom print settings. If you have created a custom address @hpeprint.com it is permanently erased. For more information about custom addresses ePrint, click here.

    • Front panel of the printer, arrow down and select Tools
    • Select restore default

    Then touch the wireless icon, run the Wireless Setup Wizard to restore your network connection, and then tap the Webservices () and reactivate your webservices.

    If you are able to successfully reactivate your webservices, tap on the icon of your printer wireless () and make a note of the IP address of the printer.  Then, follow these steps to configure a manual DNS:

    • Enter the printer's IP address in a web browser (Chrome, Firefox, Safari, Internet Explorer) and press ENTER to go directly to this page.
    • Click the network tab.
    • In the submenu on the left, click Networking.
    • Then click on the network (IP) address.
    • Click Manual DNS server.
    • DNS preferred as 8.8.8.8 manual entry
    • Auxiliary DNS server entry as 8.8.4.4
    • Click on apply to finalize this change.

    No none of the suggestions above restored the functionality you're looking for?  Please let me know the result of your troubleshooting by responding to this post.  If I helped you to solve the problem, feel free to say "You rock!" by clicking the "Thumbs Up" icon below and by clicking to accept this solution.

    Thanks for posting in the Forum from HP Support.  Have a great day!

  • My Instagram app will not open it keeps saying: "pending". I have tried to delete the app, off my phone and still nothing! Please help thanks

    My Instagram app will not open it keeps saying: "pending". I have tried to delete the app, off my phone and still nothing! Please help thanks

    You said that you tried to delete the app

    If you have not been able to

    Settings - general - storage - Storage - find the app - delete

    Do a forced reboot - after all open applications using the app Chooser - invoked by fast double pressing the home button and drag upwards on each app until it disappears from the screen.

    Meet the sleep/wake and home buttons down until you see the logo  - then release and allow normal start upward

    Then re download the app

  • I can't use the App Store after installing iOS 9.3.1

    I can't use the App Store or iCloud, after I installed the iOS 9.3.1.

    Force restart your iPhone...

    Press and hold the Home and Sleep/Wake buttons for at least ten seconds, until you see the Apple logo.

    Then try the App store or iCloud.

  • Is it possible to connect my Mac mini to my Mac Pro laptop using the memory on my mac mini for installing software Ableton as I don't have 3 GB available on my Mac Pro.

    Is it possible to connect my Mac mini to my Mac Pro laptop using the memory on my mac mini for installing software Ableton as I don't have 3 GB available on my Mac Pro.

    I want to download Ableton software, but it requires 3 GB of free memory that I have available on my MacPro laptop not because most of it is used for my library of music because I'm a DJ.

    I'm not sure how I can do it or not at all.

    Thank you very much.

    1. a Mac Pro is not a laptop. Its a big desktop computer.  You probably have a MacBook Pro, which is a laptop.

    2. No, you cannot share the memory (live RAM) or storage (disk space, which is not memory) like that between computers.

    However, it is very very bad practice to have so little storage space available for your computer.   If you have less than 3 GB, you should seriously consider an external drive. and unload some files on the outside. Its best not to leave your hard drive to go below 10 GB of free space because it can seriously affect your computer's performance.

  • I followed the instructions to set up the home between my Mac and iPhone sharing 6, but I don't understand all the music on my iPhone

    I followed the instructions to set up the home between my Mac and iPhone sharing 6, but I don't understand all the music on my iPhone

    I have confirmed:

    (1) devices are on the same network

    (2) I am connected to my AppleID with the same account

    3) are my OS up to date (Mac 10.11.2) (9.2 iPhone)
    (3) I closed iTunes and the App has reopened

    (4) I turned my iPhone off and rebooted (and confirms the foregoing)

    On my iPhone, I see in my music library, different ' kind' listed (e.g., classic, recently added, music of the 1990s, etc.) but they are all empty.

    Im hoping to see the music I have in iTunes on my Mac and play these songs on my iPhone.

    IM thinking, music that would be shared from my computer to my phone will be on the cloud?

    (I did not all default to add my music in the cloud at the moment).

    Post edited by: abbeyinor

    Did you go into settings > music on your phone and sign in home sharing?

    See you soon,.

    GB

  • Note K3 shows notifications unless u use the app

    The lenovo K3 note shows apps notifications Whatsapp and hiking until and unless u use the app... If the phone is idle and you get messages but device does not show that any messasages until and unless you open the app to check notifications. Pls help am facing this error since the day 1 of the device

    Note from the admin; edited to be more descriptive subject

    Hi BVD,

    Welcome to the community of Lenovo!

    Please check the settings below.

    Go to the settings->-> (click on the radio button)-> allow database in data usage

    If you use internet through mobile data well want to manually set the service provider contact APN.

    I hope this helps.

    Thank you & best regards

  • When I try clicking on my start in windows mail page icon, mail, or the app won't open and instead this system32 folder opens.

    Original title: windows problem

    someone has an idea, when I try to click on my start page icon in windows mail, the mail or the app won't open and instead opens this system32 folder.  I don't know what the problem is?  I bought Kaspersky and it works constantly to keep my computer which, incidentally, is like 7 months safe and secure.  Someone knows what's going on and or how to solve this?  also, when I open the file in windows Explorer, it is immediately as does not.  to frustrate and the computer runs very slowly because of these problems?   HELP HELP HELP...

    Try to test in safe mode, and then try to test in a clean boot.

    How to start Windows 8 in Mode safe
    http://www.bleepingcomputer.com/tutorials/start-Windows-8-in-safe-mode/

    How to perform a clean boot in Windows
    http://support.Microsoft.com/kb/929135/en-AU

    How to perform a clean boot for a problem in Windows Vista, Windows 7 or Windows 8
    http://support.Microsoft.com/default.aspx/KB/929135

    What happens if you create and test with another Windows user rather than your current user?

    Create a Windows 8.1 user account
    http://Windows.Microsoft.com/en-AU/Windows/create-user-account#create-user-account=Windows-8

    Using the Task Manager, take a look on the Details tab and see what program uses all CPUS.  It will be the program that slows down your computer and your slowness of cause.

    How to use the new task manager in Windows 8
    http://www.howtogeek.com/108742/how-to-use-the-new-task-manager-in-Windows-8/

    I know you have Kaspersky but it might be time for a second opinion.

    I see a lot of recommendations here for programs such as -

    Malwarebytes' Anti-Malware
    http://www.Malwarebytes.org/products/malwarebytes_free

    SuperAntispyware
    http://SUPERAntiSpyware.com/

    They are manual scans and only run when you tell them to do.

    See if the program can diagnose any problems with applications and correct.

    Download and run the troubleshooter modern UI App and check.
    http://download.Microsoft.com/download/F/2/4/F24D0C03-4181-4E5B-A23B-5C3A6B5974E3/apps.diagcab

  • I can't use the apps because of the low screen resolution page.

    Original title: Low screen resolution.

    I have improved my netbook Acer Aspire One Windows XP to windows 8 and can not use the apps because of the low screen resolution page.  Messages talking about manufacturing change of resolution with Windows 7, but that won't help me. Y at - it something that I can download to increase the resolution of the screen or I will have to consider having someone to install some kind of material?

    Most often when a device does not work, it is because the driver is damaged. Re-install a new copy should help

    http://Windows.Microsoft.com/en-us/Windows7/update-a-driver-for-hardware-that-isn ' t-work correctly? SignedIn = 1

Maybe you are looking for

  • Thunderbird starts slowly after update

    I've recently updated Thunderbird version 31.4 and since then TB starts very slowly. What happens is that when I click on TB icon in the Quick Launch bar, the borders of tuberculosis appear but nothing else. After about 20 seconds the rest of tubercu

  • Wireless on the Satellite Pro L500 - 1 4 issues

    Dear support, I have a Toshiba L500 - 1 4 which has been lowered to Windows XP SP3. As standard, it came with a wireless adapter Realtek RTL8191SE, however despite the driver updates, it was extremely difficult to connect to wireless networks. I saw

  • Windows update-windows vista Home premium

    get the message belowWindows cannot currently check the updates because the service is not running. You may have to restart your computer

  • How to do a dns flush. Release/renew IP

    Playing Pogo games, I play games of cards (bridge). I play for about 2 minutes and the accidents of games. I was told to perform a rinse of DNS. How do I do that?

  • BlackBerry Smartphones PRIV begins beeper PIN screen on reboot

    I have a 4-PIN number on my PRIV. Sometimes in the night the PRIV will restart (probably install updates, I guess) and after reboot, it will ask for the PIN before it starts up Android (which is normal). My question is after 2 minutes of PIN code scr