//get the .note item selected
var TXTitem = $dataItems[DiceSlotBig[WhatSlotcliked][3]].note;
// Find in the .note item what have after #Cadre:
var matches = /#Cadre: (\w+)\s+/.exec(TXTitem);
console.log (matches[1]); // it supose to are D4 Fire but i have D4
//Show text to screen
$gameScreen.setDTextPicture('\\OW[4] ' + matches[1] + ' ', 24); //affiche item id .name
$gameScreen.setFont('GameFont');
$gameScreen.showPicture(57, '', 1, TempX, TempY, 0, 0, 255, 0);
this.bindPictureToMap((57), 1, 'above_characters');