Finder menu items renamed

Some of my finder menu items have been renamed......

X423424X wrote:
Just for clearification, and I think we've been through this before, and for the sake of an academic argument (), I don't agree the plist is the most important. 
I don't recall discussing it before, but clearly we should.
I say the launchagent is the most important because nothing can get executed (launched) without it.  All the plist does is define a bunch of environment variables that the executing code (launched by the launchagent) uses.  If the code doesn't execute the environment variables are just a bunch of "noise".  Explain to me why the definition of the env variables is more important than the launcher.  It's splitting hairs of course since both should be removed but I still want to know why you consider it more important than the launcher.
After reviewing the evidence, I'm ready to conceed that the launcher, the executable and the hidden file are the most important. My statement goes way back to where this all started in late September with the revelation here that there might be a hidden file called environment.plist that would prevent login. It is also the most difficult to find and delete. Apparently if the dylib is not where it belongs you can't log in.
According to Linc, who seems to be the only one here who has analysed the installed version, said the environment.plist was blank, but Andy said it set an environmental variable for the dylib, which I believe since that's what it's function is.
I don't think we know what happens if the LaunchAgent remains but the environment and dylib are removed. What normally happens is that a few milliseconds tick off while it tries to find the dylib followed by an entry in the system.log and nothing else.
IMHO, we have way too little experience with this thing to declare any component more important than all others, they seem to be tightly integrated. I believe the log file is only there to hold a unique ID code which may be an encrypted version of the UUID, machine and architecture codes.  That makes it least important in my view.

Similar Messages

  • FRM : 41067 Cannot find menu item id ( forms 10g Menus/Forms Conversion )

    Hi All ,
    We have menus converted into forms 10g using the forms migration assistant FMA ( frmplsqlconv ) . Now , we had the menus (.mmb) which had used Shared Menus.
    After conversion observed that there were some duplicate copies of the shared menus created automatically and each reference where this shared menu was used was replaced by the newly created ones.
    Now , when I open the form that uses the menu I get the following error :
    FRM : 41067 Cannot find menu item id
    On debuggin observed the the above error was generated at :
    set_menu_item_property(SHARED_MENU.ITEM,.... )
    Not sure how this worked in forms earlier version and not working in 10g now.
    Could anyone please let me know how to go about to fix this issue and why is this happening at the first point.
    Is re-creating the menu from scratch the only option to resolve the issue ?
    Please advise ..
    Thanks ,

    Hi
    Error Message: FRM-41067: Cannot find Menu Item: invalid ID.
    Error Cause:An invalid ID was passed to a built-in subprogram.
    Action:Verify that a proper call to FIND_MENU_ITEM will be performed. Level: 20 Type: Errori think c1 returns null pls check ur Query in the cursor ; run & test if it returns data or not & check the name of the menu that should actually match with the name stored in the db.
    If the error still existing then u can get reide of it with a simple line check using FIND_MENU_ITEM as follow...
    PROCEDURE disable_menu_items IS
    mi_id MenuItem;
    val varchar2(10);
    BEGIN
    IF :Global.user_code '01' THEN
    IF :GLOBAL.VC_ROLE_CODE '01' THEN
    declare
    cursor c1 is
    select vc_menu_code,vc_menu_name from
    makess.mk_module_menu a where
    vc_module_code='06' and
    not exists(select vc_menu_code
    from makess.mk_roles_menu_inv b
    where vc_comp_code=:global.vc_comp_code
    and a.vc_menu_code=b.vc_menu_code
    and ch_role_code=:global.vc_role_code);
    BEGIN
    for crec in c1
    mi:=FIND_MENU_ITEM('MENU.MENUITEM');
      IF NOT ID_NULL(mi) THEN
    loop
    set_menu_item_property(crec.vc_menu_name,ENABLED,Property_false);
    end loop;
    END IF;
    END;
    :global.check:='N';
    END IF;
    END IF;
    END;Hope this helps...
    Regards,
    Abdetu...

  • Cannot find menu item:Invalid Id

    Hi there,
    I am trying to access the menu attached to my form by setting the enabled properties of menu items based on privileges.
    I use the following set_menu_item_property:
    SET_MENU_ITEM_PROPERTY('menu.item_name', ENABLED, PROPERTY_FALSE);
    But I get an error message saying:
    "Cannot find menu item:Invalid Id"
    Can somebody help me please with this.
    Thanks.

    the error says you have not put the menu item name properly...what is the structure of the menu...? one thing you can do is in object navigator locate the menu item name and identify its parent. and use it in the command like for eg.
    set_menu_item_property('adminmenu.users',enabled,property_false);KK

  • Finder menu items

    My Finder menu bar has three items I can't use: Bluetooth, Wi-Fi, and a drive eject icon.
    I have no Bluetooth gear.  My stereo has Wi-Fi, but apparently I can't connect to it without a router.  The eject icon says "no drives" even when I have a USB drive mounted.
    Is there a way to remove these items from the menu bar?

    Uncheck:
    Eject button will only show something to eject when you have a CD or DVD inserted.

  • How do I create a keyboard shortcut for a nested finder menu item?

    Specifically I'm trying to create a keyboard shortcut for Finder>Services>Mail>Send File.
    Any help would be appreciated.

    pmasitti,
    Under System Preferences > Keyboard & Mouse > Keyboard Shortcuts, click on the "+" sign. From the drop-down menu choose Application: Finder, Menu Title: "Send File" (without the quotes), Keyboard Shortcut: whatever.
    Close system System Preferences and quit the Finder for the change to take effect. You can easily quit and relaunch the Finder from the Apple Menu > Force Quit. Select Finder and click on the Relaunch button.
    For the action to complete, select the Finder item before pressing your keyboard short cut.
    Worked for me... good luck!
    Andrew99

  • FRM-41067: Cannot find menu item: invalid Id

    Hello,
    I have a menu, when i try to execute query by entering a value i received this message. i checked all my code, everything seems correct. someone can tell me what it could be wrong in my menu?

    I have a menu, when i try to execute query by entering a value i received this message. What does that mean? How do you execute the query? By choosing a menu item? Using the keyboard?
    i checked all my code, everything seems correct. ?I also always hope so, but in most cases there in an error.
    someone can tell me what it could be wrong in my menu?I guess that in some trigger either in the menu itself or in the form which the menu is attached to (or in a pll attached to that form) there is some SET_MENU_ITEM_PROPERTY which refers to some not existing menu-item.

  • Find menu item without identifier (ID)

    hello
    I have an extension in jsxbin adds that 2 items to the context menu. I want to overwrite one of these items from another extension written by me in jsx, the problem is that I have no the iddentifier of that command menu.
    is there any way to delete that entry from the menu and replace it with mine without the id? MenuElement.find () only works with the id ... I found nothing more
    I tried to see the contents of the contextual menu to try to list all identifiers but have not succeeded.
    thank you

    change
    set_menu_item_property('SETUP_MENU'||vfnm,enabled,property_false);to
    set_menu_item_property('SETUP_MENU.'||vfnm,enabled,property_false);but better reference by id:
    set_menu_item_property(mi_id,enabled,property_false);

  • What is/are the keyboard shortcut if I want to pull down a menu item?

    What is the keyboard command to pull down a finder menu item? Say I want
    to browse the finder menus, without a mouse?

    Although that's listed in the document, It does nothing on my machine and it is enabled in Keyboard Shortcuts. So, if you know the steps to get it working, that would be appreciated. Wired, extended Apple keyboard.
    EDIT: Need CONTROLfnF2, which requires two hands, to make it work. IMO, it's much asier to just use the mouse.

  • How to disable menu items through c# in adobe x standard. I didn't find the required APIs.

    Hi
    We are working on a desktop application on C# which uses Adobe Express 5.0. to view the PDF files. Recently we had an issue reported that PDFs created in Adobe 9 are not opening up. So we decided to upgrade to Acrobat Adobe X Standard. Now the issue is that I have to suppress controls (tool bars(or Panels), menu items) for which I'm using the below code which worked in express 5.0 but not on Adobe X. Also I want to view the toolbar by default instead of the translucent menu at the bottom of the page.
    Acrobat.CAcroApp.ToolButtonRemove("SaveFileAs");
    Acrobat.CAcroApp.MenuItemRemove("Quit");
    Please help.
    Thanks,
    vinay

    Hi
    We used javascript to find out the names of the menu items that are present in the Adobe 9.0 Std. I presume that it would work even for Adobe 10.o as well. After that in the .NET C# code we have used App.RemoveMenutItem ("<<MenuItemName>>") to disable all the menu items that we dont want You can search for javascript references for Acrobat and you would find many.
    Also I've figured out another way where you remove the .api files from your plugins folder, however I'm not sure if it would create any further problems. This is route is not taken, atleast for now.
    Please post here the route taken by you.
    Thanks.

  • Removing Item from Finder Menu

    How do I remove an item from the Finder Menu? I have the clock, airport-thingy, and power info. There is also a character palette item. displayed as an american flag. How do I remove the character palette item from the menu?

    Hi
    Hold down the cmd key and drag it off. This should
    work for most menubar icons.
    Matt
    Thank you very much! That did the trick. There is a lot I don't know. I'm glad there are people like you out there.

  • How I can find out all menu item name at runtime from forms 9i ?

    Hellow all
    we can find out all the block name and item name in forms at runtime.
    but
    can I find out all the menu item at runtime without knowing the name of menu item.
    I want disable some menu item at runtime.
    From
    Chirag Patel

    Hi Frank
    I hope the solution from u
    please.......
    are u got my problem ?
    from
    Chirag Patel

  • I can't find the image object menu item when trying to add an image placeholder in dreamweaver cs6

    I am new to dreamweaver, and am walking through some tutorials.  I can't seem to find the image object menu item to place a image placeholder on my page.  Any suggestions?  Do I have a setting that is currently hiding its visibility?  Thanks  (I am currently working with dreamweaver cs6)

    They removed it in the new Cloud version of DW CS6.
    http://blogs.adobe.com/dreamweaver/2012/10/dreamweaver-creative-cloud-update-12-1-faqs.htm l

  • Help Please***************-Clear a item on the finder menu

    I have a listing on my finder menu under the places block. The folder is named Untitled Cd with the yellow Burn symbol next to it. This listing is not selectable and I can not find a way to clear the item. Re-setting the finder preferences did not kill it. Any ideas?????
    Message was edited by: pdaug

    Boy that was easy. It did not even occur to me to try that. Thanks for the help!

  • Can't find "Endnote Citation" in the INSERT menu item

    I wanted to insert a citation or bibliography in my report using Pages but I can't find the feature in Pages to do this.  From the help, it stated going to INSERT then select "Endnote Citation" but in my Pages, under the INSERT menu item, I can't find "Endnote Citation". 
    I am using Macbook Air 2010, and Pages 09.  Please help.
    8irons

    Apple includes download links to some very useful documentation with each of the iWork '09 applications. You'll find it in the Help menu. Each User Guide is a searchable PDF document packed with useful information on using the application.
    On page 52 of the Pages '09 User Guide, the topic of Footnotes and Endnoted is discussed:
    Adding and Editing Footnotes and Endnotes
    In a word processing document, you can add special marks (numbers or symbols)
    that link to notes at the bottom of a page (footnotes) or at the end of a document or
    section (endnotes).
    You can’t mix footnotes and endnotes in a document, but you can convert notes from
    one type to the other.
    (emphasis added)
    The Footnotes menu item in the Insert menu serves to insert markers for either type of note.
    Regards,
    Barry

  • Folder action contextual menu item in Finder

    hi,
    I remember that when I first got my mac, the contextual menu in Finder would also include an item related to Folder Actions (don't remember the exact wording now). However, at some point of time, when I didn't find folder actions to be really useful to me, I think I must have made some change somewhere, and now the said item doesn't appear in the contextual menu anymore.
    Though I do run Folder Action Setup.app and have set up actions for some specific folders, I would rather want this contextual menu item back, so that I can directly enable Folder Actions in/for a folder w/o having to invoke the setup.app.
    Hope someone can help out.

    If the 'FolderActionsMenu.plugin' is not in the /System/Library/Contextual Menu Items folder you can download a copy here.
    <http://tomx.890m.com/FolderActionsMenu.dmg>
    If that's the case, after you install the plugin Repair Disk Permissions with your Disk Utility and Restart.
    Good luck,
    Tom

Maybe you are looking for

  • Changing from G5 to new Mac Pro system

    Hello Mac users, I did search the forum for answers to my question, did not find any right away. I have been using a Mac PPC G5 since 2004 or so. I am running Leopard 10.xx on this PPC. Due to requirements in software (seems more new software is for

  • "Some of your quicktime software is out of date" Message

    Hi, I have a problem with quicktime for which I would like advice. The symptom is that each time quicktime is loaded or accessed, there is a pop-up message box which says,"Some of your quicktime software is out of date. You can fix this problem by up

  • How do I monitor and record a MIDI instrument on Garageband?

    I may be missing something simple in Garageband setup. I want to monitor and record a drumkit via its MIDI output. It is a Yamaha DTXplorer so I have Subtlesoft Midipipe installed and a Focusrite Saffire 6 USB converter. Microphones and guitars are b

  • Windows recovery error loop (HP Pavilion dvd-1132us)

    My Pavilion (originally running Vista, changed to Windows 7) was working fine, and then stopped loading Windows. It starts up fine, then a black screen comes up with this message: Windows failed to start. A recent hardware or software change might be

  • Laptop turns on but has a folder with a question mark in the middle

    for the last month or so my computer has been acting weird. when i turnd it on one morning it wouldent load it just kept the apple sign logo on the screen then it would change too the circle with a line though it sign. now the logo doesnt even show u