Search found 210 matches
- Thu Jun 26, 2014 5:54 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Lock Moves
- Replies: 3
- Views: 985
Re: Lock Moves
I didn't use lock screen because I still wanted the movement to be seen. Anyhow, through more trial and error I came across the missing piece, I added "without waiting" to my move command. This, along with the lock moves command, did the trick. move button tAtom to tLeft,tTop without waiting
- Thu Jun 26, 2014 5:48 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Lock Moves
- Replies: 3
- Views: 985
Lock Moves
I'm moving a bunch of buttons around the screen. Whether or not a button moves depends on if the space it is moving into is empty. The below script works in terms of properly selecting and moving the buttons to where they should be, but i would like all of the moves to be done at the same time. I tr...
- Wed May 14, 2014 2:35 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Difficulty finding problem in If, Else If repeat loop
- Replies: 4
- Views: 1586
Re: Difficulty finding problem in If, Else If repeat loop
it is the else if line related to "hiatus" specifically here: else if item 1 of listLine is among the lines of field "hiatus" on card "data" then add 1 to field "bufHiatus" item 1 is an email address, and "hiatus" is a big lilst of email addresses, so if the email address being looked at is in "hiat...
- Tue May 13, 2014 5:47 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Difficulty finding problem in If, Else If repeat loop
- Replies: 4
- Views: 1586
Difficulty finding problem in If, Else If repeat loop
this little program processes a large email list and takes out blank emails, duplicates, opt-outs and people who are on "hiatus"; counts are created so that each record can be accounted for to my client (this is repeated among many markets here is my current code, everything is working correctly exc...
- Tue May 13, 2014 5:36 pm
- Forum: idea2app and Coding School
- Topic: Menu Bar app for MacOS?
- Replies: 2
- Views: 2126
Re: Menu Bar app for MacOS?
thanks Neil
- Tue May 13, 2014 12:31 pm
- Forum: idea2app and Coding School
- Topic: Menu Bar app for MacOS?
- Replies: 2
- Views: 2126
Menu Bar app for MacOS?
is it possible to make a menu bar item with livecode, where the stack would be essenially hidden until the menu bar icon was clicked, and then it pops down from the menu bar?
- Mon May 12, 2014 4:25 pm
- Forum: lcTaskList
- Topic: Suggestions/Requests
- Replies: 1
- Views: 5039
Suggestions/Requests
This was the first plugin I purchased with LiveCode, and by far the one I use most often! Here's a few things I'd like to toss out as suggestions for future updates: In addition to using this to markup things I need to fix/enhance/add, I also use lcTaskList to generally bookmark all my scripts -I ad...
- Fri May 09, 2014 9:01 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Empty a lot of fields at once
- Replies: 6
- Views: 1177
Re: Empty a lot of fields at once
Thanks Craig & Klaus, you were both a big help I put two fields on a card that just holds some data and the fields that need to be reset get put into it as theya re being processed. This is what I ended up using: repeat for each line fieldToEmpty in field "fieldlist" on card "data" do "put empty int...
- Wed May 07, 2014 7:03 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Empty a lot of fields at once
- Replies: 6
- Views: 1177
Empty a lot of fields at once
Right now, I have 20 fields that I put empty into; and also I put 0 into 35 fields on a mouseUp... is there a faster way of clearing a lot of fields at once?
- Fri May 02, 2014 5:07 pm
- Forum: idea2app and Coding School
- Topic: Grabbing X number of characters from the end of a line
- Replies: 2
- Views: 2355
Re: Grabbing X number of characters from the end of a line
That did it, THANKS!
- Fri May 02, 2014 2:03 pm
- Forum: idea2app and Coding School
- Topic: Grabbing X number of characters from the end of a line
- Replies: 2
- Views: 2355
Grabbing X number of characters from the end of a line
as the subject says, I'm looking to take the last 7 characters from each line of a field and put them into another field, so I will start with something like this: ABSD-A234567 LKI:A654321 A987654 BUFA314151 and end up with: A234567 A654321 A987654 A314151 so, the last 7 bits of info are the only re...
- Fri May 02, 2014 1:46 pm
- Forum: idea2app and Coding School
- Topic: Webinar Session Questions 30/04/2014
- Replies: 2
- Views: 2510
Re: Webinar Session Questions 30/04/2014
Hi Neil, you had brought up a webpage listing various ways to test on iOS devices (the last one being TestFlight). Could you post that link?
Thanks,
Greg
Thanks,
Greg
- Thu Mar 27, 2014 5:23 pm
- Forum: idea2app and Coding School
- Topic: Letters in front of variables
- Replies: 6
- Views: 2032
Re: Letters in front of variables
someone correct me if I'm wrong, I believe it goes as such: g = global var s = local var t = temporary var p = parameter being sent to function/handler u = user defined var using naming conventions makes it easier for people to read your code, so when sharing or asking for help it is useful other th...
- Sun Mar 16, 2014 6:56 pm
- Forum: idea2app and Coding School
- Topic: Multiple "Background" groups
- Replies: 2
- Views: 1087
Multiple "Background" groups
So first card is a "Main Menu" (no tab bar) that goes to 2 different sections "Clients" and "Jobs," each will have seperate cards for various tasks specific to their function. My question is, can I make a navigation group and use it as a background for the cards related to "Clients" and then make a ...
- Fri Mar 14, 2014 5:03 pm
- Forum: idea2app and Coding School
- Topic: Password protect certain parts of a stack
- Replies: 1
- Views: 1107
Password protect certain parts of a stack
I am working on a Research Project management app, I am trying to combine all of the little tasks my company does into one single resource. There are certain elements that only certain people should have access to, such as "Proposals" and "Bidding." My ideas are: 1. Have a password request pop up wh...