Avatar

Correct answer by
Employee

Hi,

You can do this.

// Get your WhiteBoard toolBar

toolBar.addEventListener(WBToolBarEvent.TOOL_BAR_CLICK,
glow)

protected function glow(p_evt:WBToolBarEvent):void
{
          if (p_evt.
item.command == "glow") {
               //Your operations
          }
}

Thanks

Arun

View solution in original post