Hi there,
I was going through the resource documentation (C++) and I discovered that there is a button resource called ARROWBUTTON (here the link).
I tried to used it on a .res for a TAG plugin written in Python, but I only get errors as soon as I'm writing ARROWBUTTON, either using it or using CUSTOMGUI parameter.
CONTAINER myTAGPLUGIN
{
NAME myTAGPLUGIN;
GROUP {
BUTTON BT_LEFT { CUSTOMGUI ARROWBUTTON; ARROW_LEFT; }
}
}
CONTAINER myTAGPLUGIN
{
NAME myTAGPLUGIN;
GROUP {
ARROWBUTTON BT_LEFT { ARROW_LEFT; }
}
}
Is there a way to get this to create a simple arrow button in a TAG plugin in Python, or this is a part of the SDK limitations?
Thanks,