Search found 5 matches

by fleo
Tue May 14, 2013 6:04 pm
Forum: iOS Deployment
Topic: Non-public API usage!
Replies: 21
Views: 19821

Re: Non-public API usage!

the same here.

Still no news from LC guys?

I need to upload a new version of my app with several bugs fixed and major improvements.
The previous one was uploaded and approved a couple of weeks ago. Now I'm stuck with this: "non-public API usage", "Apps are not permitted to access the UDID ...
by fleo
Tue Jun 19, 2012 1:50 pm
Forum: Talking LiveCode
Topic: setting cursor won't work
Replies: 2
Views: 3212

Re: setting cursor won't work

splendid!

Thank you! :)
by fleo
Sat Jun 16, 2012 5:41 pm
Forum: Talking LiveCode
Topic: setting cursor won't work
Replies: 2
Views: 3212

setting cursor won't work

I'm trying to do what I thought was a simple and trivial task: changing the cursor to hand when hovering a button.

The button has the following script:

on mouseEnter
set the lockCursor to true
set the cursor to hand
set the lockCursor to false
end mouseEnter

It doesn't work. The cursor's ...
by fleo
Sat May 12, 2012 11:40 am
Forum: Talking LiveCode
Topic: Password Field
Replies: 10
Views: 14883

Re: Password Field

numchar(165) is a pretty good idea, thanks!

I tried your script. It works generally fine but I think it has some slight issues, though.
If you type fast, very fast, some chars won't be crypted (I'm running the application on a desktop environment, not on the iphone).
If you paste a string, instead ...
by fleo
Sat May 12, 2012 8:26 am
Forum: Talking LiveCode
Topic: Password Field
Replies: 10
Views: 14883

Re: Password Field

Hi, I recentely got the same problem. This is how I solved it. The following script is in the password input field:

on KeyUp
repeat with x = 1 to the number of chars of me
set the imageSource of char x of me to "bullet"
end repeat
pass KeyUp
end KeyUp

on pasteKey
paste
repeat with x = 1 to ...