Edit Hypermesh panel area

MOHAMMED ABDULLA T
MOHAMMED ABDULLA T Altair Community Member
edited October 2020 in Community Q&A

Hi All,

Is there any way to edit hypermesh panel area while giving the command *createmarkpanel comps 1 'Select the component'. I wanted to add some message over the panel area. The picture is shown below.

<?xml version="1.0" encoding="UTF-8"?>PanelPicture.thumb.png.672cac2f5529e87e3edfcbf3e7999005.png

Answers

  • tinh
    tinh Altair Community Member
    edited February 2019

    Why do you want it?

    The message is already on message-bar

  • Q.Nguyen-Dai
    Q.Nguyen-Dai Altair Community Member
    edited February 2019

    Yes, don't reinvent the wheel!

    :P/emoticons/default_tongue.png' srcset='/emoticons/tongue@2x.png 2x' title=':P' width='20' />

     

     

  • MOHAMMED ABDULLA T
    MOHAMMED ABDULLA T Altair Community Member
    edited February 2019

    I need to add some picture over that region to show the user which region has to select. It would be really helpful while selecting the component, showing the area of selection by some picture.

  • tinh
    tinh Altair Community Member
    edited February 2019

    Place a picture box in panel area:

    set picbox [label .mypic -text Hello]

    lassign [hm_getpanelarea] x y W H

    place $picbox -in .hmContainer -x 100 -y [expr [winfo height .hmContainer]-$H+50]

  • MOHAMMED ABDULLA T
    MOHAMMED ABDULLA T Altair Community Member
    edited February 2019

    Thank You :)/emoticons/default_smile.png' srcset='/emoticons/smile@2x.png 2x' title=':)' width='20' />