Search found 2686 matches

by jmburnod
Wed Mar 31, 2010 8:14 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Right answers in Field
Replies: 13
Views: 7454

Re: Right answers in Field

Hi gcamina, Welcome You can use this script to compare two string. It check the accents of each letter on VerifAnswer put fld "TheQuestion" into text1 put fld "TheAnswer" into text2 if CompareText(text1,text2) = empty then FaitJuste else FaitFaux end if end VerifAnswer on FaitJuste Answer "Your answ...
by jmburnod
Mon Mar 29, 2010 9:45 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Applying action to all graphics on card
Replies: 8
Views: 5117

Re: Applying action to all graphics on card

Bernd,

I am so happy to have be faster :D

Jean-Marc
by jmburnod
Mon Mar 29, 2010 7:49 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Applying action to all graphics on card
Replies: 8
Views: 5117

Re: Applying action to all graphics on card

Welcome You can do it in a loop with a list on ResizeSomeG put "oval1,oval2,poly1,poly2,rect1,rect2" into LesG repeat with i = 1 to the num of items of LesG put item i of LesG into UnG set the height of grc UnG to (the height of grc UnG) +10 end repeat end ResizeSomeG or for all grcs on cd on Resize...
by jmburnod
Sun Mar 28, 2010 10:08 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Zooming a Stack
Replies: 2
Views: 2203

Re: Zooming a Stack

hi Robert,

If you have a Mac, you can use the zoom of universal access of the system preferences

Jean-Marc
by jmburnod
Tue Mar 23, 2010 11:48 pm
Forum: Talking LiveCode
Topic: go to the prev or next char of a scrolling fld automaticaly
Replies: 7
Views: 4356

Re: go to the prev or next char of a scrolling fld automaticaly

Hi Bernd, Good work. Many thank (noch einmal one more) I tested and it work fine with line contains a return char, it will early useful like that For the next step, i find the same behavior for the visible line (without return char) I tried by the selectedLoc but it not word realy at this moment. al...
by jmburnod
Tue Mar 23, 2010 2:49 pm
Forum: Talking LiveCode
Topic: read and write the local disk from a revlet
Replies: 9
Views: 6229

Re: read and write the local disk from a revlet

Are you the one who made the Parking Lot game? Nice work - I've spent some good time with it. If the users have a pre-arranged path, what challenge is involved in determining that path for the write? Yes i made the Parking Lot game. If you are Richard Gaskin, you sent me a feed-back. Thank one more...
by jmburnod
Tue Mar 23, 2010 9:52 am
Forum: Talking LiveCode
Topic: read and write the local disk from a revlet
Replies: 9
Views: 6229

Re: read and write the local disk from a revlet

Hi FourthWorld, any harm in writing it to the desktop? Yes, the revlet have a users registry and each user have a folder for text, paint The preferences navigation mode can be different : • one contact for a navigation by scrolling objects • two contactors they send a keyboard message "9" = GoNextOb...
by jmburnod
Tue Mar 23, 2010 9:30 am
Forum: Talking LiveCode
Topic: go to the prev or next char of a scrolling fld automaticaly
Replies: 7
Views: 4356

Re: go to the prev or next char of a scrolling fld automaticaly

Bernd,

Thank one more for help
I tested your script.
It work in a scrolling field with dontWrap = true but i need go the the previous "visible" line in a scrolling field with dontWrap = false

Jean-Marc
by jmburnod
Mon Mar 22, 2010 10:04 am
Forum: Talking LiveCode
Topic: read and write the local disk from a revlet
Replies: 9
Views: 6229

Re: read and write the local disk from a revlet

Thank for explanation and link

I need to write on hard disk to allow user save text or paint.

At this moment i build a painting tool for child with special needs there can't
use a dialogbox

Jean-Marc
by jmburnod
Mon Mar 22, 2010 9:58 am
Forum: Talking LiveCode
Topic: go to the prev or next char of a scrolling fld automaticaly
Replies: 7
Views: 4356

Re: go to the prev or next char of a scrolling fld automaticaly

Hi Bernd,
It is OK for the prev or next char

I want to allow the user to go back up in the lines of one field (no scrolling, not really line) as if I type on arrowkeyUp with textArrows = true

Sorry for my fancy english

Jean-Marc
by jmburnod
Sun Mar 21, 2010 12:41 pm
Forum: Talking LiveCode
Topic: go to the prev or next char of a scrolling fld automaticaly
Replies: 7
Views: 4356

go to the prev or next char of a scrolling fld automaticaly

Hi All, I need go to the prev or next char of a scrolling fld automaticaly You can see the script for prev char I need also go to the prev or next "visible" line of the same scrolling fld (not list) Someone have a good idea ? local DelaiSelPrevChar,depTime,depChar,LeFld on mouseUp put 30 into DelaiS...
by jmburnod
Sun Mar 21, 2010 12:33 pm
Forum: Talking LiveCode
Topic: read and write the local disk from a revlet
Replies: 9
Views: 6229

read and write the local disk from a revlet

Hi All, i need to read and write the local disk from a revlet I select this option in the standalone setting With revStudio i get the path of the stack and i build a local folder path for read and write data It work fine in a stack. glapilemaitre is a valid path But not from a revlet, glapilemaitre ...
by jmburnod
Wed Mar 17, 2010 10:36 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Sorting
Replies: 7
Views: 4779

Re: Sorting

I hoped to answer but Klaus is really very fast :? I had begun a script creating subcategories to be separately sorted out The syntax proposed by Klaus works fine but I do not see it in the dictionary of RevStudio 4.0.0 950 ( Maeby that i progress too slowly in english) P.S. Klaus, some children of ...
by jmburnod
Thu Mar 04, 2010 7:57 pm
Forum: Mac OS
Topic: Where to store application data?
Replies: 7
Views: 5570

Re: Where to store application data?

Hi, If i have understand (i don't speak really english9 I work with Mac but this script work also in a window standalone. I use this script to read and write data in a folder "LeNecessaire" in the same folder of the standalone. on FaitPathNec global gPathNec put the filename of this stack into bufPa...
by jmburnod
Mon Mar 01, 2010 9:50 pm
Forum: Multimedia
Topic: How to know if an image changed
Replies: 3
Views: 3598

Re: How to know if an image changed

Yes Bernd, "text" instead "Imagedata" and the function work function VerifMemeImagedata pImage return the MonImageData of img pImage = the text of img pImage end VerifMemeImagedata It work also after creating a new image empty by set the text of img pImage to "" That is what i need now (for the pain...

Go to advanced search