Bookmark Open File Action not working on MAC OSX

We are getting the following error when trying to open different files that start find in Finder:
could not find an application to open the file 'xxxxx'
We tried a simple MAC OS Application.app file, a terminal app script and in both cases we get the above error.  These same files start up without issue on a click in Finder.
The Open File action "DOES" work on an Microsoft Office File... but does not work for a Mac Application.App file or a AppleScript script file.
Can anyone share how to get Open File to work with some type of script file or application file on the MAC OS with Adobe Reader 11 ?

We ended up having to create an App on the MAC OS with an "associated" file type and then use the Bookmark Open File Action on files of that type.  This followed what worked for opening Office files on the MAC from the Bookmark Open File Action.
My question was ... on Windows we could use the Bookmark Open File Action to open up "applications" or "bat scripts" directly... but this does not appear to be supported on the MAC.  We could not "start" an app or a script directly from the Bookmark Open File Action.  We had to set the action to open a file and then handle that file in the associated application we created for that filetype on the MAC.
Thank you for your question,
James

Similar Messages

  • File upload not working on Mac OSX

    I've tried several of the Flex file upload components, in all
    cases they don't work correctly when used on a Mac. I've tested
    both flash player 9 and the latest 10 release. The file uploads to
    the server, but the progress bar doesn't update and the upload
    complete event never fires. To the end user, it looks like the app
    isn't doing anything at all!
    Any advice on how to get this working? If you know of any
    file upload components that are already tested and working on the
    Mac version of flash - that would be a great help as well!
    Thanks!

    If you Google it you will find that this is a known issue, it surprised me since I spent days looking at my code.
    I found possible solutions here, but none worked for me it seems that it worked for many other people.
    http://www.abdulqabiz.com/blog/archives/2006/06/09/workaround-filereference-oncomplete-is- not-fired-on-mac-os/
    Hope Mac and Adobe will have lunch one day and figure it out.
    Ben

  • Android File Transfer not working with MAC OSX 10.9.5

    I have a Kurio Extreme for my child, and I have downloaded and used Android File Transfer in the past. Recently two things have changed. My OS, and the Kurio tablet. I attempted to use it today, and the device is not recognized.
    I reached out to the Kurio Helpdesk and they state that the issue is either with the OS software or AFT. I have removed AFT, rebooted the computer, downloaded it again, all to no avail.
    Any ideas on how to fix this issue?

    This problem could arise if you have installed Kies. What it does is, it installs drivers which is not compatible with android file transfer app.
    Now the solution for this problem is properly uninstall kids from your mac, to do this follow the steps:
    1. Check the security and privacy settings in your system preference whether the settings for "Allow apps download from" to "Anywhere" (to set this first click the lock button on the left of your screen by entering your password, this will enable the option to be changed)
    2. After you are done with the first step open the kies installation file (file that is used to install kies, if you have deleted the file, download it again) open the file there you will find an option "uninstall". Click and follow the instruction.
    3. When you have successfully deleted the app, restart your mac.
    4. Install Android file transfer app if you haven't done it yet.
    5. Connect your android device
    6. BANG! It will work just fine. Hope it helps!!

  • Why are the adjustment layers in my actions not working? (mac osx)

    I've just 'upgraded' to CC, and noticed that actions that alter Curves or levels adjustment layers do not play back correctly.
    The Action itself contains the right steps but nothing happens to the adjustment or the image. I use this a lot for my work and I really need some help
    I have a mac 10.7

    Are these actions you recorded in a previous version of photoshop?
    Did you try recording the action(s) in photoshop cc?
    Have you installed the 14.1.1 update for photoshop cc?
    Does it make any difference if you disable the Generator plugin under Photoshop>Preferences>Plug-Ins>Enable Generator?

  • FlashPlayer 9.0.28 not working on MAC OSX

    Downloaded FP 9.0.28.0 to Power PC Mac running OSX 10.4.8.
    Now instead of the displays and frames I get merely a QuickTime
    logo displayed with a question mark "?" in the center. Popup
    blocker is disabled. The download center claims that Safari and
    Firefox are supported, which are the browsers I use. I followed
    directions. What's going on?
    As far as I can tell, there's no way to reach Adobe by any
    electronics means and their FAQ does not seem to address this
    issue.

    We ended up having to create an App on the MAC OS with an "associated" file type and then use the Bookmark Open File Action on files of that type.  This followed what worked for opening Office files on the MAC from the Bookmark Open File Action.
    My question was ... on Windows we could use the Bookmark Open File Action to open up "applications" or "bat scripts" directly... but this does not appear to be supported on the MAC.  We could not "start" an app or a script directly from the Bookmark Open File Action.  We had to set the action to open a file and then handle that file in the associated application we created for that filetype on the MAC.
    Thank you for your question,
    James

  • Lost ical and the ical 1.5.5 is not working with mac osx 10.5 ?

    lost ical, would like to download it, as in the installation disk, I'vent the possibility to do it . The problem is that the ical 1.5.5 is not working with mac osx 10.5 ?

    biomecasport,
    Welcome to Apple Discussions.
    1. Insert the Leopard Installation disk into the computer.
    2. The disk will appear on the desktop.
    3. Double click on the "Optional Installs" folder.
    4. Double click on the "Optional Installs.mpkg."
    5. Click on (Continue) in Introduction.
    6. Click on (Continue) in Software License Agreement.
    7. Click on (Agree) to agree to the terms of the software license agreement.
    8. Click on the disclosure arrow ▶ next to Applications.
    9. Select (✓) iCal.
    10. Click (Continue).
    11. After iCal has been reinstalled, download and install the Mac OS X 10.5.8 Combo Update to bring iCal up to the most recent version.

  • New File() is not working on MAC

    Hi,
    I don't know exactly what is the problem,since i search in forums.
    but in my code
    File f = new File("/Users/sky/Desktop/dist/test.txt");
    is not working on Mac os.
    Please help !

    skymania wrote:
    On window it will give output : success
    On Mac it will give nothing.
    On window and mac both file is not exist (physically). Bull.
    Simply doing new File(...) does NOT create a file on disk, no matter what the OS.
    On Windows, before running the Java code:
    C:\>dir C:\CONFIG.SYS
    02/05/2008  01:06 PM                 0 CONFIG.SYS
    C:\>dir C:\zzzzz
    File Not FoundThen I run this Java:
    package scratch;
    import java.io.File;
    * Copyright (c) 2009 Tone Software Corporation
    * @author Jeff Verdegan
    public class NewFileDoesNotCreateAFileOnDisk {
      public static void main (String[] args) throws Exception{
        File f1 = new File("C:/CONFIG.SYS");
        File f2 = new File("C:/zzzzz");
        System.out.println(f1.getCanonicalPath () + ".exists() is " + f1.exists ());
        System.out.println(f2.getCanonicalPath () + ".exists() is " + f2.exists ());
    }and I get this result:
    C:\CONFIG.SYS.exists() is true
    C:\zzzzz.exists() is falseAnd then I do the dir again, and I get the same results.
    Thus proving that new File does NOT create a file on the disk.
    If you would bother to read the docs for the File class like I suggested, you'll see a way that you can create a file on disk.
    And if you read my other comments, you'll see how to create a file as you write to it.

  • Open URL or File Action not working (Captivate 7)

    I have written dozens of training courses using Captivate that employ buttons to open PDF documents (supporting documentation). I am currently coding smart shapes as buttons, specifying the Open URL or File action, or by executing an advanced action to do the same. The documents are found in a subfolder (documents), so the URL/File target is: \documents\<file name>. Same syntax that I have used for several years. However, once published using Captivate 7, these buttons no longer work. I have exhausted my methods for opening files without success. Any ideas?
    BTW, I am publishing as .exe, so the SWF security snafu should not be the issue.
    Thanks
    Jack L

    The issue has been fixed in the patch released in November. The latest version is 7.0.1.237.
    http://helpx.adobe.com/captivate/kb/captivate-7-patch.html
    I guess you need to publish your file again after you apply the patch and test it once to ensure everything works fine.
    Sreekanth

  • Acrobat XI Actions not working with Mac Yosemite?

    We are witnessing an apparent bug with Acrobat XI and Yosemite when creating or importing Actions; specifically they do not appear in the Actions panel!
    All latest updates (as of Nov. 6, 2014) have been installed; can anyone else kindly confirm this bug please?
    Respectfully,
    Bill Carberry
    [self-promo signature info removed by moderator]

    I try to reproduce your action issue in Mac Yosemite, but I can’t reproduce your issue in our end.
    I try the problem in Acrobat 11.0.10 in Mac Yosemite version i 14A_389.
    I need the following information:
    1. Can you send me your action sequence file? How do you create this sequence file, does it work before?
    2. What is your Mac Yosemite version, my Mac Yosemite version is 14A_389, you can find this from “About This Mac” menu.
    3. What is your Acrobat version, 11.x or 10.x, you can find this from “Acrobat/About Acrobat” menu
    Thanks for finding the bug for us.
    Steven;(Acrobat QE)

  • Open file command not working... suggestions?

    Running InDesign CS6 on Mac OSX 10.8.5. When I go to open a file from InDesign, I can use Command-Arrow Up and Command-Arrow Down to navigate up and down through folders, but then when I select the file I wish to open, another Command-Down Arrow does NOT open the file. Command-O works, but that's not the issue.
    Command-Down Arrow DOES open files in Photoshop, Illustrator, and from the finder (even InDesign documents). Command-Down Arrow DOES open files in InDesign at work, where I'm running both CS3 and CS5 on a slightly older iMac.
    InDesign's keyboard shortcuts clearly show that both Command-O and Command-Down Arrow are set as "Open file" key shortcuts.
    I've trashed my prefs and restarted.
    At my wits end, because Google has revealed that the internet has never heard of this problem. Anyone have any ideas?

    I'll definitely ask at a Mac forum as well, though the Command-down arrow does work as it should in the Finder (as well as other apps, internet, adobe, etc) and it does work properly in InDesign except for that last "Open file" command. Apple lists "Command-Down" as being the keyboard shortcut for "Open highlighted file" so I'm wondering if there is some sort of conflict at play here, though I can't find one.
    This morning, I checked on my wife's computer, and it's reproduceable. Command-Down works except for opening a file from inside of InDesign (or placing a file). She's running CS6, on Mavericks (not sure what exact version).
    So I'm lead to believe this is inherent to only InDesign, and only CS6. Can anyone else reproduce this? (Perhaps it's simply an existing issue with CS6.) If it's simply how InDesign CS6 behaves and everyone has the same result, I could live with that; after all, Enter and Command-O will still work. I'm just trying to isolate the cause, be it InDesign or OSX. If I CAN fix it, I would love to, because I use that shortcut all day long at work and while it does only save a fraction of a second, it does add up over the week, not to mention muscle memory confuses the heck out of me when I get home and suddenly files stop opening for me.
    It's like losing a pencil... insignificant and easily worked around, but I hate not knowing. Whether it be where my missing pencil is or why a key shortcut behaves strangely. Thanks!

  • File.lastModified() not working in MAC OS

    Hi all,
    Iam trying to get the lastmodified time of a file using this
            File newFile=new File(uploadFilePath); //uploadFilePath has the path of the file.
            String newFile_Name=newFile.getName();
            long lastmodified=newFile.lastModified(); The above is working in windows but not in MAC. in MAC i get the lastmodified time as 0. I
    s there anyother functionality to get this in MAC. or is it the problem with the path?.
    For eg. the uploadFilePath in PC will be like this
    C:\Documents and Settings\Tanuja\Desktop\File\file_management.txt
    where as in MAC file path of a selected file will be like this.
    /Users/Tanuja/Desktop/file_management.txt
    is this path makes difference or iam i going wrong somewhere?
    could not figure out.
    Thanks,
    Thanuja.

    I found where the problem is. Using the file chooser i selected a file and got the file path and my code deals witht the path as below:
    String uploadFilePath=/Users/Tanuja/Desktop/file_management.txt
    File newFile1=new File(uploadFilePath);
    //Check  whether file exists or not
    if(newFile1.exists()==true)
                out.println("exists");
            else
                out.println("does not exists");
    Result: does not exists
    So i tried by passing the absolute path but all in vain. I get the same result.
    Absolute path: C:\Users\Tanuja\Desktop\file_management.txt
    String uploadFilePath=/Users/Tanuja/Desktop/file_management.txt
    File newFile1=new File(uploadFilePath);
    String abslolutePath=newFile1.getAbsolutePath();
    File newFile=new File(abslolutePath);
    if(newFile.exists()==true)
                out.println("exists");
            else
                out.println("does not exists"); why its not detecting the file though the file path it returned is correct?.
    since it is not detecting the file i got the lastmodified as 0.
    iam using commons upload to upload the file. how commons package is able to detect the file and upload. My upload process is success. but before uploading the file i need to validate it by gettting the lastmodified date. Its not working.
    Any suggestions?
    Thanks,
    Thanuja.

  • Dreamweaver CS5.5 File Compare not working on Mac

    It's not working at all, and I have TextWrangler as the application for this feature.  Can somebody help?  I've asked this question before and nobody has been able to help.  Should I reinstall it?  FYI, I'm new to a Mac.

    exactly the same here. Also I posted to a similar, slightly older thread already: http://forums.adobe.com/message/4116260

  • I can't restore my bookmarks, the file is not working.

    I saved my bookmarks as a backup file but when I try to load the file it does not show up as a JSON file and when I load it by showing all files it says "this type of file is not supported". What do I do?

    If you have a valid .json file created by backup (not export), you can restore it (not import it). You have to do this from the Library List (Ctrl+Shift+B) menus.
    Make sure you know difference between export/import and backup/restore
    * Bookmarks - MozillaZine Knowledge Base<br>http://kb.mozillazine.org/Bookmarks
    * Backing up and restoring bookmarks - Firefox - MozillaZine Knowledge Base<br>http://kb.mozillazine.org/Backing_up_and_restoring_bookmarks_-_Firefox
    * Import bookmarks - MozillaZine Knowledge Base<br>http://kb.mozillazine.org/Import_bookmarks

  • Cloud Files Sync not working on Mac - Folder is archived

    The sync of files in my cloud is not working at all. I wanted to try this feature out for the first time and this is what I always get as a screen:
    It appears again and again.
    I do see an adobe cloud folder but it has (archived) written behind it.
    Please can someone tell me what is wrong?

    File Sync Links that may help
    -https://forums.adobe.com/community/creative_cloud/host_sync
    -http://helpx.adobe.com/creative-cloud/kb/arent-my-files-syncing.html
    -http://helpx.adobe.com/creative-cloud/kb/cannot-share-certain-types-files.html
    -Size Limits https://forums.adobe.com/thread/1488242

  • Finder is not working properly mac osx 10.7.4 it no longer launches a new window when I click the finder icon - I have to right click and open a new window

    Hi
    Just recently Finder has stopped behaving as it normally would. Clicking the icon doesn't seem to launch the finder window. I have to right click the finder icon and then click New Finder Window. Sometimes there is no response for sometime and then finally it does open a window. If I click finder when a wondow is open it does not shift focus to finder anymore. I am sure this did not use to be the case?
    PS. not sure if this is how to put things on the forum as haven't used them before!
    Julian

    Click on the spotlight icon in the top right of your screen (looks like a magnifying glass), type
    Terminal
    and press 'return'.
    In the window that opens up, paste or type this exactly into the window
    killall Finder; killall Dock
    (that's case sensitive) and press 'return'.
    You'll notice the Dock disappear for a second or two then return, as do any open Finder windows.
    Test using Finder as normal. Same problem?

Maybe you are looking for