Search found 161 matches

by robm80
Tue Nov 18, 2014 10:09 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: How to open *.livecode
Replies: 18
Views: 13668

Re: How to open *.livecode

Maybe try removing the space in the .exe name?
BINGO !
Thanks, Rob
by robm80
Tue Nov 18, 2014 4:50 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: How to open *.livecode
Replies: 18
Views: 13668

Re: How to open *.livecode

Are you saying that even if you use "bladeren" (browse I'm guessing) you cannot select "c:\Program Files (x86)\RunRev\LiveCode Community 7.0\LiveCode Community.exe"?
Yes of course I can select it, but the result is zero.
by robm80
Tue Nov 18, 2014 1:29 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: How to open *.livecode
Replies: 18
Views: 13668

Re: How to open *.livecode

I seem to remember you can define those file associations somewhere.
I agree and in the past I did it, but where????
by robm80
Tue Nov 18, 2014 4:54 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: How to open *.livecode
Replies: 18
Views: 13668

Re: How to open *.livecode

Do you mean open recent file from the File menu?
No, that's not what I mean. I want to olpen LC from the windows opendialogbox.
See picture:
sshot-10.jpg
by robm80
Mon Nov 17, 2014 10:37 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: How to open *.livecode
Replies: 18
Views: 13668

Re: How to open *.livecode

Of course I mean the "Open Stack..." menuitem in the "FILE" Menu in Livecode, there aren't any other "Open" dialogs in Livecode. Yes, that way openig a *. livecode or a *.rev, is wel known. Before the crash of my computer, yesterday, all these files could be opened, in Windows, with one line from t...
by robm80
Mon Nov 17, 2014 5:49 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: How to open *.livecode
Replies: 18
Views: 13668

Re: How to open *.livecode

and will now open ANY LC file ONLY via the OPEN dialog in LC!
I don't understand what I read: what does it mean "OPEN dialog in LC".
Please give me an example.
I downloaded LC 7.0 (c:\Program Files (x86)\RunRev\LiveCode Community 7.0\)
Thanks Rob
by robm80
Mon Nov 17, 2014 5:22 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: How to open *.livecode
Replies: 18
Views: 13668

How to open *.livecode

I have Livecode 7.0 (c:\Program Files (x86)\RunRev\LiveCode Community 7.0\).
I click "open with" but I cannot find the right 'openline'.
If I use "c:\Program Files (x86)\RunRev\LiveCode Community 7.0\LiveCode Community.exe" to open the livecode files, they open with the browser.
What to do ?
by robm80
Wed Sep 03, 2014 12:03 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: to get rid of
Replies: 3
Views: 3210

Re: to get rid of

1. Hm, do you happen to know the name of the company that sends them out? I would write a mail to that company! 2. And next time read all the fine print before you hit RETURN! Klaus ad 1: Hmmm, I don't know; thought it might be RunRev; normally there is a link on a newsletter to get rid of that stu...
by robm80
Wed Sep 03, 2014 9:08 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: to get rid of
Replies: 3
Views: 3210

to get rid of

How can I get rid of newsletters and all Livecode-stuff sent to my address?
Rob
by robm80
Fri Aug 29, 2014 10:00 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: find
Replies: 16
Views: 11337

Re: find

All problems solved :!: :lol: This is how the boxes are withdrawn: In the find-script lock screen repeat with i=2 to tNum put field "comment" of cd i into field "comment" of cd i end repeat unlock screen and more: set the textstyle of the foundchunk to "box" put the short name of this cd into tRef i...
by robm80
Thu Aug 28, 2014 10:02 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: find
Replies: 16
Views: 11337

Re: find

Jacque, Thank you so much, I understand more and more now. BUT new problems. Please see first if my script is OK: on mouseUp put empty into tZoekstring put empty into btn "foundbox" put number of cards into tNum show btn "foundbox" ask "What word" put it into tZoekstring if tZoekstring is empty then...
by robm80
Thu Aug 28, 2014 5:22 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: find
Replies: 16
Views: 11337

Re: find

Good morning Jacque, J-M and Craig, Thanks for all your advises. There are now several questions: 1. Why the doFind script needs line 4: " if the result <> "" or the shiftkey is down then exit repeat" Without this line the scipt does not work. 2. The boxes are drawn everywhere needed, but removing t...
by robm80
Wed Aug 27, 2014 3:31 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: find
Replies: 16
Views: 11337

Re: find

HI Klaus, 1. You have a field named "comment" on ALL cards except card 1? 2. You want to find the string "foo" in the field "comment" on EVERY card except card 1? 3. IF field "comment" on card X contains the string "foo" then you want to collect the NAMES of these cards? Completely correct. And I wa...
by robm80
Wed Aug 27, 2014 12:49 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: find
Replies: 16
Views: 11337

Re: find

What happens if you insert a wait 1000 milliseconds in the loop
Nothing. Hangs and restart.
what happens if you also add the correct CARD description to your repeat loop to REALLY address all cards?
What card description when searching for probably 5 words among 1000 cards ?

Rob
by robm80
Wed Aug 27, 2014 10:34 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: find
Replies: 16
Views: 11337

find

With find "foo": repeat with i=2 to tNum find "foo" in fld "comment" put the short name of this card into tSn if tSn is not in btn "foundbox" then put tSn & cr after btn "foundbox" end if end repeat I get all those cards in the combobox "foundbox" and find goes automatically to the first card: here ...