Startseite › Foren › Deutsches LiveCode-Forum › Anfängerfrage zu Button Script: Button auf anderen Card verändern › Antwort auf: Anfängerfrage zu Button Script: Button auf anderen Card verändern
Dezember 9, 2018 um 14:48 Uhr
#9207
Lerneffekt! 🙂 Woher soll man als absoluter „NichtProgrammierer“ wissen, dass es auch „else“ gibt. 🙂
Ich habe es sinngemäß so gelöst:
on hiliteChanged
if the Hilite of me = "true" then
go to card "cardB"
set the backgroundcolor of button "buttonName" to "green"
go to card "cardA"
else
go to card "cardB"
set the backgroundcolor of button "buttonName" to "red"
go to card "cardA"
end if
end hiliteChanged
Jetzt wären nur noch ein paar Ideen für den Stil hilfreich. 🙂
viele Grüße