Startseite › Foren › Deutsches LiveCode-Forum › Standalone – could not generate package manifest › Antwort auf: Standalone – could not generate package manifest
April 6, 2019 um 16:01 Uhr
#13965
Hallo Norbert,
leider gibt es solche Einstellungen nicht, ABER man kann sie sich selber bauen:
Wischen = nächste / vorherige Karte:
http://livecode.byu.edu/mobile/gestures.php
on mouseDown
put the mouseH into sStartH
end mouseDown
on mouseUp
if abs(the mouseH - sStartH) > 50 then
if the mouseH < sStartH then
goNext
else
goPrev
end if
end if
end mouseUp
command goNext
lock screen for visual effect
go to next card
unlock screen with visual effect push left
end goNext
command goPrev
lock screen for visual effect
go to prev card
unlock screen with visual effect push right
end goPrev
Pinch = Vergößern/Verkleinern:
http://lessons.livecode.com/m/4069/l/11509-how-do-i-implement-a-multi-touch-pinch-motion
Viel Erfolg!
Torsten