ByTransient Expert Cheater
Reputation: 5
Joined: 05 Sep 2020 Posts: 240
|
Posted: Tue Dec 29, 2020 3:35 pm Post subject: CEEdit "stringLength" oder "selStart" P |
|
|
In a Trainer with the same size, these functions work fine.
I have implemented "UDF1" to try it out, "stringLength" and "selStart" are working.
But I created a new Trainer, neither code worked. (For CEEdit, "stringLength" and "selStart")
The Lua script content is the same as before, but something in this new Trainer makes this function ineffective.
Please share if you have any thoughts on damages that could neutralize this.
Thanks in advance for the answers.
Examle;
Code: | function CEEdit1Change(sender)
stringLength = # (UDF1.CEEdit1.Text)
UDF1.CELabel1.caption=(stringLength)
--or
--UDF1.CELabel1.caption=UDF1.CEEdit1.selStart
end |
|
|