Mac app version of PSE 9 Editor

I bought the PSE 9 Editor for Mac a couple of years ago (while still in the workforce).  And, now that I am retired I am starting to use PSE 9 and using the great video tutorials available.  However, I noticed (during a recent tutorial) that the "Organizer" icon (tab) was not available above the Edit, Create, Share tabs.  I have tried everything, but I still can't find it.  Help!!!

As an user of PSE9 myself, i can testify that since the mavericks update the organizer is broken, so maybe that's why it's not bundled anymore.
I.m actually evaluating Elements 12 and the organizer work fime, even found back the "export" feature that was missing on EO9 mac version but present in the windows version.
So i think i will upgrade before then end of my trial period.

Similar Messages

  • SendAndLoad fails in mac .app version - possible security setting problem?

    Hi all,
    I'm having trouble with sendAndLoad working on the .app version of a flash application I made. So far it's only happening on one computer, so it appears to be some sort of security setting.  Here's what's going on:
    I've built a flash application (Flash 9, AS2) that has three versions: an online version, a standalone  .exe version for PC, and a standalone .app version for mac. The user must log in to use the application. Online, this is handled by the portal hosting the flash. In the standalone versions, the user must login through the flash application. Through sendAndLoad, it accesses the same database of user info as the online version. The user just enters username/password, clicks "Submit," and if it finds the combination in the database, it lets the user in. If not, it gives them a message saying they entered the wrong username/password.
    This has tested fine across macs and pcs, but sadly one macbook can't use the .app version. It launches, they put in valid username/password, hit submit and it freezes. All I can tell is that it gets the httpStatus number 0. As you can see below, I've got it set up to spit out an error message if it fails to load (login_lv.onLoad = function(success)), but it doesn't even do that.
    I've put a crossdomain.xml file at the root level of the domain that's set to allow access from any domain.
    This computer can log in successfully to the online version of the course, but the .app version seems to be hampered by some sort of security setting. The problem computer's settings match the settings of a mac I've tested successfully. It has up-to-date Flash 10 and is running Leopard. Here are security settings:
    System Preferences>Security
         General
              Everything is unchecked
         FileVault
              Turned off
         Firewall
              "Allow all incoming connections" is selected
    I'd appreciate any ideas anyone has. I'm far from wise about the ins-and-outs of mac security, so I may be missing something. I'm happy to clarify anything.
    Code is below. It loads login_lv first, then bookmark_lv. It never gets far enough to load bookmark_lv. The severAppUrl is set to a placeholder for confidentiality's sake. The path is defintely right. It works on other computers.
    Thanks!
    Mike
    // create a LoadVars instance
    var login_lv:LoadVars = new LoadVars();
    // add the login variables to pass to the server
    login_lv.userid = "";
    login_lv.pwd = "";
    login_lv.modname = "a";
    // setup login urls
    var serverAppUrl = "http://myurlhere"; //this is just a placeholder. good ol' confidentiality agreements...
    var loginUrl = serverAppUrl+"login.asp";
    // setup bookmark urls
    var bookmarkUrl = serverAppUrl+"menu.asp";
    var bookmark_lv:LoadVars = new LoadVars();
    // add the bookmark variables to pass to the server
    bookmark_lv.studentid = "";
    bookmark_lv.isAdmin = "";
    bookmark_lv.modname = "A";
    _global.modnameTemp = bookmark_lv.modname;
    // setup login function
    function doLogin() {
    login_lv.userid = login_mc.user_txt.value;
    login_lv.pwd = login_mc.pwd_txt.value;
    login_lv.sendAndLoad(loginUrl,login_lv,"GET");
    // send the login info
    login_mc.continueBtn_mc.onRelease = function() {
    this.enabled = false;
    doLogin();
    // variables will appear in the login_lv object
    login_lv.onLoad = function(success) {
    if (success) {
    if (this.studentid == undefined) {
    login_mc._x = 0;
    trace("not logged in");
    debug_mc.body_txt.text+="\nnot logged in";
    if(this.reas == "Please Complete Overview and first 3 Module(s) with at least 70 score."){
    login_mc.loginBad_mc.gotoAndStop("r2");
    login_mc.loginBad_mc._visible = true;
    } else if(this.reas == "Please Complete Overview Module first."){
    login_mc.loginBad_mc.gotoAndStop("r3");
    login_mc.loginBad_mc._visible = true;
    } else {
    login_mc.loginBad_mc._visible = true;
    } else {
    login_mc._x = 800;
    trace("now logged in");
    debug_mc.body_txt.text+="\nnow logged in";
    trace("studentid: "+this.studentid);
    trace("isAdmin: "+this.isAdmin);
    //track variables for later use
    _global.studentidTemp = this.studentid;
    _global.isAdminTemp = this.isAdmin;
    bookmark_lv.studentid = ""+this.studentid+"";
    bookmark_lv.isAdmin = ""+this.isAdmin+"";
    bookmark_lv.sendAndLoad(bookmarkUrl,bookmark_lv,"GET");
    }else{
    debug_mc.body_txt+="\nlogin load error"
    login_lv.onHTTPStatus = function(httpStatus:Number) {
        this.httpStatus = httpStatus;
        if(httpStatus < 100) {
            this.httpStatusType = "flashError";
        else if(httpStatus < 200) {
            this.httpStatusType = "informational";
        else if(httpStatus < 300) {
            this.httpStatusType = "successful";
        else if(httpStatus < 400) {
            this.httpStatusType = "redirection";
        else if(httpStatus < 500) {
            this.httpStatusType = "clientError";
        else if(httpStatus < 600) {
            this.httpStatusType = "serverError";
    debug_mc.body_txt.text+="\n login_lv HTTPStatus number="+httpStatus+" HTTPStatus type="+this.httpStatusType;
    //prepare bookmarkXML to receive returned info from bookmark_lv function
    var bookmarkXML = new XML();
    bookmarkXML.ignoreWhite = true;
    bookmarkXML.onLoad = bookmark_lv;
    // variables will appear in the bookmark_lv object
    bookmark_lv.onLoad = function(success) {
    if (success) {
    trace("bookmarked");
    debug_mc.body_txt.text+="\nbookmarked";
    trace("bookmarkXML: "+bookmarkXML);
    var bookmarkNode = mx.xpath.XPathAPI.selectNodeList(this.firstChild, "/bookmark");
    trace("bookmarkNode: "+bookmarkNode);
    var bookmarker:String = unescape(eval("bookmark_lv"));
    trace("bookmarker: "+bookmarker);
    bookmarker = bookmarker.split("<xml>").join("");
    bookmarker = bookmarker.split("<bookmark").join("");
    bookmarker = bookmarker.split("/bookmark>").join("");
    bookmarker = bookmarker.split("</xml>").join("");
    var startIndex:Number;
    var endIndex:Number;
    startIndex = bookmarker.indexOf(">");
    trace(startIndex);
    endIndex = bookmarker.indexOf("<");
    trace(endIndex);
    var bookFinally:String;
    bookFinally = bookmarker.substr(startIndex+1, endIndex-2);
    bookFinally = bookFinally.split("<").join("");
    setBookmarkStr = ""+bookFinally+"";
    trace("string: "+setBookmarkStr);
    _global.newBookmark = bookFinally;
    play();
    }else{
    debug_mc.body_txt+="\nbookmark load error"
    bookmark_lv.onHTTPStatus = function(httpStatus:Number) {
        this.httpStatus = httpStatus;
        if(httpStatus < 100) {
            this.httpStatusType = "flashError";
        else if(httpStatus < 200) {
            this.httpStatusType = "informational";
        else if(httpStatus < 300) {
            this.httpStatusType = "successful";
        else if(httpStatus < 400) {
            this.httpStatusType = "redirection";
        else if(httpStatus < 500) {
            this.httpStatusType = "clientError";
        else if(httpStatus < 600) {
            this.httpStatusType = "serverError";
    debug_mc.body_txt.text+="\n bookmark_lv HTTPStatus number="+httpStatus+" HTTPStatus type="+this.httpStatusType;

    try using different loadvars instances for your send loadvars and for your receive loadvars.

  • Logic Pro Mac App version

    Is the sounds library the same in the download version from Mac App Store that the discontinued box version?
    Thanks in advance!

    Hi
    Yes, except that the Apple Loops are lossy-compressed (no big deal generally).
    You do need to download *all* the content.
    CCT

  • Mac-App release build error-rectify this Problem

    i generate release build from air file to mac version,i attach valid p12certificate releated to mac version,but i get this error,how do i rectify this problem or how to export air file to mac App Version.

    I'm currently hitting the same problem. I first noticed an issue when I would make a minor change. I'd first test on the AIR simulator to verify that the change works. Then when I export for release, I noticed that the change was not reflected in my iOS build on the device. I deleted the bin-release-temp directory, and then started to receive the error. I've occaissionally been able to get a swf to generate, but it's been sporadic at best and I haven't been able to reproduce the swf generation in reliably. I'm currently running on OSX 10.8.2 with Flash Builder 4.7 Premium (from the creative clould). I've updated to AIR 3.5 from the gaming suite. Any thoughts?
    Thanks very much for any help that can be given.
    Josh

  • IPhoto 8 to Mac App Store iPhoto 11

    Can I upgrade to the Mac App version of iPhoto 11 from iPhoto 8? Are there any issues I need to be aware of?

    I've just updated iPhoto from 08 to 11 on my mac and it works perfectly fine. I still have 08 versions of all the other iLife apps installed.
    It was mentioned earlier that it would be good practise to run software update after installing iPhoto but when I installed it from the app store and ran the update, it was already up to date. Is it possible that the download from the app store will be the most recent version or have I just missed this happening via software update somehow?

  • Downloaded adobe photoshop elements 10 editor from Mac app store onto my mac book pro, set i photo preferences to APE 10 Editor, but can not open any files from my library, error saying " program error". What else do I need to do?

    Have downloaded Adobe Photoshop Elements 10 Editor from the Mac App Store onto my Mac Book Pro, set i photo preferences to Adobe PSE 10 editor, but when I try to open a file from my photo library, the following message appears: "could not complete your request because of a program error". What can I do to resolve this issue?

    Hi..
    Post your topic in the iPhoto community here. That way you can get feedback from iPhoto users.
    This community is primairly for issues with the App Store.

  • Purchasing PSE11 Editor on the Mac App Store

    Hi everyone,
    I just saw that PSE11 isn't available on the Mac App Store. As the PSE10 Editor is available for a while, I hope that PSE11 Editor will be released shortly on this store...
    Do you have any information about an availability date on the Mac App Store ?
    Thanks,
    Arnaud.

    Hi,
    Adobe Photoshop Elements Editor is now available on Mac App Store to download. It is Editor only and does not have Organizer similar to PSE 10 Editor on Mac App Store.
    Some key points are here - http://blogs.adobe.com/pselements/adobe-photoshop-elements-11-editor-available-on-mac-app- store/
    Thanks,
    Garry

  • Is there somewhere I can access Elements 9 Editor from Mac App Store?

    I need a copy of Elements 9 Editor from the Mac App Store to do some product testing. I know it is discontinued old version however it must be possible to access it somewhere/somehow? I am happy to purchase if I can find it!!
    Thanks

    I am not aware of anywhere that you can still purchase Elements 9. It's too old.
    You can download a trial version from
    http://prodesigntools.com/photoshop-elements-9-premiere-elements-9-direct-download-links.h tml
    However you'll only be able to use it for 30 days since you do not have a serial number and there's no way of buying one that I know of.

  • Tried to open a file I created in Numbers a while ago which I modified on 11/4/13 and got a message that I needed a newer version of Numbers.  When I went to the Mac App Store it shows that the new version is already installed.  Any suggestions?

    Tried to open a file I created in Numbers a while ago, which I modified on 11/4/13, and got a message that I needed a newer version of Numbers.  When I went to the Mac App Store it shows that the new version is already installed and there doesn't seem to be a way to reinstall it.  When I checked "About Numbers" on my MacBook it shows "Numbers '09 version 2.3".  Any suggestions as to how I can get the new version installed?

    Are you launching Pages from an icon in your Dock? Installing the update does not change the Dock icons & it does not remove the older versions. Go to your Applications folder & launch the new Pages from there.

  • I am trying to get a document from my cloud and on my Mac it says I need an updated version of numbers but when I go to mac app stores it does not allow me to download the new version which I use on my ipad?

    I am trying to access a numbers document in mycloud and it keeps saying I need a newer version. I purchased the upgraded app for my ipad and now I can't seem to upgrade my computer so that I can get access. I went to the app store but it won't let me download the newer version onto my computer? What is the point of putting things in the cloud if I can't access them?
    Jan

    Numbers documents from iOS need Numbers 3.2 on a Mac to open. And Numbers 3.2 requires Mavericks. If you are using Mavericks you can get Numbers 3.2 from the Mac App Store. It will be free IF you have Numbers 2 (iWork '09) installed. Otherwise you must buy it.
    Your other option is to send the Numbers file as an Excel file via e-mail to yourself to open with an earlier version of Numbers.

  • Hi there, our mac has an IOS version 10.5.8 and i need to update it to 10.6.8 in order to update our itunes account....when i start softwear update it tells me that nothing needs to be updated and i also do not have access to the mac app store...How can i

    Hi there, our mac has an IOS version 10.5.8 and i need to update it to 10.6.8 in order to update our itunes account....when i start softwear update it tells me that nothing needs to be updated and i also do not have access to the mac app store...How can i update my ios? thanks Matthijs

    Get more information about your computer. Go to the Apple in the upper left corner of any window, then  "About This Mac".  Write down what it says about "version"and report that here.  Now continue to "More Info..."  Copy and paste the information here, but omit the serial number and Hardware UUID (if present).
    If you have a PPC Mac you cannot sync your idevice without a newer computer.  See the end of this post for options.
    If it says you have an Intel Mac you can upgrade to Snow Leopard, but check system requirements first:
    Snow Leopard 10.6 Technical Requirements - http://support.apple.com/kb/SP575
    You can buy Snow Leopard at:
    Snow Leopard disc source - http://store.apple.com/us/product/MC573Z/A/mac-os-x-106-snow-leopard
    After installing run the updater to 10.6.8, then upgrade iTunes.
    Jan. 2014 post by Kappy on doing all this: https://discussions.apple.com/message/24599931
    Options if you cannot upgrade:  iTunes Store purchases can already be downloaded directly. Use iTunes Match to put non-Store music in iCloud, then download to your device from there.  Backup your device directly to  iCloud over a wireless connection.  Photos can be downloaded from the Camera Roll using iPhoto or Image Capture.

  • How do I install camera raw updates to the mac app store version of elements 10

    In the mac app store version of Elements 10 there is 'get updates' link on the help menu. And when I try to do it manually from a download I get a message telling me that 'this update no applicable'.

    Once again,  Apple only provides support for purchasing issues,not with using software purchased via the app store, any more than staples will give you tech support for a boxed version you buy from them:
    The Mac App Store handles the download, installation, licensing, and updating of all products purchased through it. If you encounter an issue with an Adobe product during one of these four processes, visit http://www.apple.com/support.
    For all other issues, including program errors and how to questions, visithttp://www.adobe.com/support.
    Apple only provides support for problems with updates released via the app store and adobe has NEVER bothered to issue updates anything offered through the app store, so you can't get any help from apple for this.
    It's more complicated to install ACR in the app store version. You have to do it manually. See this thread:
    http://forums.adobe.com/message/4106477

  • Why does a document tell me it needs to be opened in newer version of Pages yet when I check the Mac App store I already have it upgraded

    I can't seem to open Pages documents and am told "You need a newer version of Pages to open this document" however, I have checked for upgrades in Mac App store and am told all apps are up to date.   When I open Pages and check "about Pages" it says I have 4.3.  What gives?

    It sounds like you already have 2 versions of Pages on your Mac.
    Pages 5 is in your Applications folder.
    Pages '09/'08 is in your Applications/iWork folder.
    You are alternately opening the wrong versions.
    Pages '09/'08 can not open Pages 5 files and you will get the warning that you need a newer version.
    Pages 5 can open Pages '09 files but may damage/alter them. It can not open Pages '08 files at all.
    Once opened and saved in Pages 5 the Pages '09 files can not be opened in Pages '09.
    Anything that is saved to iCloud is also converted to Pages 5 files.
    All Pages files no matter what version and incompatibility have the same extension .pages.
    Pages 5 files are now only compatible with themselves on a very restricted set of hardware, software and Operating Systems and will not transfer correctly on any other server software than iCloud.
    Note: Apple has removed over 100 features from Pages 5 and added many bugs:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Archive/trash Pages 5, after exporting all Pages 5 files to Pages '09 or Word .docx, and rate/review it in the App Store, then get back to work.
    Peter

  • I can't find older emails in my Yahoo account or iPhone app BUT I am able to see them on my Mac Mail version of email. sent emails are OK.

    ... for the past few months i have noticed that emails in my inbox Yahoo mail account older than a few weeks keep disappearing. i cannot find them in my Yahoo account or iPhone app BUT i can see them on my Mac Mail version of email. Emails that i have stored into folders in my yahoo account are still there... same with my sent emails... it's just the Inbox emails.. strange, very strange. I don't know how to 'move' the emails from my Mac Mail  back to my Yahoo account.

    Please read and begin using Can receive email, but not send email. I had a similar issue with Comcast mail (could receive by not send) and found my answer in this letter. For me it took resetting the outgoing mail and telling the system to use a password when sending outgoing mail. If you need help with that please advise and I'll tell you where to look. 

  • Mac App Store version and ASL files

    Hello
    Some days ago I updated my Photoshop Elements for Mac to Version 11 (Mac App Store version).
    Accidentally I noticed mysterious activity though Photoshop Elements wasn't running.
    For example these files have been created or modified /private/var/log/...:
    What pupose have these .asl files and ativities?
    Many thanks.
    Message title was edited by: Brett N

    2 days later - checked it again:
    Files (size):
    file://localhost/private/var/log/DiagnosticMessages/2013.04.22.asl (6.1 M)
    file://localhost/private/var/log/asl/2013.04.22.U501.asl (13.3 K)
    file://localhost/private/var/log/performance/2013.04.22.asl (121 K)
    file://localhost/private/var/log/asl/2013.04.22.U0.G80.asl (203 K)
    file://localhost/private/var/log/asl/2013.04.22.G80.asl (179 K)
    ... in the last 15 minutes though Photoshop Elements isn't running.
    What happens hefre? Has anyone any idea how to stop this?
    Many thanks!!

Maybe you are looking for

  • Black screen between every clip that does not appear on timeline, only on MOV file

    Hello I originially had this issue  https://discussions.apple.com/message/17086997#17086997 I have now fixed the letterboxing issue but now have this problem (I did not have this issue before) where I get a very short black screen between each clip I

  • Tansferring Library from PC to laptop

    I just bought a Dell Laptop and want to transfer my iTunes library from my current Dell PC to my new laptop. Does anyone know how to do that? Do I copy onto a disk? Zip drive? Please inform if you know. Thanks!

  • Add a MS Word/Excel document to a Calender Event.

    How do I add a MS Word/Excel document file to a Calendar Event so that it can be saved in the Calendar Event? In MS Outlook you just either copy or add the file to the Event and save.

  • Images retouched in Photoshop are missing from Aperture browser

    Hi! I'm new here! I'm panicked because: my hard drive died (power outage), I replaced the hard drive, I restored my Time Machine backup, and it did not restore all my images; in each of the 5 most recent project folders, the only images missing are t

  • Error 126 openning Adobe Photoshop Album Starter

    Hi everyone: I just installed APAS 3.2 in Windows Vista Ultimate. The installation goes just fine, when i try to open the program (APAS) an error comes up. Error 126 cann't open the catalog file, the program suggest me to create another catalog file,