hei shaosean
thanks
thats it, got stuck in a rut ...
Search found 36 matches
- Sat May 12, 2012 8:08 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: 'into' - what is wrong?
- Replies: 2
- Views: 3083
- Sat May 12, 2012 6:24 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: 'into' - what is wrong?
- Replies: 2
- Views: 3083
'into' - what is wrong?
Hei
since some hours I try to find out what's wrong with this code?
function read_Data pTableName pLineID pFieldName
if pTableName is empty AND pLineID is not an integer AND pFieldName is empty then
## create Error message
put "me" into theErrorMessage
put "I stop reading Data from File ...
since some hours I try to find out what's wrong with this code?
function read_Data pTableName pLineID pFieldName
if pTableName is empty AND pLineID is not an integer AND pFieldName is empty then
## create Error message
put "me" into theErrorMessage
put "I stop reading Data from File ...
- Fri May 04, 2012 8:13 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: FieldEditor and autom. save to source
- Replies: 3
- Views: 3648
Re: FieldEditor and autom. save to source
Hei Klaus
creazy how I could oversee it because I printed this DG Manual as broschure and studied ...
First I was a bit confused but after do some sample it locks to be very easy to manage.
Real thanks!
creazy how I could oversee it because I printed this DG Manual as broschure and studied ...
First I was a bit confused but after do some sample it locks to be very easy to manage.
Real thanks!
- Thu May 03, 2012 10:01 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: FieldEditor and autom. save to source
- Replies: 3
- Views: 3648
FieldEditor and autom. save to source
Hei
I try to work with data grid and at the moment I study the editing of a field.
By standard everything works well.
My question is now where and how to catch that the field was edited to save changes imediatly to an external source (at the moment text file, later perhaps a database on a server ...
I try to work with data grid and at the moment I study the editing of a field.
By standard everything works well.
My question is now where and how to catch that the field was edited to save changes imediatly to an external source (at the moment text file, later perhaps a database on a server ...
- Tue Mar 13, 2012 12:54 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: get the value of a Variable by its name (e.g variableNames)
- Replies: 2
- Views: 3294
Re: get the value of a Variable by its name (e.g variableNam
Thanks Mark
really great
´Do´thats what I am was locking about to script a statemant together
`executionContexts` makes other problems easier
thanks again
really great
´Do´thats what I am was locking about to script a statemant together
`executionContexts` makes other problems easier
thanks again
- Tue Mar 13, 2012 11:30 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: get the value of a Variable by its name (e.g variableNames)
- Replies: 2
- Views: 3294
get the value of a Variable by its name (e.g variableNames)
Hei
is it possible to get the value if I just know its name e.g. as I get it from the variableNames() function?
And how I get the running handlers own name? (because the `me`gives me the objects name where the handler is in.
Or is there an other possibility like to get/ log the "Variable" shown ...
is it possible to get the value if I just know its name e.g. as I get it from the variableNames() function?
And how I get the running handlers own name? (because the `me`gives me the objects name where the handler is in.
Or is there an other possibility like to get/ log the "Variable" shown ...
- Thu Mar 08, 2012 8:46 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: enter password twice -> to validate/verify it
- Replies: 10
- Views: 12771
how to create, validate and change password - an sample stac
Hello all
I got a positive feedback about the sample stack. It should no includes no potential mistakes or security risk and it works well.
Thanks to Jaquline.
Nevertheless don´t forgott it is a SAMPLE stack.
So if you need security think about ALL other aspects/ issues of security your app needs ...
I got a positive feedback about the sample stack. It should no includes no potential mistakes or security risk and it works well.
Thanks to Jaquline.
Nevertheless don´t forgott it is a SAMPLE stack.
So if you need security think about ALL other aspects/ issues of security your app needs ...
- Sat Mar 03, 2012 12:10 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: enter password twice -> to validate/verify it
- Replies: 10
- Views: 12771
Re: enter password twice -> to validate/verify it
thanks again Jacqueline
it was a real big help
and thanks for your compliment about my english skills (dictionaries and auto corrections helps a lot) - not always feel like that, but today I will fly in happiness.
----------------------------------------------------
As a result of this topic and ...
it was a real big help
and thanks for your compliment about my english skills (dictionaries and auto corrections helps a lot) - not always feel like that, but today I will fly in happiness.
----------------------------------------------------
As a result of this topic and ...
- Fri Mar 02, 2012 9:45 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: enter password twice -> to validate/verify it
- Replies: 10
- Views: 12771
Re: enter password twice -> to validate/verify it
Hei Jacqueline
thanks 1001 times.
Now I understand the key handling much better.
My project should work on all platforms, I decide to focus first for iOS, then Mac, ...
I want use the same code base (with as less exception as posible) and make just the different GUIs.
Yes I will start with just ...
thanks 1001 times.
Now I understand the key handling much better.
My project should work on all platforms, I decide to focus first for iOS, then Mac, ...
I want use the same code base (with as less exception as posible) and make just the different GUIs.
Yes I will start with just ...
- Thu Mar 01, 2012 11:22 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: enter password twice -> to validate/verify it
- Replies: 10
- Views: 12771
Re: enter password twice -> to validate/verify it
Ahh so! the light shinning now :-)
Thanks very much!
This way is much easier code to manage key actions.
The verification I do in an own command/function
managing deleting last char could lock like:
local sPass
on deleteKey pKey
delete last char of sPass
delete last char of fld "password"
end ...
Thanks very much!
This way is much easier code to manage key actions.
The verification I do in an own command/function
managing deleting last char could lock like:
local sPass
on deleteKey pKey
delete last char of sPass
delete last char of fld "password"
end ...
- Thu Mar 01, 2012 10:37 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: enter password twice -> to validate/verify it
- Replies: 10
- Views: 12771
Re: enter password twice -> to validate/verify it
So at the moment I just can ask and ask twice :(
command askPasswordFromUser pStart
## if user try again show an other start dialog
if pStart is true then
ask password "Enter a NEW Password:" titled "Create new password"
else
ask password "You decide trying creating password again:" & return ...
command askPasswordFromUser pStart
## if user try again show an other start dialog
if pStart is true then
ask password "Enter a NEW Password:" titled "Create new password"
else
ask password "You decide trying creating password again:" & return ...
- Thu Mar 01, 2012 8:31 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: enter password twice -> to validate/verify it
- Replies: 10
- Views: 12771
Re: enter password twice -> to validate/verify it
An idea with much code work could be:
At the moment I think to place to place 4 fields - 2 hidden and 2 visible.
If someone enters in the first field (then wait a quater second - so he see what he was entering) then copy it in his corresponding hidden filed and change it to a star.
do it for every ...
At the moment I think to place to place 4 fields - 2 hidden and 2 visible.
If someone enters in the first field (then wait a quater second - so he see what he was entering) then copy it in his corresponding hidden filed and change it to a star.
do it for every ...
- Thu Mar 01, 2012 8:19 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: enter password twice -> to validate/verify it
- Replies: 10
- Views: 12771
enter password twice -> to validate/verify it
Hei
there are many topics about password.
but I dont found an answer to my question yet:
I want ask user to register/enter a new password. Normal you have to enter you password to a encrypted field and then enter the same to a second to compare/validate/verify that they are the same.
As I found ...
there are many topics about password.
but I dont found an answer to my question yet:
I want ask user to register/enter a new password. Normal you have to enter you password to a encrypted field and then enter the same to a second to compare/validate/verify that they are the same.
As I found ...
- Sun Feb 19, 2012 5:20 am
- Forum: iOS Deployment
- Topic: ios 4.3 sdk
- Replies: 14
- Views: 12312
Re: ios 4.3 sdk
Hei
one question more here.
As I use LC 4.6.4 on Snow Leopard with X-Code 4.2 I just got the "missing 4.3 SDK" message.
After that I tried again every step here and in the iOS release Note but also reinstalled X-Code, I also cleaned the Development Setting in user Library.
Setup in X-Code all the ...
one question more here.
As I use LC 4.6.4 on Snow Leopard with X-Code 4.2 I just got the "missing 4.3 SDK" message.
After that I tried again every step here and in the iOS release Note but also reinstalled X-Code, I also cleaned the Development Setting in user Library.
Setup in X-Code all the ...
- Thu Feb 16, 2012 10:18 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: place backgrounds with backgroundBehavior to existing cards
- Replies: 11
- Views: 9456
Re: place backgrounds with backgroundBehavior to existing ca
Bernd,
Jean-Marc,
Thanks very much!
Just to now how the key word to find it.
Whereas I wrote 'place' in this topic I diden't searched with it befor
Now I found it also in the LC User Guide ...
Jean-Marc,
Thanks very much!
Just to now how the key word to find it.
Whereas I wrote 'place' in this topic I diden't searched with it befor
Now I found it also in the LC User Guide ...