• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Library Menu Item not Showing on Mac

Community Beginner ,
Jun 06, 2017 Jun 06, 2017

Copy link to clipboard

Copied

I have been testing a Plug-in on Windows and it works great. My Mac tester says the Plug-in loads and shows as Enabled. The problem is the menu item is not showing up on the Mac. This is my first plug-in and I am wondering what I am missing since it works fine on Windows.

TOPICS
SDK

Views

505

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

LEGEND , Jun 07, 2017 Jun 07, 2017

Are you sure the tester is looking under the Library menu rather than the File menu? Many LR users forget that plugin commands could appear under the Library menu (and the Help menu for that matter!).

Votes

Translate

Translate
LEGEND ,
Jun 06, 2017 Jun 06, 2017

Copy link to clipboard

Copied

Are you sure your tester is correctly loading the plugin?  You might ask her/him to send a screenshot of the Plug-in Manager.

I haven't heard of these symptoms before, and I can't think of what might cause them.  You might post the contents of Info.lua here.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Jun 07, 2017 Jun 07, 2017

Copy link to clipboard

Copied

Here is the info.lua

return {

  LrSdkVersion = 6.0,

  LrSdkMinimumVersion = 6.0, -- minimum SDK version required by this plug-in

  LrToolkitIdentifier = 'com.ableblue.lightroom.tags2flags',

  LrPluginName = LOC "$$$/Tags2Flags/PluginName=Tags to Flags Converter",

   LrInitPlugin = 'PluginInit.lua',

  -- Add the menu item to the Library menu.

   LrLibraryMenuItems = {

     {

     title = LOC "$$$/Tags2Flags/FileMenuItem=Convert Colors to F&lags",

     file = "Colors2Flags.lua",

  enabledWhen = "photosSelected",

  },

   },

  VERSION = { major=0, minor=3, revision=0, build=0, },

  LrPluginInfoUrl = 'http://www.github.com/MatthewMcD/Lightroom',

  LrPluginInfoProvider = 'PluginInfoProvider.lua',

}

tags2flags.png

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Jun 07, 2017 Jun 07, 2017

Copy link to clipboard

Copied

I have tried dropping the version and sdk version to 5, changing the title to remove the ampersand and removing the photosSelected line. None of that made a difference.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jun 07, 2017 Jun 07, 2017

Copy link to clipboard

Copied

Are you sure the tester is looking under the Library menu rather than the File menu? Many LR users forget that plugin commands could appear under the Library menu (and the Help menu for that matter!).

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jun 07, 2017 Jun 07, 2017

Copy link to clipboard

Copied

In the Plug-in Manager, that plugin path looks suspicious:

/Users/--'Downloads/tags2flags.lrdevplugin

Where is the --' coming from?  Try a very generic path with no special characters.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Jun 07, 2017 Jun 07, 2017

Copy link to clipboard

Copied

the -- is an artifact of my removing his name from the screenshot.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Jun 07, 2017 Jun 07, 2017

Copy link to clipboard

Copied

That was it! He was not looking at the Library menu. Thanks!

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jun 07, 2017 Jun 07, 2017

Copy link to clipboard

Copied

LATEST

Very good. Looking at Info.lua reminded me of this gotcha.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines