Search found 82 matches

by Peter Wood
Sun Jul 15, 2012 2:01 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Mystery Highlight in Data Grid
Replies: 3
Views: 3340

Re: Mystery Highlight in Data Grid

It seems you have to deselect "Disable BBCode" before you can post a link. I guess this is a good protection against spam bots.

Here is a link to the datagrid lessons.
by Peter Wood
Fri Mar 25, 2011 1:22 am
Forum: Announcements
Topic: Pascal SDK for creating Externals
Replies: 4
Views: 3814

Re: Pascal SDK for creating Externals

I'd like to add my thanks too Scott. A great initiative.
by Peter Wood
Mon Aug 23, 2010 12:05 am
Forum: Internet
Topic: Post data using https://
Replies: 2
Views: 3141

Re: Post data using https://

Which version of Revolution are you using? I believe only the Enterprise version includes support for the HTTPS protocol.
by Peter Wood
Mon Dec 28, 2009 9:56 am
Forum: Talking LiveCode
Topic: How to delete the selected text
Replies: 13
Views: 8779

Re: How to delete the selected text

I tried this with a scrolling field called Field, putting the script in a Button, it worked for me:

Code: Select all

on mouseUp
  delete the selectedText of field "Field"
end mouseUp
by Peter Wood
Sat Dec 05, 2009 5:35 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: remove space in string
Replies: 14
Views: 12015

Re: remove space in string

The additional characters at the end of the decrypted plain text would seem to stem from the padding characters that will have been added to the source plain text. I couldn't see where you remove any padding in your code. The most common padding method uses the following pattern (all in hexadecimal)...
by Peter Wood
Sat Dec 05, 2009 5:58 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: remove space in string
Replies: 14
Views: 12015

Re: remove space in string

You could use a simple "regex" to remove the last space at the end of the first string before adding the second string

Code: Select all

put the replaceText ("a    ", " $", "") into myVar   -- a is followed by four spaces
put "b" after myVar
put myVar

Result
a   b    -- only 3 spaces between a and b

Go to advanced search