Home AMX User Forum AMX Design Tools
Options

Is there a limitation to [Active Touch] using Chameleon images?

I have a TP file where I'm using chameleon images for buttons that overlap.

The buttons touch style is set to active touch. So I'm expecting that only the visible parts of the button would be 'touchable". This is not the case, so my overlapping buttons that look well do not touch so well.

If I use a static bitmap with a fill color of transparent, all is well.

I'm assuming that since the chameleon images use a fill color of some value this is causing a problem with how active touch works. Even though parts of the button look transparent, the active touch doesn't see it that way.

Anybody have a work around? I'd really like to stick to the chameleon images with palettes for my GUI design.

Comments

  • Options
    VLCNCRZRVLCNCRZR Posts: 216
    Transparent Buttons

    I have found that the "draw order" parameter can cause issues like this.

    Sometime, even though you cannot see something visually, TP4 still believes it is there.

    Typically, I have to make sure that my border is set at the top, or near to the top of the stack.
  • Options
    I do not believe the firmware will use just the chameleon image for its active touch region in the absence of a bitmap. So, without a bitmap or a border, the button's touch area is its bounding box.
  • Options
    Check out this Wiki:
    http://en.wikipedia.org/wiki/Mask_(computing)#Image_masks

    Chameleon imaging, you must understand, is a form of masking, the only difference is that TPD4 is also tossing in a couple of variable colors (fill and border) when drawing the image in its entirety (in fact you can even change the draw order). But however the color properties are introduced, when drawing the bitmap the framework is simply referring to the Chameleon (Mask) image for bitwise operations of "should this pixel be drawn, and at what opacity in relation to the color its being drawn to?"

    With that said, a mask doesn't exist in the same way that a bitmap does; it's not referred to for figuring the actual dimension of the graphic, but only for its rendering purposes.

    Hope this helps. :)
Sign In or Register to comment.