Hi,
In the xml file you must add an additional attribute for specifing the target:
Code:
<item label="Super Beatle" url="asdsd" target="_blank"></item>
Now open GenericMenuItem.as and find this block of code:
Code:
public function onRelease() {
if (_url_ != "") {
getURL(_url_, "_self");
}
}
replace it with:
Code:
public function onRelease() {
var _target_ = Node.attributes.target;
if (_url_ != "") {
getURL(_url_, _target_);
}
}
This should do the trick.