• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Custom IC SKILL
  3. To insert custom banners on the design view

Stats

  • Locked Locked
  • Replies 2
  • Subscribers 144
  • Views 13170
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

To insert custom banners on the design view

Leesh
Leesh over 10 years ago

Hi. I want to ask how to fix my code to add custom banners

 

Code is following

 

procedure(verifyMenu(args)

let((winId new_verify new_verifyMenuList)

winId = args~>windows

new_verify = hiCreateMenuItem(

 ?name       'new_verify

 ?itemText  "New_Verify"

 ?callback  "uinewverify()"

)

new_verifyMenuList = list(new_verify)

new_verifyMenu = hiCreatePulldownMenu('new_verifyMenu "New_Verify" new_verifyMenuList)

));let

deRegUserTriggers("maskLayout" nil nil 'new_verifyMenu)

 

When I load this function, and open maskLayout view, following error occured

 

*Error* get/getq: first arg must be either symbol, list, defstruct or user type - "LibraryName"

 

How should I fix my code?

 

 

 

 

  • Cancel
Parents
  • Andrew Beckett
    Andrew Beckett over 10 years ago

    A few problems:

    1. The function name you've called in the deRegUserTriggers is new_verifyMenu, but the function is called verifyMenu
    2. You've called it as a post-install trigger, whereas it should be a menu trigger (i.e. the third argument)
    3. The args parameter is a disembodied property list, and so you must use -> rather than ~> (that's what is causing the primary error message)
    4. A user menu trigger should return a list of pulldown menus

    So these corrections to your code will do the job:

    procedure(MyVerifyMenu(args)
      let((winId new_verify new_verifyMenuList)
        winId = args->windows

        new_verify = hiCreateMenuItem(
         ?name       'new_verify
         ?itemText  "New_Verify"
         ?callback  "uinewverify()"
        )

        new_verifyMenuList = list(new_verify)
        new_verifyMenu = hiCreatePulldownMenu('new_verifyMenu "New_Verify" new_verifyMenuList)
        list(new_verifyMenu)
      )
    );let

    deRegUserTriggers("maskLayout" nil 'MyVerifyMenu)

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • Andrew Beckett
    Andrew Beckett over 10 years ago

    A few problems:

    1. The function name you've called in the deRegUserTriggers is new_verifyMenu, but the function is called verifyMenu
    2. You've called it as a post-install trigger, whereas it should be a menu trigger (i.e. the third argument)
    3. The args parameter is a disembodied property list, and so you must use -> rather than ~> (that's what is causing the primary error message)
    4. A user menu trigger should return a list of pulldown menus

    So these corrections to your code will do the job:

    procedure(MyVerifyMenu(args)
      let((winId new_verify new_verifyMenuList)
        winId = args->windows

        new_verify = hiCreateMenuItem(
         ?name       'new_verify
         ?itemText  "New_Verify"
         ?callback  "uinewverify()"
        )

        new_verifyMenuList = list(new_verify)
        new_verifyMenu = hiCreatePulldownMenu('new_verifyMenu "New_Verify" new_verifyMenuList)
        list(new_verifyMenu)
      )
    );let

    deRegUserTriggers("maskLayout" nil 'MyVerifyMenu)

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Children
No Data

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information