Card replay speed: Version 6.7 and newer
Posted: Mon Oct 27, 2014 5:35 pm
Stable versions of LC up to and not including 6.7 shows a flash when I click on a button that has a custom graphic using the icon and hovericon state in Yosemite. The flash was not present in Maverick. Using Yosemite I use a script that allows me to play cards and different groups of cards at varying speeds.
This script works fine in Yosemite (except for the white flash) in versions prior to stable 6.7 ( 6.7 is the version in which there is no white flash when clicking custom buttons). The speed of the card "play back" in 6.7 and 7.0 is painfully slow. What has been changed in version 6.7?
Thanks in advance for your assistance.
on mouseUp
local tstack
local tcds
local tspeed
local tnum
local tnew
set the lockmessages to true
put fld "stackname" into tstack
put the number of cards of stack tstack into tcds
put fld "speed" into tspeed
put fld "tymes" into tnum
open stack tstack
go to card 1
put tcds -1 into tnew
lock messages
repeat tnum times
repeat tnew times
wait tspeed milliseconds
go next
end repeat
wait 1 sec
go to card 1
wait 1 sec
end repeat
end mouseUp
This script works fine in Yosemite (except for the white flash) in versions prior to stable 6.7 ( 6.7 is the version in which there is no white flash when clicking custom buttons). The speed of the card "play back" in 6.7 and 7.0 is painfully slow. What has been changed in version 6.7?
Thanks in advance for your assistance.
on mouseUp
local tstack
local tcds
local tspeed
local tnum
local tnew
set the lockmessages to true
put fld "stackname" into tstack
put the number of cards of stack tstack into tcds
put fld "speed" into tspeed
put fld "tymes" into tnum
open stack tstack
go to card 1
put tcds -1 into tnew
lock messages
repeat tnum times
repeat tnew times
wait tspeed milliseconds
go next
end repeat
wait 1 sec
go to card 1
wait 1 sec
end repeat
end mouseUp