Visualizzazione dei risultati da 1 a 4 su 4

Discussione: testo selezionato... ?

  1. #1
    Utente di HTML.it L'avatar di tonaz
    Registrato dal
    Jan 2002
    Messaggi
    82

    testo selezionato... ?



    Ciao a tutti ragazzi!!
    ho già cercato nel forum, ma mi sembra di nn aver trovato nulla a riguardo.

    mi chiedevo se fosse possibile assegnare ad una variabile una stringa formata dal testo che vado a selezionare nel campo di testo... ehm... mi spiego:

    ho un input dynamic text, che per definizione è selectable.

    ci scrivo dentro "Ciao a tutti raga!".

    poi seleziono "a tutti" e cliccando un tasto vorrei che una variabile prendesse il valore "a tutti".

    si può fare? sto scoprendo che con actionscript si può fare tutto, ma questa proprio non riesco a farla...
    TonaZ

  2. #2
    Utente di HTML.it L'avatar di negatyve
    Registrato dal
    Feb 2001
    Messaggi
    9,479
    Crea un nuovo filmato, e metti nel primo frame un pulsante con nome di istanza "botton". Poi incolla nello stesso frame questo script:

    codice:
    this.select = new Object();
    this.createTextField("testo_txt", 1, 10, 10, 150, 20);
    this.testo_txt.background = true;
    this.testo_txt.text = "Ciao a tutti raga!";
    this.onMouseDown = function()
    {
    	this.select.begin  = Selection.getBeginIndex();
    	this.select.end    = Selection.getEndIndex();
    	this.select.cursor = Selection.getCaretIndex();
    };
    this.bottone.onRelease = function()
    {
    	var p = this._parent;
    	trace(p.testo_txt.text.substring(p.select.begin, p.select.end));
    }

  3. #3
    [edit] Come non detto, ti han già risposto

  4. #4
    Utente di HTML.it L'avatar di tonaz
    Registrato dal
    Jan 2002
    Messaggi
    82
    Mitico!
    mi era venuto il dubbio che c'entrassero BeginIndex, EndIndex e CaretIndex... ma nn sarei mai arrivato a questo

    Grazie mille
    TonaZ

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.