Antwort auf: Hovereffekt Smartphone

Startseite Foren Deutsches LiveCode-Forum Hovereffekt Smartphone Antwort auf: Hovereffekt Smartphone

#3654
Magic
Teilnehmer

    Moin,
    also das ist ein Auszug von dem Code der Application


    on mouseEnter
    set the backGroundColor of graphic „xyz“ to „red“
    set the forGroundColor“ of btn „btn_XYZ“ to „yellow“
    end mouseEnter

    on mouseLeave
    set the backGroundColor of graphic „xyz“ to „white“
    set the forGroundColor“ of btn „btn_XYZ“ to „black“
    end mouseEnter

    on mouseUp
    answer “ …irgend ein Text…. “
    end mouseUP

    und so weiter – wie gesagt auf dem PC funktioniert das einwandfrei (sind übrigens mehrere grafic objete mit verschiedenen Faben).
    aber leider nicht auf dem Android Smartphone!!

    Danke für die Antwort!!!