Patrick: Flash: Bild bei bestimmter Mausposition tauschen

Hi Forum,

hab hier ein Flash, welches die Mausposition abfrägt.
Nun soll bei einer bestimmten Position ein Bild innerhalb des Films getauscht werden.
Nur wie?
Ich mache ein
if (_xmouse > 100 and _xmouse < 200 and _ymouse > 10 and _ymouse < 20) {
WAS KOMMT HIER REIN??
}

Danke Patrick

  1. Hallo,
    ich schätze mal:

    if (_xmouse > 100 and _xmouse < 200 and _ymouse > 10 and _ymouse < 20) {

    bildobject.wechslebild('neuesbild');

    }

    gruss

    --
    no strict;
    no warnings;
    Über eine Rückmeldung freut sich später jeder, der das gleiche Problem hat und im Archiv nach einer Lösung sucht.