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.

Tags: BlackBerry Developers

Similar Questions

  • 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.

  • 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

  • try to sync iRiver, using the version of wmp 11 and no progress after 5%... impossible to remove version 11 to replace it with an older version... can you help me

    try to sync iRiver, using the version of wmp 11 and no progress after 5%... impossible to remove version 11 to replace it with an older version... can you help me

    Hi florane

    Have you been able to sync with WMP11 before? This problem only started recently?

    Try these steps and check:

    1 check out the iRiver firmware updates site - they have made updates to H10 for example when WMP11 is out:

    http://www.iriver.com/HTML/support/download/sudw_list.asp?searchProductIdx=73

    2. also delete sync in WMP relationship - plug in the appliance, if it is set to auto-sync: plug it in, go to synchronize, click on the small arrow below, and then choose the iRiver and the 'end sync partnership.

    3. then go to the Control Panel, Device Manager, see if the camera is there, and then uninstall it. Disconnect and reconnect the iRiver, which should refresh the device and restart WMP to see if it works better.

     

    4 also a device for synchronization in the Windows installation Media Player

    After back and let us know if it helped to solve your problem.

    Thank you and best regards,

    R uma - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Y at - it an email address to contact for help me to cancel my subscription? I tried to use the option chat 4 times and my internet keeps dropping out and canceling the cat until I can get the cancelled subscription

    Y at - it an email address to contact for help me to cancel my subscription? I tried to use the option chat 4 times and my internet keeps dropping out and canceling the cat until I can get the cancelled subscription

    You may please check out the link below for instructions on cancellation.

    Cancel your membership creative cloud

    For more information you can contact the Support from Adobe by clicking on the link below.

    Contact the customer service

    Please make sure that you are connected to the right Adobe ID.

    Hope this will help you.

    Kind regards

    Hervé Khare

  • 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

  • Had to reinstall my CS3 because of faulty hard drive. It does not accept my serial number as it says it is already used the maximum number of activations and says I should turn off. I can't as the hard disk failed! Please help.

    Had to reinstall my CS3 because of faulty hard drive. It does not accept my serial number as it says it is already used the maximum number of activations and says I should turn off. I can't as the hard disk failed! Please help.

    Have already tried to contact Adobe and they told me to reinstall the program. I did this and the same issue. It's crazy. I can not turn off something that I did not more...

    Thank you.

    No - I had, of course, tried all these things. Finally, I had someone (after several days) on the personal chat group that could fix and it did it in a few minutes. Too bad that nobody else seemed to be able to do. Adobe is very soft.

    I can't thank enough the other person - it was amazing.

  • There seems to be a problem with the soft ware.  We use the CS6 for Records services and when we try to save the record, part of the record is stored. The record to be saved as an mp3 file is 70 to 100 KB but recently only 3 KB are generally

    There seems to be a problem with the software.  We use the CS6 for Records services and when we try to save the record, part of the record is stored.  Usually the recording to be saved as an mp3 file is 70 to 100 KB but recently only 3 KB are recorded.  What should I do to fix this?

    You may need to reset your preferences of hearing files stored in C:\Users\"username"\AppData\Roaming\Adobe\Audition\5.0. If you rename this folder in 5.0.bak that hearing won't find it when you open the next time if it will recreate a new settings with the default settings folder. See if hearing then works as expected.

  • Web development Toolbox prevents me from using the letter upercase, special characters and all that requires the use of the SHIFT key. Help.

    whenever I press the SHIFT key, the web development Toolbox opens. I am unable to use the letter upercase, special characters and everything that requires the SHIFT key. It's really annoying me... i can't even use an exclamation mark111111

    The sounds you have a sticky key which is in the pressed state.

    Do you mean the box tools that should open via Ctrl + Shift + K or open more to the Toolbox that is displayed via Ctrl + F2?

    Try to press the keys involved several times, see the Web Developer menu for the shortcut keys.

    Have you tried to close and restart Firefox or restart the computer?

  • 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!

  • 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

  • Prepaid subscription for one year, but may not use the apps a month later after the purchase

    It's the customer service very frustrated that I saw, and I don't know why, it's very difficult for them to solve the problem. It has been a few days and I still can't use applications. I bought the prepaid for a year last month 28/04/2016, but started last week, he highlighted when I open apps, renew your subscription. My account on the website became creative Cloud free membership and no order history. I tired to support several times online content and they have always said that we have escalated your case anyone of higher level and the dedicated team who will contact you back or it will be fixed in a few hours, or tell me to wait another 24 hours, but so far, no contact me back and I still can't use the app I paid. I really need apps for work and they offer no other option that I can use apps while they solve the problem. It seems that I caused the problem, not of failure of their system and they don't really care the user problem.  Since the case need to the person of level greater than resolve, why I can't just s talk to a greater person directly?

    Case # 0218718387

    Hello

    Please see 'Renew your membership' message when you start an Adobe Creative Cloud application

    Hope that helps!

    Kind regards

    Sheena

  • Jerky mouse mouseover function for all while the menu (file, options, help) and the key back/forward/home too. More scrolling is choppy every Web site.

    Jerky mouse mouseover function for all while the menu (file, options, help) and the key back/forward/home too. More scrolling is choppy every Web site since the update to version 3.6 to 4 RC1.

    Gel mouse pointer when it comes across objects that use some sort of animation or gradual highlighting when hovering on (which is basically all the Firefox 4 items menu, tabs, etc.) But also a lot of things on the Web pages as the green buttons on this page that change color when you hover over them).

    After rebooting my system, however, the problem seems to have disappeared!

    [, WinXP SP3 - 4 GB RAM, Core i5 M520, driver Nvidia NVS3100M 6.14.12.5738, Firefox 4.0]

  • 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

  • Double digital precision control using the D:H:M format has problem increment/decrement

    I have a VI that allows users to define the range of dates in a control, and it does not work as it should.  Specifically, the control is the standard digital control of the modern palette, this is the data type is Double, and it is in the format % <%D:%H:%M> t.  The problem is that when I have the cursor in the hours (two digits highlighted), when I use the keyboard keys arrow up and down or buttons increase/decrease control, instead of the increment or decrement, the minutes.  When I have the cursor over the days, the inc/dec intervenes on the hours.  Has no way to increase/decrease the days in the control either.  In addition, if the cursor the cursor in the line rather than a selection, changing values are the values to the right of the cursor on the line - even the opposite of the features of LabVIEW with other digital formats.

    In addition, the left-right arrow keys won't move the selection / cursor in the control, except to spend hours to days - no other movement is possible.

    Is this a known issue?  I'm the see in 2010 SP1 and LV LV 2012

    I have attached a VI composed solely of misconduct control.

    In addition, I tried digital controls system palettes, classic and Express and they do the same thing (or worse).

    I guess at this point, I'll need to use separate controls for each field, the event handlers for the arrows, etc., but the complexity which adds is almost painful.  If anyone has another idea, I'm all ears.

    Thank you,

    Erik

    took an hour and built a work around for the problem.  No was not as bad as I thought originally that are curious differences between the Terminal command, local variables and value - namely, the Value property is the value after the event, while others have the value of pre-event for the control.  This always works for my application.

    This version is in LV 2010 SP1, which is as far as I can go.

Maybe you are looking for