Mike,
Pleased to hear that it compiled for you. (Hope the modification wasn't one
necessary to get it to compile?) One of my goals, is to make sure it
compiles and works for anyone straight "out of the box". (Assuming FPC is
installed and works.)
Learning Pascal isn't too hard. As a relatively ol
That makes sense. Thanks!
On Thu, Mar 17, 2011 at 11:44 PM, Mike Bonner wrote:
> I ran into this earlier and tried to ask about it, but wasn't very clear.
> When you urlEncode the field it turns it into one huge unbroken line, and
> certain lengths of unbroken lines cause fields some problems i
For my app, the cr's screw it up. Thanks anyway.
On Thu, Mar 17, 2011 at 11:50 PM, stephen barncard <
stephenrevoluti...@barncard.com> wrote:
> I think URL Encode seems to ignore linefeeds and/or returns in its midst,
> so
> an occasional line break or cr should break up the line limit problems.
I think URL Encode seems to ignore linefeeds and/or returns in its midst, so
an occasional line break or cr should break up the line limit problems.
On 17 March 2011 21:44, Mike Bonner wrote:
> I ran into this earlier and tried to ask about it, but wasn't very clear.
> When you urlEncode the f
Oh, and if you just keep adding data up to the max limit on like length,
every breakover point the field resets and shows only the new stuff after
the break. (or if wrap is off, it just never shows anything again) I forget
where the limit is on wrapped lines, things might be behaving correctly, bu
I ran into this earlier and tried to ask about it, but wasn't very clear.
When you urlEncode the field it turns it into one huge unbroken line, and
certain lengths of unbroken lines cause fields some problems it seems. The
line length you get from the urlEncode is within the accepted limits
accord
I am trying to URLencode some data and for some reason it won't encode.
Can anyone else get this to encode? It's a simple text field with no funny
chars.
Here's a test: (put in msg box and hit return)
go URL "http://www.widgetgadget.com/stuff/URLencodeBug.livecode";
For some reason it CAN URLenc
Sometimes invisible characters can creep in when cutting and pasting from
scripts. BBEdit's 'Zap Gremlins' or Tex-Edit 'Clean Up Document' commands
can fix.
just a thought. it's happened to me.
On 17 March 2011 18:57, Warren Samples wrote:
>
> Hi Bob,
>
> I just tried this myself and find that
On Thursday, March 17, 2011 02:00:41 PM Bob Sneidar wrote:
> Oh thanks Warren! That will work famously! Unfortunately I just finished
> the code that strips all the DEFAULT parameters from all text column
> definitions LOL! I guess it's back to work undoing my last undo. Still,
> nice to know it ca
Ok, thats cool. Modified the template very slightly, compiled, and it works!
Now I have to learn pascal! Thx much, will have fun messing around with
this.
On Thu, Mar 17, 2011 at 7:15 PM, Mark Wieder wrote:
> Scott-
>
> Thursday, March 17, 2011, 2:21:47 PM, you wrote:
>
> > For anyone who filte
Scott-
Thursday, March 17, 2011, 2:21:47 PM, you wrote:
> For anyone who filters out the announcements on this list, you may like to
> know that the Pascal SDK for making LiveCode Externals is now available.
! Downloaded. Haven't had a chance to look at it yet, but thanks in
advance.
--
-Mark
Just a minor update to the Android resizeStack scripts and new customProps for
the UINavBarTitle drop shadow properties:
UINavBarTextShadowColor tColor
UINavBarTextShadowOpacity tOpacity
UINavBarTextShadowDistance tDistance
UINavBarTextShadowAngle tAngle
This will make it easier to match the dif
Hi,
For anyone who filters out the announcements on this list, you may like to
know that the Pascal SDK for making LiveCode Externals is now available.
-
--
Scott McDonald
"Components, Controls, Tools and Resources for LiveCode"
www.runrevplanet.com
--
View this message in context:
http://ru
Well, that's no excuse!!! What are we coming to when we can't bring our
computers on our honeymoons???
That's it. I'm not getting married again. Once this one is done I'm not
upgrading.
-- Tom McGrath III
http://lazyriver.on-rev.com
3mcgr...@comcast.net
On Mar 17, 2011, at 1:54 PM, Andre Garz
Mark,
I have a need for a few free apps to be able to access the FB. Do you have a
canned solution? One that I can use in multiple apps?
If so I can contact you off list.
-- Tom McGrath III
http://lazyriver.on-rev.com
3mcgr...@comcast.net
On Mar 17, 2011, at 10:39 AM, Mark Schonewille wrote:
Is anyone else developing for Android yet? Does your device mount in
debugging mode?
--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.com
___
use-livecode mailing list
use-l
Andre
You must really love her. Congrats man.
> I was on my honeymoon and my wife mademe promise not take a computer there
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your s
That's the magic formula. Looks like it could be fast too.
Thanks, Paul...
function bin8decU pBinary
return (pBinary+ 0x80) bitAnd 0xFF
end bin8decU
function convertBlock pBlock
repeat for each character tCH in pBlock
put bin8decU(tCH) after tOut
end repeat
Maybe this can be useful
http://www.regular-expressions.info/regexmagic.html
http://www.regular-expressions.info/regexmagic.html
--
View this message in context:
http://runtime-revolution.278305.n4.nabble.com/More-regex-madness-tp3383412p3385437.html
Sent from the Revolution - User mailing list
> From: stephen barncard
>
> Continuing on the "exporting aiff files from audioclips"
> quest, I discovered that 'some' (about 10%) of the exported
> files data would not play correctly. They sounded distorted
> and loud at full scale. Digging in further, I discovered that
> 8 bit AIFF files a
I found the below PHP code online that seemed appropriate and tried to
convert it to Livecode but it didn't return useful values.
(not sure if I needed [$num = bindec($bin);] - turns number into string?)
/*
-- original PHP version found online and not tested in PHP
function _bin8dec($bin) {
Oh thanks Warren! That will work famously! Unfortunately I just finished the
code that strips all the DEFAULT parameters from all text column definitions
LOL! I guess it's back to work undoing my last undo. Still, nice to know it can
be done.
Bob
On Mar 17, 2011, at 10:51 AM, Warren Samples
This isn't that long a message but it appears I've pushed the limit.
THis is part one.
Hi gang,
Continuing on the "exporting aiff files from audioclips" quest, I discovered
that 'some' (about 10%) of the exported files data would not play correctly.
They sounded distorted and loud at full scale. D
Hi Paul,
I'm changing my tune - I think encryption will be enough after all. Plus, I
already know how to do it. Thanks for the idea.
Phil
On 3/16/11 10:29 PM, Phil Davis wrote:
I dunno. I think I would still want to send the data through the SSL tunnel
that HTTPS uses, or something like it.
I have to look everything up every time I use regex stuff myself, so not
sure I'd be the best choice for such a thing. In addition to which, my
communication skeelz lack, however this
http://www.regular-expressions.info/reference.html is a pretty good
reference sans many examples, but there are 1 o
On Thu, Mar 17, 2011 at 11:27 AM, Thomas McGrath III wrote:
> Andre,
>
> Any word on the OAuth2 Library progress?
>
> I have a need.
>
>
Tom,
Haven't touched the library because I was on my honeymoon and my wife made
me promise not take a computer there. Now that I am back, I plan to develop
it f
On Thursday, March 17, 2011 12:18:19 PM Bob Sneidar wrote:
> From the MySQL reference manual on TEXT types:
>
>
> In most respects, you can regard a BLOB column as a VARBINARY
> column that can be as large as you like. Similarly, you can regard a TEXT
> column as a VARCHAR column. BLOB a
Many kind thanks to all of you who have responded.
Today's one of my long teaching days and thus I won't be able to get back
with you until either late tonight or tomorrow sometime.
Thanks again!
Judy
___
use-livecode mailing list
use-livecode@list
>From the MySQL reference manual on TEXT types:
In most respects, you can regard a BLOB column as a VARBINARY column
that can be as large as you like. Similarly, you can regard a TEXT column as a
VARCHAR column. BLOB and TEXT differ from VARBINARY and VARCHAR in the
following ways:
>
>
> On 3/15/11 1:03 PM, edward cawley wrote:
>
>>> Where do I find the menu group in the IDE? I have two substacks
>>> with text fields with the menu information. When I use the menu
>>> setup it sets up the menu which works fine in MacOS X but it is in
>>> small (6 or 8) in the Windows. I wen
Hey! Right you are! The error was caused by a beginning asterisk and there was
no preceding character. Ya know, what these so called regex primers need more
than anything else is some good examples. Almost none of them have examples.
Once I saw your example, it was clear as glass. Maybe you need
It may be useful in the future, but not for my project. I am making an
interface whereby you can take a column or entire table from an sqLite database
and migrate it to a mySQL database. There is a form whereby the user can define
what columns and tables they want to "link" and a feature is to b
No problemo.
Bob
On Mar 16, 2011, at 6:52 PM, Scott McDonald wrote:
> Thanks very much.
>
> -
> --
> Scott McDonald
> "Components, Controls, Tools and Resources for LiveCode"
> www.runrevplanet.com
> --
> View this message in context:
> http://runtime-revolution.278305.n4.nabble.com/ANN-
Hi Tom,
If you have a real need for this, I do have a commercial solution for Facebook,
which I can customise to meet your requirements.
--
Best regards,
Mark Schonewille
Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkpro
Andre,
Any word on the OAuth2 Library progress?
I have a need.
-- Tom McGrath III
http://lazyriver.on-rev.com
3mcgr...@comcast.net
>> On Feb 21, 2011, at 10:15 AM, Andre Garzia wrote:
>>
>>> Folks,
>>>
>>> Thanks for the kind words, I just wanted to stir things a little. This
>> new
>>> OAut
That was it Bernd!
Thanks again,
-- Tom McGrath III
http://lazyriver.on-rev.com
3mcgr...@comcast.net
On Mar 17, 2011, at 8:53 AM, BNig wrote:
> Hi Thomas,
>
> turn 'livecode elements appear in list of stacks' in preferences on and look
> in the property inspector under custom properties -> rev
Hi Thomas,
turn 'livecode elements appear in list of stacks' in preferences on and look
in the property inspector under custom properties -> revOnline
Kind regards
Bernd
--
View this message in context:
http://runtime-revolution.278305.n4.nabble.com/Share-this-Stack-tp3383677p3384407.html
Sen
Hi Bob,
This article may be of use.
http://www.maxkpage.com/blog/free-sqlite-to-mysql-converter-super-easy/
http://www.maxkpage.com/blog/free-sqlite-to-mysql-converter-super-easy/
-
Andy Piddock
My software never has bugs. It just develops random features.
PointandSee is a FREE simple but
...thanks Jim & Scott - it's good to know that LiveCode has an integrated way
of managing rounded rectangle window shapes.
Bizarrely, it now looks like I may have to implement this HUD outside of a
revlet, so I'll have to use the nine-images trick for Internet Explorer
compatibility anyway! ;-)
39 matches
Mail list logo