How can you replace text immediately, instead of slowly fading the old text out and the new text in?
alice-blue
14 Nov 2017, 14:25With the "replace" function, clicking the text causes the old text to fade out slowly, and the new text to fade in. Is it possible to replace text more quickly?
![](https://i.imgur.com/mpaalk0b.jpg)
manowar
16 Nov 2017, 21:44Hello, this is not possible without change the squiffy's code.
For change more fast the text you find this lines in your story.js and change the value 1000 (1 second) for other value same 200 (0.2seconds) or 500 (half second)
$labels.fadeOut(1000, function() {
$labels.html(squiffy.ui.processText(text));
$labels.fadeIn(1000, function() {
squiffy.story.save();
});
});
alice-blue
17 Nov 2017, 02:47Great! Thank you!