Ho un problema di pubblicazione.
Pubblicando per flash Plyer6 (mi serve per forza almeno quello) un file mi da errore.
L'errore è rifewrito a questo script e più precisamente alla parte in rosso, sapete come posso modificarla in modo tale da poterla pubblicare????
codice:
function insertTag(Code, CodeOn, CodeOff) {
	// selection?
	if (/:SelectionEnd > /:SelectionStart) {
		/:PlainText = /:PlainText.slice (0,/:SelectionStart) + CodeOn + /:PlainText.slice (/:SelectionStart,/:SelectionEnd) + CodeOff + /:PlainText.slice (/:SelectionEnd);
		/:LastCursorPos = /:SelectionEnd + length (CodeOn) + length (CodeOff);
		/:SelectionEnd = -1;
		// no selection - code on / off
	} else if (eval (Code)) {
		eval (Code) = 0;  
		/:PlainText = /:PlainText.slice (0,/:LastCursorPos) + CodeOff + /:PlainText.slice (/:LastCursorPos);
		/:LastCursorPos += length (CodeOff);
	} else {
		eval (Code) = 1;  
		/:PlainText = /:PlainText.slice (0,/:LastCursorPos) + CodeOn + /:PlainText.slice (/:LastCursorPos);
		/:LastCursorPos += length(CodeOn);
	}
}
Questo è l'output con l'errore:
**Error** Scene=Scene 1, layer=Functions, frame=1:Line 23: Left side of assignment operator must be variable or property.
eval (Code) = 0;

**Error** Scene=Scene 1, layer=Functions, frame=1:Line 27: Left side of assignment operator must be variable or property.
eval (Code) = 1;

Grazie!!!
Ciao!!!!