I just need to know what to do.

Adobe Premiere elements 12 won't load asks if I want it to make changes to computer I say yes it won't load.

caustby
I think that we have made a major breakthrough here.
First this is not a Premiere Elements 12 (video editing issue as first thought).
This is a Photoshop Elements 12 Elements Organizer 12 (photo editing issue).
From what you wrote, this program is on Windows 8 64 bit computer. Typically these programs need to be run as Run As Admininstrator or from a User Account with Administrative Privileges. Typical that permissions message pops up each time you open the program after you apply the Run As Administrator. Do you know if the User Account you are using now has Administrative Priviledges? We can talk about that more later. I do not want to distract you with User Account right now. For now, leave Run As Administrator with the Yes to the pop up when you open the program.
Right click the desktop icon for Photoshop Elements 12. Select Properties and go to the Compatibility Tab. Under the Compatibility Tab, remove any check mark next to Compatibility/"Run this program in compatibility mode for...". There is no reason to be running Photoshop Elements 12 in Windows 8 64 bit in the compatibility mode for Windows XP SP3.
Now back to the Elements Organizer 12 where you appear to have placed 470 photos as thumbnails. For now, leave them as is. Close out of Elements Organizer 12 and Photoshop Elements 12.
Then open Photoshop Elements 12 to the Full Editor. Will it do that? Determine Yes or No. And, then close the program.
Open Photoshop Elements 12 to the Elements Organizer 12. Select one of the photo thumbnails there. Then go down to the Editor Tab at the bottom of the Elements Organizer 12 interface. Click on the small vertical panel next to the name Editor to bring up the pop up with the choices of External Editor, Video Editor, Photo Editor. Select Photo Editor. Does the photo thumbnail that you selected in the Elements Organizer 12 now open in the Photoshop Elements 12 Full Editor?
Please stop at that point and let us know the results.
Thanks for your help. We will work this through.
ATR

Similar Messages

  • Need to know what form is attached to a responsibility

    Hi,
    There is a need to know what responsibility in Oracle has access to a given form. All seeded Oracle Reports that I am aware of (Function Security Function Report, Function Security Menu Report, Function Security Navigator Report) require a responsibility be inputted into a parameter in order to run. This is not a feasible option as we have hundreds of responsibilities and we would need to manually review each output for a specific function or form. Does a report or other SQL exist where I do not have to specify a responsibility?
    I have attempted different ways for a custom sql but the difficulty always lies in the exclusions because you need to look in every single menu that has been excluded whether or not a function is attached (need to look at all the submenus). This is difficult because you need to go down the entire menu tree of each excluded menu and I haven't been able to do this.
    Below is the closest I have got for an sql however I am getting 207 results which I know is not correct. I'm wondering if the query when looking at the menu exclusions is not looping at all the menus that are excluded for a given responsbility? Any ideas or suggestions would be greatly appreciated.
    Thanks,
    PJ
    SELECT b.responsibility_name FROM fnd_responsibility_vl b
    /*Get all menus assigned to a responsbility that has a
    specfic function_id based on a form and takes into account function exclusions*/
    WHERE EXISTS (SELECT 1 FROM
    apps.fnd_menu_entries_vl c WHERE c.function_id IN (SELECT DISTINCT FUNCTION_id FROM
    FND_FORM_FUNCTIONS_VL WHERE
    form_id = 10397)
    AND c.function_id NOT IN (SELECT action_id from
    fnd_resp_functions frf where frf.application_id = b.application_id
    AND frf.action_id IN (SELECT DISTINCT
    FUNCTION_id FROM FND_FORM_FUNCTIONS_VL WHERE form_id = 10397)
    and frf.rule_type='F' AND
    frf.responsibility_id = b.responsibility_id)
    START WITH c.menu_id = b.menu_id CONNECT BY PRIOR c.sub_menu_id = c.menu_id)
    /*Do not show any responsibiliy that has a menu in the
    excluded list against the responsbility that has the specified form/function*/
    AND b.end_date IS NULL
    AND NOT EXISTS ( SELECT 1 FROM
    apps.fnd_menu_entries_vl c,
    fnd_resp_functions frf
    WHERE frf.responsibility_id = b.responsibility_id
    and frf.application_id = b.application_id
    and c.menu_id = frf.action_id
    AND frf.rule_type ='M'
    AND c.function_id IN (SELECT DISTINCT FUNCTION_id FROM FND_FORM_FUNCTIONS_VL
    WHERE form_id = 10397)
    START WITH c.menu_id = frf.action_id
    CONNECT BY PRIOR c.sub_menu_id = c.menu_id)

    Hi Hussein,
    Thank you for the reply.
    For note "How to get information related to forms functions, menus and responsibilities for both 11i and R12 (Doc ID 953934.1)":
    The script for "How to retrieve list of responsibilities and associated menus" (SELECT RESPONSIBILITY_NAME, MENU_ID FROM FND_RESPONSIBILITY_VL;) isn't really giving that as it's just the one menu that is associated with that responsibility (and doesn't look at the menu exclusions).
    For note, "How To get List Of Functions Which Are Setup For A Responsibility? (Doc ID 549100.1)":
    I can already get a list of functions on a particular responsbility and even more so I know what menus use a particular function using the following sql:
    SELECT * FROM apps.fnd_menu_entries_vl c WHERE c.function_id IN (SELECT DISTINCT FUNCTION_id FROM FND_FORM_FUNCTIONS_VL WHERE form_id = <form_id>)
    This note does not help because you would need to do it by responsibility and I have hundreds of responsbilities I would need to search which is why the seeded reports I reference above do not work (you need to specify a responsibility at a time).
    I believe these are two links I need to look at to find what menus are associated and unassociated with a responsbility. In fnd_responsibility_vl, there is the main menu_id that says where this repsonsbility gets all of it's menus. This is where I look first in the first part of my query (b.menu_id is this link to the fnd_responsibility_vl table) :
    --Get all menus assigned to a responsbility that has a specfic function_id based on a form and takes into account function exclusions
    WHERE EXISTS (
    SELECT 1 FROM apps.fnd_menu_entries_vl c WHERE c.function_id IN (SELECT DISTINCT FUNCTION_id FROM
    FND_FORM_FUNCTIONS_VL WHERE form_id = 10397)
    AND c.function_id NOT IN (SELECT action_id from fnd_resp_functions frf where frf.application_id = b.application_id
    AND frf.action_id IN (SELECT DISTINCT FUNCTION_id FROM FND_FORM_FUNCTIONS_VL WHERE form_id = 10397)
    and frf.rule_type='F' AND frf.responsibility_id = b.responsibility_id)
    START WITH c.menu_id = b.menu_id
    CONNECT BY PRIOR c.sub_menu_id = c.menu_id)
    The next link is the "unassociated" link which is the menu exclusions. I'm looking at these exclusions similar to the part above however I don't think it's looking at all of the menus defined in the menu exlusions as my list of responsbilities is more then it should be:
    --Do not show any responsibiliy that has a menu in the excluded list against the responsbility that has the specified form/function
    AND NOT EXISTS (SELECT 1
    FROM apps.fnd_menu_entries_vl c,
    fnd_resp_functions frf
    WHERE frf.responsibility_id = b.responsibility_id
    and frf.application_id = b.application_id
    and c.menu_id = frf.action_id
    AND frf.rule_type = 'M'
    AND c.function_id IN (SELECT DISTINCT FUNCTION_id
    FROM FND_FORM_FUNCTIONS_VL
    WHERE form_id = 10397)
    START WITH c.menu_id = frf.action_id
    CONNECT BY PRIOR c.sub_menu_id = c.menu_id)
    It needs to be able to look at the menu trees of all of the defined menus that are excluded and find any menu that has that function as defined in the first sql of this post (if it is found in the exclusions then do not show it). However I do not think it is looping through all of the menus defined in the exclusions. Any guidance is greatly appreciated.
    Thanks,
    PJ

  • Can I set up a 2 (or 3) room audio system? I have iphone 3, iphone 4 and ipad 2 and need to know what hardware, if any, I need for this (airport express?, apple TV?) Also, would I use icloud or home sharing?

    I need to know what hardware, if any, I need to do this (airport express?, apple TV?)
    I simply want to send music from my itunes to 2 different rooms at the same time. Is it possible? I have iphone3, iphone4 and ipad2 if that helps.
    Also, would I use icloud or home sharing? Sorry for the noob question, any help is appreciated.
    Thanks!

    The answer is not if you use iTunes.
    The TC is NOT an iTunes server.. it is not a media device at all. It is a backup location for Time Machine.
    You need a computer in the network which stores the iTunes library and you can then play it via the ipad.
    A mini with a large USB drive plugged in will work fine.. it doesn't need to be new.. a couple of years old mini will work just as well.
    As an extention to this, can we use multiple Airport expresses plugged into mutiple sound systems to simultaneously access different music from the same time capsule?
    I am not sure.. there will be network limitations to this.
    Look up how to use itunes in a network.
    http://support.apple.com/kb/ht4620
    You would do better perhaps posting the question in iTunes section.. if as I guess you are actually using iTunes.

  • Hi, my name is Laith I'm from Iraq I just want to know what are the steps for buying a new iphone 5 from apple store and how to ship it to Iraq ???? and I would be grateful for you

    hi, my name is Laith I'm from Iraq I just want to know what are the steps for buying a new iphone 5 from apple store and how to ship it to Iraq ???? and I would be grateful for you

    Legality aside (I'm not a lawyer and have no opinion on the matter) in order to make a purchase of an iPhone 5 you would need to travel to a country where they are for sale and purchase it there. Be sure to get one that is officially unlocked or you would not be able to use it with your cell carrier. Be sure that your carrier supports use of the iPhone before you buy. Also note that the warranty of the iPhone is only valid in the country of purchase.
    Appe does not ship outside of the countries where it sells the phones.

  • I just want to know what Apple computer to get to play Civilization V down loaded from the App store.

    I just want to know what Apple computer to get to play Civilization V down loaded from the App store.
    The game Civ5 processes a turn in single core mode. It says “please wait” while it processes a turn. If the intel i7 CPU is “fourth generation” it is twice as fast for civ5 turn processing. It does not matter if you have more memory or a better graphics chip. So, I can get a smaller cheeper Apple computer as long as it is fourth generation. I tested three new iMacs, two new MacPros and two mac minis.
    See:
    http://apolyton.net/showthread.php/193302-Civ-5-Processor-performance-analyzis-a t-Gamespot
    I have looked at that darned “please wait” message for years. Now it can be 60 seconds on a new MacPro6,1 or late 2012 Mac mini and 30 seconds on a new iMac. Even the 21.5 iMac 3.1 GHz has 3.9 GHz turbo boost for single core and it is supposed to be fourth generation.
    Some of that does not seem to true for the new 21.5 inch iMac I just tested (Fusion drive). Mac Mini 54 seconds 21.5 iMac 49 seconds.
      Cliff Nelson

    Legality aside (I'm not a lawyer and have no opinion on the matter) in order to make a purchase of an iPhone 5 you would need to travel to a country where they are for sale and purchase it there. Be sure to get one that is officially unlocked or you would not be able to use it with your cell carrier. Be sure that your carrier supports use of the iPhone before you buy. Also note that the warranty of the iPhone is only valid in the country of purchase.
    Appe does not ship outside of the countries where it sells the phones.

  • HT5616 I just NEED to know (yes or no) if I buy an  "I-app" or "I-anything" (from the I-store) like the"I-cloud" will  I be able to access (it?) on my windows 7 computer? PLEASE and THANKYOU

        I just NEED to know (yes or no) if I buy an  "i-app" or "i-anything" (from the i-store) like the"i-cloud" will  I be able to access (i-it?) on my windows 7 64- bit computer? PLEASE and THANK YOU.............. z/;8?p ......... clueless and brand-new to the "i-world" ................tonniesb
      While I'm admitting my ignorance of the "i-world",  THE SAME QUESTION ABOVE  but on my windows 7-starter mini-computer? Thanks again .....t
    You smart young guys AND girls are not going to believe this next question! ! ! ! ! !
    I have never owned a smart-phone. O.K.?? So having the computer systems I mentioned above, what SMART-PHONE should I really get? I do want your opinion's for the very best route to go.... ty agian ...t     

    No. Apps from the iTunes Store only run on iDevices like iPhones or iPads. Applications from the Mac App Store only run on Macs.

  • I just need to know how you get an iTunes library off the original hard drive of a mac and onto an external hard drive and still have it work normally?

    I just need to know how you get an iTunes library off the original hard drive of an imac and onto an external hard drive and still have it work as it normally would?

    http://support.apple.com/kb/HT1449

  • Hi, just need to know how to get my music, video, pictures and apps form my iPhone to my new laptop as the old computer, which I used before was stolen. I only have my phone left and if I try to conect it to my new laptop it's trying to delete everything.

    Hi, just need to know how to get my music, video, pictures and apps form my iPhone to my new laptop as the old computer, which I used before was stolen. I only have my phone left and if I try to conect it to my new laptop it's trying to delete everything.

    I have also noticed all my settings won't stay set, example....I removed the check mark from "third party cookies", the when I close Firefox and reopen the check mark is back, also my tool bar has screwed up....can't reset, been having trouble the up grade.

  • On my iPhone when I go on phone to view my contacts on the top left corner there is a circle with a arrow ( like a refresh icon ), just want to know what is it?

    On my iPhone when I go on phone to view my contacts on the top left corner there is a circle with a arrow ( like a refresh icon ), just want to know what is it?

    That's exactly what it does, refresh your contacts. As an example if you add a contact on your Mac or iPad and you use iCloud to sync them altogether, then this can be used to refresh the contacts on your iPhone. 

  • I had purchased an audio book from itunes on my iPad and when I synced my iPad with my computer, my audiobook disappeared. I have already purchased this audiobook, so now I just need to know how to get it back because it is not on iPad anymore.

    I had purchased an audio book from itunes on my iPad and when I synced my iPad with my computer, my audiobook disappeared. I have already purchased this audiobook, so now I just need to know how to get it back because it is not on iPad anymore. I don't think the audiobook was backed up to icloud but I have the receipt to prove I purchased it. Is there anyway I can get it back?

    "If I purchase an audio book in iTunes on my iPad why can't I listen to it on my Mac? "
    You can.  Why do you think you cannot?
    If you purchased it on your ipad, then you would have to transfer it to your computer. File>Devices>Transfer Purchases.
    You can then listen to it on your computer.

  • HT203175 I tried to update my Itunes to the news version and now it will not open it says it was installed incorrectly I need to know what to do so I don't lose all my music

    I tried to update my Itunes to the news version and now it will not open it says it was installed incorrectly I need to know what to do so I don't lose all my music

    try with this one
    uninstall all the apple application S/w like Quicktime, Bonjour,
    apple Device Support, Apple Auto update, Itunes etc from your pc,
    Reboot it
    Now download a fresh itunes from apple and try installing
    Reboot it
    If you are having Problem in uninstalling any of the apple application
    try 'revo uninstaller' and uninstall all the apple applications
    mentioned above

  • Hi I just need to know how I can upload folders of photos to icloud and send a link to clients as in Mobile Me, I'm a professional photographer so it needs to be as good as the mobile me. I've been looking at alternatives but need to be able to send links

    Hi I just need to know how to upload folders of images to iCloud and send links to clients from my iphone when on location as was simple with MobileMe. I'm a professional photographer so it needs to be as easy as it was under Mobile Me. I've looked at several alternatives but they don't seem to give the same facilities of uploading folders from the Mac then sending the link from the iphone. It seems that the iCloud does n't offer this facility so any ideas would be appreciated.
    Thanks

    Welcome to the Apple community.
    If you are doing this from your phone (as you mention) then you can use the new iPhoto Photo Journal feature to do this.
    Unfortunately, iCloud does not offer equivalents to Mobile Me’s iDisk, Gallery or Web Hosting services. You will need to find a third party solution to replace these services. You might consider DropBox, SugarSync, MediaFire or any other service that offers online storage.

  • IPod is using voice over and won't scroll. What setting did my child click? It will allow me to use voice control, but i need to know what's wrong first so I can give the correct command.

    My daughter's iPod is using voice over and won't scroll. What setting did my child click? It will allow me to use voice control, but i need to know what's wrong first so I can give the correct command.

    VoiceOver is an Accessibility feature while Voice Control allows you to control the Music app via voice.
    To turn off VoiceOver triple click the Home button and go to Settings>General>Accessibility and turn it off. Use three fingers to scroll if necessary.
    iPhone: Configuring accessibility features (including VoiceOver and Zoom)
    iOS: Getting started with VoiceOver for accessibility

  • Hi. im ipad and ipohe user. now i want to buy my first macbook. i need to know what is better for me: macbook pro 13´´ or macbook air 13´´?? or another??

    hi. im ipad and ipohe user. now i want to buy my first macbook. i need to know what is better for me: macbook pro 13´´ or macbook air 13´´?? or another??
    i will not move it frecuently from home because i always have with me the iphone and sometimes the ipad.
    im looking apple store online because im trying to buy it refubrished (im from argentina and travel to NYC next month)...
    please i hear you...!

    Light weight basic needs, power miser - MacBook Air (glossy screens)
    Semi-light weight basic needs, more storage, DVD drive, hot machine (no 3D gaming) - 13" MacBook Pro (glossy screens)
    Bit heavier, pro needs, 3D gaming, cool machine, power hungry, - 15" MacBook Pro  (anti-glare screen option, recommended)
    Same as above, larger screen for HD video, cool machine,  power hungry, 17" MacBook Pro (anti-glare screen option, recommended)

  • I need to know what was this B-8GD564814752 2433R  Transaction bill to me ba pay pall yestrday?

    I need to know what was this B-8GD564814752 2433R  Transaction bill to me ba pay pall yestrday?

    that is why Iam questioning because I don't know you bill me throught pay pall? you don't put eny description of the objet! any way I did not make any transaction yesterday!!!!!

Maybe you are looking for

  • Down Payment Requests wf

    Hi all, I'm trying to understand which is the start event after a down payment request creation (F-47 or FBA6 tx). SWEL doesn't show anything and I don't know why. Can you help me? Thanks in advance. Kind regards, Angelo

  • Print only the external movie with its current applied settings?

    Hi, I'm making a flash application for a paint company to test various paints on different objects. But I got a little problem. Which is here... Here is my code.... /* Print Button Function Here.....*/ print_btn.addEventListener(MouseEvent.CLICK,prin

  • How to make niconfig.daq active?

    I have a system using Win 95, Run Time Engine 5.1.1, Ni-Daq 6.1, and an executable application which worked previously until the customer uninstalled everything.  Everything has been re-installed and all error messages eliminated.  No particular orde

  • Internal error in FW CS6 when changing fonts

    Has anyone else been plauged by an internal error when using fonts in FW CS6? Whenever I create some font and then go back to edit that font it won't let me, it gives me an internal error. I have tried deleting the following files > Fireworks CS6.mch

  • Ipad App update don´t switch from update to open

    my updates in the app store app of my ipad shows my to update my apps. when i want to update this, it opens and the update don´t run. when i update the app over the app store by searching the app and open it ,it updates !!! but in the app store app i