HOW  DO YOU GET TO ASK A QUESTION AND GET AN ANSWER ABOUT ADOBE

HOW DO YOU GET ANSWER ABOUT ADOBE
MESSING WITH EVERY THING I TRY AND DO ON MY COMPUTER IS THERE AWAY TO SET IT SO IT WILL NOT MESS WITH EVERYTHING I DO ?
[edited by forum host - you have violated the Community Guidelines on acceptable language]

Well, the first thing to bear in mind that we are all just folk like you who use Adobe products. And we choose to share our time here helping people.
So, you need to be
1. Informative. What EXACTLY happens. Give details, exact messages, screen shots, whatever.
2. Polite. Because if we don't take to you we just won't help. You should understand that posting in all caps is considered rude, like going into a store SHOUTING. Unlike the store staff we don't have to deal with you, we can just ignore you. I know you explained why you use caps in another message, but seriously, it really hinders your chances of getting help. No wonder you find it FRUSTRATING.

Similar Messages

  • How do you uninstall Quicktime 7.1.3 and get back to 7.1.2

    As many of you seem to be experiencing, Quicktime 7.1.3 is causing iPhoto 6 to crash when pictures edited in Photoshop are opened in iPhoto.
    I want to get back to Quicktime 7.1.2 so that I can use iPhoto properly.

    Hi there,
    The only way to go back in time is to use your install disk and run an archive and install... but then you will need to upgrade again incrementally
    I would try posting your question either in the G5 forum or the quicktime forum here: http://discussions.apple.com/category.jspa?categoryID=122
    Rick
    iMac G5 iSight 20" - 30G iPOD in Slimming Black -   Mac OS X (10.4.7)   - HP Pav 15" WS and Toshiba Sat 17" WS LP's - Canon 20D & A620

  • How do you pass parameter to a methodaction and get methoditerator back?

    I'm using Jdeveloper 10.1.3.5 with BC
    I'm authenticating using Active Directory - this part is working fine.
    However I need to be able to search the Active Directory and allow an administrator to select users to add to a custom database table. The database table has the login and name. When someone logins in, I make sure they are in the user table. But the administrator needs to be able to add other users for use in drop downs (Buyers, Product Managers, etc). The users have these roles assigned to them (assigned roles are stored in another table).
    The problem is getting the data from Active Directory and displaying it in a table that the user can select from. I tried creating a method in my application module that takes two parameters - a login pattern and name pattern that are used for searching. I'm returning an ArrayList - I think I need to modify my return type. I do have the code to access Active Directory working. I added the method to the client interface. When I tried to create a page by draging the method onto the page as a parameter form and the results as a read only table, everything looks fine, but I have the following problems
    1. it runs the method with no parameters when the form is first accessed - currently I return an empty ArrayList since I don't want to return the entire Active Directory - I get the following error three times - JBO-25003: Object java.util of type ApplicationModule not found
    2. If I proceed to enter a parameter and press the button, the method is still called with no parameter (can tell by debugging) and I get the error again three times
    So how am I supposed to do this? I know how to do it with views that access database, but here I need code to access Active Directory. I tried to do programmic view object, with no better success.
    Here is the pagedef of my page
    <executables>
    <variableIterator id="variables">
    <variable Type="java.lang.String" Name="getADUsers_loginPattern"
    IsQueriable="false"/>
    <variable Type="java.lang.String" Name="getADUsers_namePattern"
    IsQueriable="false"/>
    </variableIterator>
    <methodIterator id="getADUsersIter" Binds="getADUsers.result"
    DataControl="NpiAppModuleDataControl" RangeSize="10"
    BeanClass="java.util.ArrayList" />
    </executables>
    <bindings>
    <methodAction id="getADUsers" MethodName="getADUsers"
    RequiresUpdateModel="true" Action="999"
    IsViewObjectMethod="false"
    DataControl="NpiAppModuleDataControl"
    InstanceName="NpiAppModuleDataControl.dataProvider"
    ReturnName="NpiAppModuleDataControl.methodResults.NpiAppModuleDataControl_dataProvider_getADUsers_result">
    <NamedData NDName="loginPattern" NDType="java.lang.String"
    NDValue="${bindings.getADUsers_loginPattern}"/>
    <NamedData NDName="namePattern" NDType="java.lang.String"
    NDValue="${bindings.getADUsers_namePattern}"/>
    </methodAction>
    <attributeValues id="loginPattern" IterBinding="variables">
    <AttrNames>
    <Item Value="getADUsers_loginPattern"/>
    </AttrNames>
    </attributeValues>
    <attributeValues id="namePattern" IterBinding="variables">
    <AttrNames>
    <Item Value="getADUsers_namePattern"/>
    </AttrNames>
    </attributeValues>
    <table id="getADUsers1" IterBinding="getADUsersIter">
    <AttrNames>
    <Item Value="element"/>
    </AttrNames>
    </table>
    </bindings>
    and here is my method
    public ArrayList getADUsers(String loginPattern, String namePattern) {
    //load properties from file
    Properties props = new Properties();
    try {
    Common.loadProperties(props, PROPS_FILE);
    } catch (IOException e) {
    throw new RuntimeException(e);
    ArrayList users = new ArrayList();
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");
    env.put(Context.PROVIDER_URL, props.getProperty(PROVIDER_URL));
    env.put(Context.SECURITY_AUTHENTICATION, "simple");
    env.put(Context.SECURITY_PRINCIPAL, props.getProperty(SECURITY_PRINCIPAL));
    env.put(Context.SECURITY_CREDENTIALS, props.getProperty(SECURITY_CREDENTIALS));
    DirContext dctx = null;
    NamingEnumeration results = null;
    String filter = null;
    String login = null;
    String name = null;
    if (loginPattern != null && !loginPattern.equals(""))
    filter = "(&(objectCategory=person)(objectClass=user)(sAMAccountName="+loginPattern.replace('%', '*')+")";
    if (namePattern != null && !namePattern.equals(""))
    if (filter == null) {
    filter = "(&(objectCategory=person)(objectClass=user)(cn="+namePattern.replace('%', '*')+"))";
    } else {
    filter = filter+"(cn="+namePattern.replace('%', '*')+"))";
    } else {
    if (filter != null) {
    filter = filter +")";
    try {
    if (filter != null) {
    dctx = new InitialDirContext(env);
    SearchControls controls = new SearchControls();
    controls.setSearchScope(SearchControls.SUBTREE_SCOPE);
    results = dctx.search(props.getProperty(SEARCHBASE), filter, controls);
    while (results.hasMore()) {
    SearchResult searchResult = (SearchResult) results.next();
    Attributes attributes = searchResult.getAttributes();
    Attribute attr = attributes.get("cn");
    name = (String) attr.get();
    attr = attributes.get("sAMAccountName");
    login = (String) attr.get();
    users.add(new String[] {login, name});
    } catch (NamingException e) {
    throw new RuntimeException(e);
    } finally {
    if (results != null) {
    try {
    results.close();
    } catch (Exception e) {
    if (dctx != null) {
    try {
    dctx.close();
    } catch (Exception e) {
    return users;
    Thanks for your help.
    Edited by: user2159804 on Aug 2, 2011 10:53 AM

    If I remove the read only table and thus the methoditerator, the errors go away and I can see that my method is getting called with the parameters when the button is pushed.
    It looks like my problem is trying to display the results of the method. I tried to create a class to for the user with properties of login and name. And in changed the method to return List<ADUser>. Still same errors. And I changed the method to return null if both parameters were null. With this I can see that the method is getting called by the methoditerator when the page is first displayed and when the button is pushed with null parameters followed by the call from the ExecuteWithParams with the parameter.
    Thanks for the link, but since my problem isn't really the parameters but the displaying of the list of data, it didn't really help.

  • How do you download windows on to mac and get it setup?

    HELP ME!!!!!!!

    Windows on Intel Macs
    There are presently several alternatives for running Windows on Intel Macs.
         1. Install the Apple Boot Camp software.  Purchase Windows
             XP w/Service Pak2, Vista, or Windows 7.  For Boot Camp
             4.0 and above you can only use Windows 7 or later. Follow
             instructions in the Boot Camp documentation on
             installation of Boot Camp, creating Driver CD, and
             installing Windows.  Boot Camp enables you to boot the
             computer into OS X or Windows.
         2. Parallels Desktop for Mac and Windows XP, Vista Business,
             Vista Ultimate, or Windows 7.  Parallels is software
             virtualization that enables running Windows concurrently
             with OS X.
         3. VM Fusion and Windows XP, Vista Business, Vista Ultimate,
             or Windows 7.  VM Fusion is software virtualization that
             enables running Windows concurrently with OS X.
         4. CrossOver which enables running many Windows
             applications without having to install Windows.  The
             Windows applications can run concurrently with OS X.
         5. VirtualBox is an Open Source freeware virtual machine such
             as VM Fusion and Parallels that was developed by Solaris.
             It is not as fully developed for the Mac as Parallels and VM
             Fusion.
    Note that VirtualBox, Parallels, and VM Fusion can also run other operating systems such as Linux, Unix, OS/2, Solaris, etc.  There are performance differences between dual-boot systems and virtualization.  The latter tend to be a little slower (not much) and do not provide the video performance of the dual-boot system. See MacTech Labs- Virtualization Benchmarks, January 2013 | MacTech for comparisons of Boot Camp, Parallels, and VM Fusion. Benchmarks of all of the above except Crossover can be found in Benchmarking Parallels, Fusion, and VirtualBox Against Boot Camp - The Mac Observer. Boot Camp is only available with Leopard or later. Except for Crossover and a couple of similar alternatives like DarWine you must have a valid installer disc for Windows.
    You must also have an internal optical drive for installing Windows. Windows cannot be installed from an external optical drive.

  • HT1338 My software update tells me I'm not connected to the internet... if that's true how am I able to ask this question?... Can anyone tell me what's going on?

    I can't update my software because software update tells me I'm not connected to the internet... if that's true how am I able to ask this question?... Can anyone tell me what's going on and what I need to do to correct this?

    If you have a slow connection speed, update will not download.
    Are you using broadband and are you close to the modem?

  • HOW CAN I REMOVE "ASK" SEARCH BAR AND GET BACK FIREFOX SEARCH BAR?

    for last few dyas, when i click on firefox icon, i get the "ASK" search bar. i want to remove 'ASK' search bar, and get back firefox search bar

    If this is the Ask.com toolbar, you can remove it by following these instructions: '''[http://about.ask.com/apn/toolbar/docs/default/faq/en/ff/index.html#na4 How do I uninstall the Toolbar?]'''
    You may also be able to '''[[Uninstalling add-ons|disable or uninstall the add-on using the Firefox add-on manager]]'''.

  • Can someone plz confirm me that how i can change or update the security questions related to my apple id? as i have been never put them since i create my apple id but now due to some security reasons its asking me again and again the answers. i am unable

    can someone plz confirm me that how i can change or update the security questions related to my apple id? as i have been never put them since i create my apple id but now due to some security reasons its asking me again and again the answers. i am unable to go through the process. thanks.

    Some Solutions for Resetting Forgotten Security Questions: Apple Support Communities

  • Hello , how r u,  can i ask 1 question about xcode, i have mac os x 10.7.5 , n xcode version 4.6.3 i want build apps for ios 7.1 n mac os 1.9 ,, , but my macbook is old late 2008 macbook 4,1,  so can i develop apps for ios7 n 1.9 using xcode 4.6.3, bcz my

    hello , how r u,
    can i ask 1 question about xcode, i have mac os x 10.7.5 , n xcode version 4.6.3 i want build apps for ios 7.1 n mac os 1.9 ,, , but my macbook is old late 2008 macbook 4,1,  so can i develop apps for ios7 n 1.9 using xcode 4.6.3, bcz my machine cant upadte on 1.8 n 10.9,, ihave 2gb ram . core 2 duo pr, plz rely asap,
    thnxs

    Please type complete sentences and words.  This isn't an instant message program.
    https://developer.apple.com/support/ios/ios-dev-center.html

  • TS4009 How do you downgrade to the free option or get refund? After selecting free the done button can not be pressed.

    How do you downgrade to the free option or get refund? After selecting free the done button can not be pressed.

    Refund:
    If in the US, follow the link below (you must request a refund within 15 days) -
    https://discussions.apple.com/message/16968425#16968425
    it gives the USA phone number - if you don't live there you will have to find an equivalent number from the 'Contact Us' link at bottom right of this page.
    Keeping current plan, but downgrading when it ends:
    Settings>icloud>Storage & Backup>Change Storage Plan.  Look at downgrade options.  There you can choose the plan you want when the current one ends.

  • Hi, how are you? I have a question. I bought the ringtone "Dancing Queen" once but it charged me 7 times. How can I remove the 6 other purchases?

    Hi, how are you? I have a question. I bought the ringtone "Dancing Queen" once but it charged me 7 times. How can I remove the 6 other purchases?

    iTunes Store Support
    http://www.apple.com/emea/support/itunes/contact.html

  • HT1918 how do you change or reset security questions ??

    how do you change or reset security questions ?

    Welcome to the Apple Community.
    Start here (change country if necessary) and navigate to 'Password and Security', reset your security questions using the link provided, you will receive an email to your rescue address, use the link in the email and reset your security questions.
    If that doesn't help, you don't receive a reset email or you don't have a rescue address, you should contact AppleCare who will initially try to assist you with a reset email or if unsuccessful will pass you to the security team to reset your security questions for you.
    If you are in a region that doesn't have international telephone support try contacting Apple through iTunes Store Support.

  • HT5312 I follow the steps to the manage my account page, then I get to my security questions and it doesn't give the option to send an e-mail to my rescue address. Can anyone help?

    I follow the steps to the manage my account page, then I get to my security questions and it doesn't give the option to send an e-mail to my rescue address. Can anyone help?

    You need to ask Apple to reset your security questions; ways of contacting them include phoning AppleCare and asking for the Account Security team, clicking here and picking a method for your country, and filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (103693)

  • How do you take pictures from one library and put in another library??

    How do you take pictures from one library and put in another library??

    Options:
    1. Export from iPhoto A to the Finder, then import to iPhoto B
    This gets the photo over, but no versions, no edit history and not all the metadata
    2. Use iPhoto Library Manager
    This gets everything: versions, edit history and all the metadata.
    Regards
    TD

  • How can i change a forgotten security question and answer in my apple id ?, how can i change a forgotten security question and answer in my apple id ?

    how can i change a forgotten security question and answer in my apple id ?, how can i change a forgotten security question and answer in my apple id ?

    SECURITY QUESTIONS
    Read this note for information on how to reset the security questions http://support.apple.com/kb/HT5312
    This user tip may also help you http://discussions.apple.com/docs/DOC-4551

  • HT1229 How do you transfer photos to external backup and keep the photos in events with event name or with description name. Each time I have tried to transfer them they only transfer with a jpg number so you don't know what photos are what.

    How do you transfer photos to external backup and keep the photos in events with event name or with description name. Each time I have tried to transfer them they only transfer with a jpg number so you don't know what photos are what. When you have several thousand photos it is difficult to determined what is what.
    Why does iPhoto have the ability to put photos in events and to give them descriptions if it doesn't transfer this info with the photo. I want to back my photos up to an external drive.

    The simplest way to achieve what you want is to back up the iPhoto Library. That will get everything.
    You sem to be exporting from iPhoto to the Finder. The Finder does not have the same organisation capabilities as iPhoto. If you're going to do that you need to understand some of the differences between the two.
    Event Name will become  Folder Name.
    'Description Name' I guess is the Title you give the Photo
    Jpeg Number is the File Name assigned by your camera.
    So: File -> Export
    Set your Kind to Jpeg
    Select your preferred Quality
    Check the Boxes at 'Titles and Descriptions' and Location Information
    Under FIlename select 'Use Title'
    Click on Export. In the Next Window choose a New Folder as your export destination and then Name that as you prefer
    Regards
    TD

Maybe you are looking for