Script Menu

I guess I didn't notice the loss through OS upgrades, but didn't there used to be a Script Menu in the menu bar of Mail and Address Book (and maybe other apps)?
I never used any of my scripts regularly, but now I'm missing some of them.
What's the story? Can I get the Script Menu back? If not, what are my alternatives?

cwhaley wrote:
I guess I didn't notice the loss through OS upgrades, but didn't there used to be a Script Menu in the menu bar of Mail and Address Book (and maybe other apps)?
Try launching the AppleScript Utility (in /Applications/AppleScript) and looking for an option to "Show Script menu in menu bar".

Similar Messages

  • How to show script menu in numbers.

    I just bought from AppleStore the Numbers aplication and I am not able to get the script menu to show up in numbers.
    Script menu is already selected in Editor Applescript and in fact the menu shows up in ALL other applications like iCalc, Safari, Finder, etc..
    I have a MacBook Pro with Lion 10.7.3
    Any help will be gratly appreciate.

    In the English version, the Number menu bar requires about 700 pixels.
    The French one requires 850 pixels.
    It's the user's duty to define the list of actions reachable from the right area of the menu bar to fit in the available area.
    Here you may see a heavily loaded menu bar.
    Yvan KOENIG (VALLAURIS, France) mardi 14 février 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.3
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k

  • Help with selecting files from script menu or drag and drop

    I found this scale images applescript online. It works great when a bunch of files is dragged on top of the script but I would like it to also work when a folder or group of files is selected in the Finder and I activate it from the scripts menu.
    I can't get my on run statement to work. I'm not really an Applescript guy so I'm really just asking if someone can help finish what I started in this on run.
    -- save in Script Editor as Application
    -- drag files to its icon in Finder
    property target_width : 120
    property save_folder : ""
    on run
    tell application "Finder"
    activate
    set folder_path to quoted form of (POSIX path of (the selection as alias))
    set theItems to every file of folder_path
    end tell
    end run
    on open some_items
    -- do some set up
    tell application "Finder"
    -- get the target width, the default answer is the property target_width
    set new_width to text returned of ¬
    (display dialog "Target width:" default answer target_width ¬
    buttons {"OK"} default button "OK")
    if new_width as integer > 0 then
    set target_width to new_width
    end if
    -- if the save_folder property has not been set,
    -- set it to the folder containing the original image
    if save_folder is "" then
    set save_folder to ¬
    (container of file (item 1 of some_items) as string)
    end if
    -- get the folder to save the scaled images in,
    -- default folder is the property save_folder
    set temp_folder to ¬
    choose folder with prompt ¬
    "Save scaled images in:" default location alias save_folder
    set save_folder to temp_folder as string
    end tell
    -- loop through the images, scale them and save them
    repeat with this_item in some_items
    try
    rescaleand_save(thisitem)
    end try
    end repeat
    tell application "Image Events" to quit
    end open
    on rescaleand_save(thisitem)
    tell application "Finder"
    set new_item to save_folder & "scaled." & (name of this_item)
    end tell
    tell application "Image Events"
    launch
    -- open the image file
    set this_image to open this_item
    set typ to this_image's file type
    copy dimensions of this_image to {current_width, current_height}
    scale this_image by factor (target_width / current_width)
    save this_image in new_item as typ
    end tell
    end rescaleandsave

    When items are dragged to your script's icon they are passed in to the on open handler, so this triggers:
    on open some_items
    and the dragged items are passed in as some_items
    In contrast, when you double-click on the script, or invoke it via the Script menu, this runs the on run handler:
    on run
      tell application "Finder"
        activate
        folder_path to quoted form of (POSIX path of (the selection as alias))
        set theItems to every file of folder_path
      end tell
    end run
    However, there's nothing in this block that actually does anything with the selection - you (dangerously) assume that the selection is a folder (you really should check first), and just set theItems to every file in that folder then you exit.
    So to do what you want you'll need to edit your run handler to filter the selection and pass files over to the code that does the hard work.
    You already have the basis for this - your rescaleandsave() handler, so it's just a matter of identifying the files in the selection and passing those over to that handler:
    on run
      tell application "Finder"
        set cur_selection to (get selection) -- get the selection
        repeat with each_item in cur_selection -- iterate through
          if class of each_item is folder then -- do we have a folder?
            set theFiles to every file of each_item -- if so, get its contents
            repeat with each_file in theFiles -- iterate through them
              my rescaleand_save(eachfile) -- and process them
            end repeat
          else if class of each_item is document file then -- do we have a file selected?
            my rescaleand_save(eachitem) -- if so, process it
          end if
        end repeat
      end tell
    end run
    So the idea here is that the run handler gets the selection and works through the (potentially-numerous) items. For each selected item it checks whether its a folder or a file, if its a folder it gets all the files within and passes them to the rescaleandsave handler.
    Note that this is not recursive - it won't catch files within folders within folders - since it only looks at the top level of selected folders, but it wouldn't be hard to rework the script to handle that if that's what you need.

  • "Show Script menu in menu bar" setting won't stick

    Hi all,
    I'm starting some Applescript development, and I'd like to make some scripts available in the Scripts menu. I checked the box to "Show Script menu in menu bar" from within the prefs for AppleScript Editor, but it doesn't work. When I close AppleScript Editor, relaunch it, and look at the prefs again, the box is unchecked. I deleted the relevant preference files from my Library and recreated them by launching AppleScript Editor, but the setting just won't stick.
    Any ideas?
    -Tim

    Taylor,
    The preference that I'm looking at is within AppleScript Editor, the program I use to write new AppleScripts. Script Editor was the previous name of the same application. When I check the "Show Script menu in menu bar" in the AppleScript Editor prefs and close with window. The box is unchecked the next time I open the AppleScript Editor application, and the Script menu never appears in my menu bar. Everything works fine on my iMac at home. The problem seems to be isolated to my MBP. Weird.
    -Tim

  • File - Script menu is missing in my AE CS6

    Hi, after reinstalling my OSX ML from a time machine I had some several crashing problems in Adobe suite, so I reinstalled them all,
    My problem is that my Script menu is gone in After Effects...

    Some security stuff at the operating system level is probably blocking/ hiding the respective folder from AE...
    Mylenium

  • Java script menu

    Can anyone here help me with a Java Script Menu? It is a Vertical Drop Down
    Many thanks

    Try this:
    http://jsfiddle.net/NancyO/zN7fU/
    Reponsive Menu for Touch Screen Devices:
    http://www.meanthemes.com/plugins/meanmenu/
    Nancy O.

  • Speed opening Script menu from top bar

    Hello,
    Just recently I noticed that opening the scripts menu from the universal menu across the top of the screen seems to take longer and longer to open as a work day passes.
    There are about 10 files in there with more contained in 6 more folders; so not what I consider to be a huge amount to cause such a stall.
    It takes about 20 seconds for the Waiting Pointer to stop and the menu to show.
    Has anybody else observed this behaviour?
    On my previous main computer an iBook G4 I never experienced this behaviour.
    New AmigaOne X1000 arrives Q4 2010 - http://www.a-eon.com
    Amiga FireFox/Timberwolf 3.5 Alpha released, work on v4.0 continues: http://www.uploads.beaverpromotions.co.uk/amiga/apps/timberwolfhtml5video.jpg
    Amiga OpenOffice arriving Q1 2011
    http://www.uploads.beaverpromotions.co.uk/amiga/apps/openoffice1.jpg
    New Amiga Community website coming soon, still under development, please check out the hardware specs of the new Amiga home computer.
    http://www.uploads.beaverpromotions.co.uk/amiga/hardware.html
    - Remember when Computing was fun?

    Hi,
    I think the number on the bar is not the culprit, I also have almost 50 favorite items, but IE works fine with these items. Anyway, you can reduce the number as a test, check if the issue is related with the storage.
    Remove the item from the Favorites Bar, then re-add, check the result.
    Click Tools\Internet Options\General\Delete... delete the browser histry, cookies, temporary internet files, and so on.
    Click Tools\Manage add-ons, disable all add-ons, check if issue persists, if issue disappers, then one or more add-ons might be the culprit, we can try the add-on one-by-one to find the cause. 
    Yolanda Zhu
    TechNet Community Support

  • Cleaning the Script Menu in Photoshop

    Is there a way to clean the script menu in Photoshop? I'm launching most of my scripts from shortcuts on my Wacom Tablet and from Windows Explorer, and everytime I do one of those two options, since I'm not launching the script from the script menu, it adds a copy of the script name to the menu, thinking it's a new script. Is there a way to clean that menu, to tell it to show only the scripts in the scripts file and not every single script I launch from Windows Explorer or shortcuts?
    Because now I can't use the script menu anymore because there are too many things. Every script is the at least 10 times and the list is now twice as long as my screen.

    Scripts edited in ESTK and run with ESTK as the target app stay in ESTK until
    you restart ESTK. The JS interpreter is ESTK is persistent across script
    invocations. Bridge operates the same way, unless you #target different
    interpreters.
    In PS, if you have a script in Presets/Scripts and start PS, it will stay in the
    File->Scripts menu until you restart PS. It will stay in the menu even if you
    delete the file from disk but will not execute if it is selected. The JS
    interpreter is PS recreated for each new script invocation.
    On situation in which two scripts with the same name can occur in the Script
    menu is if you have two scripts with the same name in two different folders
    under the Presets/Scripts folder.
    One other possibility (that I haven't verified) in CS3 is if you have one script
    in app.path + '/Presets/Scripts' (the 'normal' scripts folder) and another in
    Folder.userData + '/Adobe/Adobe Photoshop CS3/Presets/Scripts'. This Presets
    folder is where user-specific mods to Presets tree should be located. I have
    scripts that have to run as far back as CS so I haven't had to worry about this yet.
    -X
    for photoshop scripting solutions of all sorts
    contact: [email protected]

  • Some sample Applescripts are missing from Script menu.

    I am a new to AppleScript and I have just started reading A Beginner's Guide to Apple Script (by Guy Hart-Davis). The book makes numerous references to the default example scripts that are created during OS X install. I have added the script menu to to the menu bar and when I open the script menu - I only see about half of the default scripts that are shown in the book. I did some browsing and found other examples of the script menu which shows fewer scripts than the example in the book - but still shows a few more than what I am seeing on my system. On my system I do not see the following scripts (Address Book Scripts, Basics, Finder Scripts, Info Scripts, Internet Services, Navigation Scripts, URL's or Virtual PC Scripts). I am on SL 10.6.2. The book is written for SL 10.6 - but also makes references to Leopard 10.5. Is there something wrong with my system or were some of these default scripts eliminated in 10.6.2. My iMac came with 10.6.1 initially - so I have no prior OS version as a point of reference. My concern is that I progress with the lessons and exercises in the book - that there will be continued references to these missing scripts - as I suspect that the missing scripts may be used as a starting point for creating new scripts. Any idea where I can find the scripts that I listed as missing?

    Thanks. The book I am using appears to be a brand new book just released a month ago (or so). It appears the book may have been written for Leopard and tweaked for Snow Leopard (but under the guise of being the other way around) - without actually verifying that the examples for Snow Leopard actually work. The website for the book (McGraw Hill) does not seem to provide a mechanism for providing feedback or errata info. So far these missing scripts have not hampered my progress - except on the initial example. I was more concerned that something was missing from my iMac.

  • CS3 - Scripts Menu item greyed out after using file info

    This looks like a bug to me, anyone else had the same problem ? Or solutions
    I have a couple of scripts which add an extra menu item called "Scripts" on the menu bar (and sub-menu items to call the scripts). If I open the 'file info' for a selected file and then close it again (doesn't matter if it is cancel or okay) the "Scripts" menu item is now greyed out and not accessible.
    Only cure is to shut down and restart bridge - very annoying.
    Bridge v 2.1.1.9 on Win XP SP2.
    Steve

    sorry for the late reply.. just saw your qn in 2 years time.. ;p
    you need to set "Enable Attached Scripts" to check in the Edit>Preferences>General.
    hope that helps 

  • Aperture script menu plugin won't save

    So I've created an Aperture workflow that extracts metadata, writes it to a text file and opens in excel for me. This workflow works as expected from within Aperture. The way it functions is to run the operation on Selected files from within Aperture so I want it to show up in the script menu but when I save it as a plug-in it doesn't show up in the menu.
    A grep of the entire disk shows no sign of the filename anywhere. What gives?

    No one has a single clue about this?

  • Script Menu and app-specific scripts

    Hi There-
    i've noticed that I do not have Application-specific scripts in a separate area of the (system-level) Script Menu. I'm running 10.4.7 on a MacBook Pro 2.0/2GB RAM.
    I'm referring to a separate area in the Script Menu for Safari, Mail, Finder, and a host of Third-party apps.
    I checked permissions on the ~/Library/Scripts directory (and subdirectories), and they are Read/Write.
    Any ideas as to why these application-specific areas do not show up on my system? As a result, I'm missing a lot of functionality from many apps (just noticed because of DEVONthink Pro's scripts, which are vital, are not installed on my machine, and can't seem to be installed).
    Thanks!
    macbookpro2.0, imacg5, tibook800, (many omitted)... Apple IIe   Mac OS X (10.4)  

    You could also be running "FastScripts" (http://www.red-sweater.com/fastscripts/index.html) which will do what you want and more...
    Hppe this helps
    Power Mac G4 MDD Dual 837 Mhz / MacBook Pro 17"   Mac OS X (10.4.7)  

  • Any way to write code to cache the contents of the scripts menu? (or force ScriptsMenu plugin start)

    In the scripting forum I created the thread Adding custom scripts to actions revisited - Partial workaround
    Basically, you can create actions with keyboard shortcuts to execute custom javascript/vbscript, etc. and successfully reload them after restarting Illustrator but only if the user manually navigates to File->Scripts before manually loading an actions (.aia) file
    Any script menu items added to actions will be stripped from the custom actions when Illustrator is restarted because, I believe, the script menu items are not cached and are therefore invalid when the actions are automatically reloaded.
    Obviously, I'd prefer not requiring the user to navigate to the scripts menu and replace the actions every time Illustrator is started.
    Does anyone have any ideas on a way to write code so that Illustrator caches the contents of the scripts menu? Preferably this would be before the actions are loaded so they don't get invalidated and need to be reloaded in the first place. A keyboard macro would likely execute to late to be of much help.
    If anyone knows anything about the actual mechanism of caching the scripts menu or knows of anything else relevent to this please respond.
    Thanks!
    Edit: The menu is created in the Scripts Menu plugin (ScriptsMenu.aip). Perhaps there is no "cache" of the menu and the plugin just doesn't perform the startup until you browse to the File->Scripts menu?
    AIMenuGroups.h has the global definition of the group:
    #define kScriptsMenuGroup         "ScriptsMenuGroup"

    Have you looked at stored outlines ? They are for plan stability.
    Also you may want to look little deep on where your statistics are going wrong.
    I would recommend using below hint and checking where is difference in estimated(E-Rows) and actual number(A-rows) of rows. This may point out some incorrect stats.
    e.g.
    select /*+ gather_plan_statistics */ * from dual;
    D
    X
    select * from table(dbms_xplan.display_cursor(null,null,'ALLSTATS LAST'));
    Plan hash value: 272002086
    | Id | Operation | Name | Starts | E-Rows | A-Rows | A-Time | Buffers |
    | 1 | TABLE ACCESS FULL| DUAL | 1 | 1 | 1 |00:00:00.01 | 3 |
    ------------------------------------------------------------------------------------

  • Script Menu in iTunes shows duplicates

    My scripts menu in iTunes 9 now shows duplicates of every script (although not in the finder). Anyone else having this issue and have a solution?

    Problem solved. Removed Scripts folder. Restarted iTunes without it, then quit iTunes again and moved the folder back. Seems to have worked.
    Message was edited by: ColonelPanik

  • Why can't I find "AcrCalibrator" in the "Scripts" menu?

    I bought a mini color checker card for camera calibration, however, I couldn't find "AcrCalibrator" in the "Scripts" menu?
    Does anyone know why?

    chlonini wrote:
    The "Scripts" menu is the submenu of "File" in Photoshop.
    I am not at a computer with PS at the moment but the script could be in several other places, or maybe it needs downloading from the Adobe site.
    Like I said, ask the ACR experts.
    Edit: Yes, you got a really comprehensive answer there!

Maybe you are looking for

  • Does VMIC driver support LV RT8.2?

    Hello, Using VMIC-5565 instrument driver for LV, I am trying to setup reflective memory VMIC-5565 on LV RT 8.2. My problem is how to setup VMIC-5565 on RT and it is not detected on MAX. First, after installed the driver which is provided from GE FANU

  • Oracle 8.1.7 in Caldera Open Unix 8 with lkp

    Hello: Anyone had installed Oracle 8.1.7 in Caldera Open Unix 8 with LKP (Linux Kernel Personality)? I've installed the software but I can't create a new database. I think there may be an operating system problem because I can't even get the startup

  • Shopping card functionality

    Hi, Can anybody explain me on Procurement card fuctionality in SRM. Eg- employee creating shopping cart - he might be card holder depending on SPRO setting Here, how bank linked to Pcard? How the payment goes to vendor? Thanks and regards Hareesha

  • IWeb site name Capitals 'lock'

    Hi guys! Just a quick question regarding the site names on iweb. The folder is called 'newsletters' on the server. On the iweb site name it comes up as 'Newsletters'. If I try to make the N lower case it imediately changed back. There are a few links

  • Displaying or projecting your project onto a TV screen

    I want to display my Keynote projects on a large flat screen TV and operate the project from my lap top. How can the project be displayed on the screen? Does this require additional hardware? Can this be done using the Apple TV hardware? Does anyone