Re: numToChar with socking great numbers

2014-01-15 Thread Peter W A Wood
Richmond

Apparently the Grinning Face is included in the Deja Vu font which was/is 
included by default with Ubuntu (according to Wikipedia). Perhaps you can get 
LiveCode to use that ... at least to test the surrogate pairs.

On a lesser note, LibreOffice includes Deja Vu and fortunately Deja Vu does not 
have the pile of poo you do not want.

Regards

Peter

On 15 Jan 2014, at 15:42, Richmond wrote:

 On 15/01/14 02:55, Peter W A Wood wrote:
 Richmond
 
 Have you tried displaying the pile of poo in LivecCode using the same font 
 as you are using in Thunderbird? That would be the best evidence of whether 
 LiveCode supports surrogate pairs under Linux or not.
 
 Regards
 
 Peter
 
 
 
 That's a godd idea; although why everybody seems to think I want the pile of 
 poo, when
 I want 1F600 (the rictus smiley face) I just don't know.
 
 The font is sans-serif.
 
 Now, in my font list over in Livecode I could only find a font listed as 
 Sans, which delivered a
 blocked-in oblong rather than the face.
 
 This would suggest that Thunderbird is using its own, built-in font.
 
 Richmond.
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: numToChar with socking great numbers

2014-01-15 Thread Richmond

On 15/01/14 10:03, Peter W A Wood wrote:

Richmond

Apparently the Grinning Face is included in the Deja Vu font which was/is 
included by default with Ubuntu (according to Wikipedia). Perhaps you can get LiveCode to 
use that ... at least to test the surrogate pairs.

On a lesser note, LibreOffice includes Deja Vu and fortunately Deja Vu does not 
have the pile of poo you do not want.

Regards

Peter

On 15 Jan 2014, at 15:42, Richmond wrote:


On 15/01/14 02:55, Peter W A Wood wrote:

Richmond

Have you tried displaying the pile of poo in LivecCode using the same font as 
you are using in Thunderbird? That would be the best evidence of whether 
LiveCode supports surrogate pairs under Linux or not.

Regards

Peter



No joy.

Richmond.

That's a godd idea; although why everybody seems to think I want the pile of 
poo, when
I want 1F600 (the rictus smiley face) I just don't know.

The font is sans-serif.

Now, in my font list over in Livecode I could only find a font listed as 
Sans, which delivered a
blocked-in oblong rather than the face.

This would suggest that Thunderbird is using its own, built-in font.

Richmond.

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: numToChar with socking great numbers

2014-01-15 Thread Richmond

On 15/01/14 10:03, Peter W A Wood wrote:

Richmond

Apparently the Grinning Face is included in the Deja Vu font which was/is 
included by default with Ubuntu (according to Wikipedia). Perhaps you can get LiveCode to 
use that ... at least to test the surrogate pairs.

On a lesser note, LibreOffice includes Deja Vu and fortunately Deja Vu does not 
have the pile of poo you do not want.

Regards

Peter




I installed the Unicode consortium's Last Resort font: 
http://www.unicode.org/policies/lastresortfont_eula.html


and ran the script:

on mouseUp
   set the useUnicode to true
   set the unicodeText of fld fff to (numtoChar(55357)  
numToChar(56832))

end mouseUp

and got a char saying undefined  1 1FFFD Plane 1

U+1FFFD = 131069
U+1 = 65536

so, that, at least, makes sense; and that would argue that a font with 
the smiley face should show the face.


AND; according to this: 
http://www.fontspace.com/unicode/char/1F601-grinning-face-with-smiling-eyes 
we should be OK:


so, adjusted the second surrogate pair to U+1F601 = 55357  56833, used 
DejaVu Sans, and got a smiley face !!


Obviously, DejaVu Sans does NOT have a glyph at 1F600.

then, did this:

on mouseUp
   set the useUnicode to true
   put the unicodeText of fld fff into FFF
   put charToNum(FFF) into fld NUMM
end mouseUp

and the number I got was 55357: the first number in the surrogate pair!

So it would seem that the surrogate pairs work in one direction [ 
numToChar ] but not the other way round [ charToNum ].


Richmond.




___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: numToChar with socking great numbers

2014-01-15 Thread J. Landman Gay
On my Android tablet using, I assume, Droid Sans, the clef sign was missing but 
the pile of poo was there.  To me it looked more like a party hat with yellow 
streamers, but admittedly the font was small.  

Richmond richmondmathew...@gmail.com wrote:
On 15/01/14 10:03, Peter W A Wood wrote:
 Richmond

 Apparently the Grinning Face is included in the Deja Vu font which
was/is included by default with Ubuntu (according to Wikipedia).
Perhaps you can get LiveCode to use that ... at least to test the
surrogate pairs.

 On a lesser note, LibreOffice includes Deja Vu and fortunately Deja
Vu does not have the pile of poo you do not want.

-- 
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: numToChar with socking great numbers

2014-01-15 Thread Richmond

On 15/01/14 11:46, J. Landman Gay wrote:

On my Android tablet using, I assume, Droid Sans, the clef sign was missing but 
the pile of poo was there.  To me it looked more like a party hat with yellow 
streamers, but admittedly the font was small.


Presumably you meant to type f*rty hat.

Richmond.



Richmond richmondmathew...@gmail.com wrote:

On 15/01/14 10:03, Peter W A Wood wrote:

Richmond

Apparently the Grinning Face is included in the Deja Vu font which

was/is included by default with Ubuntu (according to Wikipedia).
Perhaps you can get LiveCode to use that ... at least to test the
surrogate pairs.

On a lesser note, LibreOffice includes Deja Vu and fortunately Deja

Vu does not have the pile of poo you do not want.



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Antialiased vector graphics in LiveCode 6.5.1

2014-01-15 Thread william humphrey
I reported a bug about six months ago with imported images. They still
print with the correct resolution but look like 8 bit graphics on the
screen. You can set the quality to best and then they look OK on the
screen but do not print correctly (they then print blurry).

I got an email from LiveCode about it when I reported it and they said
they were working on it but I haven't seen a solution yet.

On Wed, Jan 15, 2014 at 1:26 AM, Alejandro Tejada
capellan2...@gmail.com wrote:
 The property fillRule [evenodd - nonzero - empty] is somehow related to this
 bug.

 After importing some graphics using EpsImport v05C
 http://andregarzia.on-rev.com/alejandro/stacks/Eps_Import_V05C.zip
 noticed that I could set or unset the antialiased properties in
 imported graphics, without affecting their fill, but...
 when I set the fillRule graphic property to evenodd or nonzero
 then the fill of antialiased graphic dissapears.

 If I set the antialiased to false, the fill is visible,
 If I set the fillRule to empty, the fill is visible and
 could change the antialised without problems.

 By the way, if you need to import some vector graphics from
 illustrator files version 7 or less, here is nice tip that could help you,
 when you need to scale these vector graphics inside a LiveCode stack.

 http://andregarzia.on-rev.com/alejandro/img/Gradients03.jpg

 But these questions still are unresolved:

 Why does this happens? Does exists another workaround, besides
 NEVER set the fillRule of vector graphics?

 Al





 --
 View this message in context: 
 http://runtime-revolution.278305.n4.nabble.com/Antialiased-vector-graphics-in-LiveCode-6-5-1-tp4674704p4674705.html
 Sent from the Revolution - User mailing list archive at Nabble.com.

 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode



-- 
http://www.bluewatermaritime.com

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: What is going on with irev based websites?

2014-01-15 Thread Mark Schonewille

Hi Richmond,

It is not down.

http://andregarzia.on-rev.com/richmond/

works, but other links on your website are broken. Perhaps André knows 
what's going on.


--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

Use Color Converter to convert CMYK, RGB, RAL, XYZ, H.Lab and other 
colour spaces. http://www.color-converter.com


Buy my new book Programming LiveCode for the Real Beginner 
http://qery.us/3fi


Fill out this survey please
http://livecodebeginner.economy-x-talk.com/survey/

On 1/15/2014 17:18, Richmond wrote:

Try this one: http://andregarzia.on-rev.com/richmond/home.html

Down?

Hosed

Richmond.



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Apple down

2014-01-15 Thread Richard Gaskin
A helpful tool for checking whether a site is down or the issue is local 
to your DNS:


http://www.downforeveryoneorjustme.com/

--
 Richard Gaskin
 Fourth World
 LiveCode training and consulting: http://www.fourthworld.com
 Webzine for LiveCode developers: http://www.LiveCodeJournal.com
 Follow me on Twitter:  http://twitter.com/FourthWorldSys

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: What is going on with irev based websites?

2014-01-15 Thread Richmond

On 15/01/14 18:29, Mark Schonewille wrote:

Hi Richmond,

It is not down.

http://andregarzia.on-rev.com/richmond/

works, but other links on your website are broken. Perhaps André knows 
what's going on.


Well; seems alright now; except for the Links page.



--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

Use Color Converter to convert CMYK, RGB, RAL, XYZ, H.Lab and other 
colour spaces. http://www.color-converter.com


Buy my new book Programming LiveCode for the Real Beginner 
http://qery.us/3fi


Fill out this survey please
http://livecodebeginner.economy-x-talk.com/survey/

On 1/15/2014 17:18, Richmond wrote:

Try this one: http://andregarzia.on-rev.com/richmond/home.html

Down?

Hosed

Richmond.



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your 
subscription preferences:

http://lists.runrev.com/mailman/listinfo/use-livecode



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: What is going on with irev based websites?

2014-01-15 Thread Richmond

On 15/01/14 18:29, Mark Schonewille wrote:

Hi Richmond,

It is not down.

http://andregarzia.on-rev.com/richmond/

works, but other links on your website are broken. Perhaps André knows 
what's going on.


--
Best regards,

Mark Schonewille



And if you go here: http://andregarzia.on-rev.com/richmond/LANGTOOLS.html

You can start teaching yourself how to write letters to your Mum in Old 
Church Slavonic, using either

Old Cyrillic or Glagolitic . . .

. . . after all; everybody out there has nothing better to do with their 
time . . . cough, cough.


Richmond.

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: What is going on with irev based websites?

2014-01-15 Thread Keith Clarke
Hi folks,
There seems to be a DNS server failure at RunRev and their hosting company - 
try your site on here to confirm http://www.intodns.com
I’ve emailed support and am waiting on feedback.
Best,
Keith..

On 15 Jan 2014, at 16:53, Richmond richmondmathew...@gmail.com wrote:

 On 15/01/14 18:29, Mark Schonewille wrote:
 Hi Richmond,
 
 It is not down.
 
 http://andregarzia.on-rev.com/richmond/
 
 works, but other links on your website are broken. Perhaps André knows 
 what's going on.
 
 Well; seems alright now; except for the Links page.
 
 
 -- 
 Best regards,
 
 Mark Schonewille
 
 Economy-x-Talk Consulting and Software Engineering
 Homepage: http://economy-x-talk.com
 Twitter: http://twitter.com/xtalkprogrammer
 KvK: 50277553
 
 Use Color Converter to convert CMYK, RGB, RAL, XYZ, H.Lab and other colour 
 spaces. http://www.color-converter.com
 
 Buy my new book Programming LiveCode for the Real Beginner 
 http://qery.us/3fi
 
 Fill out this survey please
 http://livecodebeginner.economy-x-talk.com/survey/
 
 On 1/15/2014 17:18, Richmond wrote:
 Try this one: http://andregarzia.on-rev.com/richmond/home.html
 
 Down?
 
 Hosed
 
 Richmond.
 
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode
 
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Apple Push Notification error after uploading app with LC 6.5.1

2014-01-15 Thread William de Smet
Hi there,

Today I uploaded a new app made with LC 6.5.1 for iOS 6.1 and later (no
special settings and no externals).
All went fine but after uploading I received this e-mail from Apple:

Missing Push Notification Entitlement - Your app appears to include API
used to register with the Apple Push Notification service, but the app
signature's entitlements do not include the aps-environment entitlement.
If your app uses the Apple Push Notification service, make sure your App ID
is enabled for Push Notification in the Provisioning Portal, and resubmit
after signing your app with a Distribution provisioning profile that
includes the aps-environment entitlement. See Provisioning and
Development in the Local and Push Notification Programming Guide for more
information. If your app does not use the Apple Push Notification service,
no action is required. You may remove the API from future submissions to
stop this warning. If you use a third-party framework, you may need to
contact the developer for information on removing the API.

If you would like to update your binary for this app, you can reject this
binary from the Binary Details page in iTunes Connect. Note that rejecting
your binary will remove your app from the review queue and the review
process will start over from the beginning when you resubmit your binary.


In the provisioning file I did not include 'Push notifications'.
Is this a bug in LC 6.5.1?

greetings,

William
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


[OT] boasting

2014-01-15 Thread Richmond
Uploaded first DEMO; well proud: go and get it: 
http://andregarzia.on-rev.com/richmond/LANGTOOLS.html 
http://www.facebook.com/l.php?u=http%3A%2F%2Fandregarzia.on-rev.com%2Frichmond%2FLANGTOOLS.htmlh=qAQGQN91lenc=AZPR_asnzdPu9_XX8wJSPgyq-PYn_ffcoOrfY3NfU2yvGzTVzbDTLcYoxytnST_K0MzYKag7StW0kGiUHqwG8cmcBv-xNsNqNCuYFXGJ3Fg4J5hSoshx8W8_Lc7UjT38QE0kQN2O7CNIoTnvlCwqVcjkrrxzqf_n7pefkr28yY0Mhws=1


Richmond.
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Saving Stack Changes

2014-01-15 Thread Peter Bogdanoff
Hi,

A general question:

I have a stack containing some substacks. I make changes in 2 of the substacks. 
I save. Is the current substack saved only, or are all of the other changed 
substacks saved as well?

Peter Bogdanoff
UCLA
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Saving Stack Changes

2014-01-15 Thread Mark Schonewille

Hi Peter,

The substacks are part of the same file as the mainstack. Every time 
when you save a (sub)stack, the entire file is saved to disk, including 
the mainstack and all substacks of that mainstack.


--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

Use Color Converter to convert CMYK, RGB, RAL, XYZ, H.Lab and other 
colour spaces. http://www.color-converter.com


Buy my new book Programming LiveCode for the Real Beginner 
http://qery.us/3fi


Fill out this survey please
http://livecodebeginner.economy-x-talk.com/survey/

On 1/15/2014 21:26, Peter Bogdanoff wrote:

Hi,

A general question:

I have a stack containing some substacks. I make changes in 2 of the substacks. 
I save. Is the current substack saved only, or are all of the other changed 
substacks saved as well?

Peter Bogdanoff
UCLA



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: LiveCode Server and Getting a List of Files in a Folder

2014-01-15 Thread Gregory Lypny
Hi Richard, Robert, and Stephen,

Thank you for responding. Richard, I am going to try your suggestion, namely, 
saving the default folder path:

on listMyFiles
   put the default folder into tSaveDir
   set the default folder to someFolderPath
   get the files
   set the default folder to tSaveDir
   put it
end listMyFiles


I did have a line in my handler that reset the default folder but I was 
resetting it incorrectly to either empty (on my first attempt) or / (on my 
second). And Richard, you are right, I was messing up the normal path.

Thanks again,

Gregory


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Saving Stack Changes

2014-01-15 Thread Phil Davis

Hi Peter,

save replaces the existing .livecode stackfile on disk with a complete 
copy of the one in memory, so everything in the stackfile is saved. 
(mainstack, substacks, custom properties, imported images, etc.)


Phil Davis


On 1/15/14, 12:26 PM, Peter Bogdanoff wrote:

Hi,

A general question:

I have a stack containing some substacks. I make changes in 2 of the substacks. 
I save. Is the current substack saved only, or are all of the other changed 
substacks saved as well?

Peter Bogdanoff
UCLA
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode



--
Phil Davis


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Antialiased vector graphics in LiveCode 6.5.1

2014-01-15 Thread Alejandro Tejada
william humphrey-2 wrote
 I reported a bug about six months ago with imported images. 
 [snip]

Mark Waddingham already noticed:
http://quality.runrev.com/show_bug.cgi?id=11673

About bitmap images, I noticed that animated Gif
could be resized :D
and the Dictionary needs update:
http://docs.runrev.com/Object/image








--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Antialiased-vector-graphics-in-LiveCode-6-5-1-tp4674704p4674728.html
Sent from the Revolution - User mailing list archive at Nabble.com.

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: [OT] boasting

2014-01-15 Thread Alejandro Tejada
Congratulations, Richmond! :D



--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/OT-boasting-tp4674723p4674729.html
Sent from the Revolution - User mailing list archive at Nabble.com.

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


pageHeights ignores new line properties in fields?

2014-01-15 Thread David Epstein
I find that the pageHeights function does not take account of the  
newer lines-in-fields properties like padding, spaceAbove,  
spaceBelow, etc.  If I set the scroll of the field to line 1 of the  
pageHeights of that field, it will ordinarily put the first line of  
page 2 at the top of the field.  But if I have, say, set the  
padding of line 3 of that field to 15, setting the scroll in this way  
may result in only the bottom half of a line of text appearing at the  
top of the field.  (It might accidentally work properly for some  
cases, but trying a few different values illustrates the problem.)


Can anyone confirm this, and has anyone already scripted a workaround?

Thanks very much.

David Epstein

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Antialiased vector graphics in LiveCode 6.5.1

2014-01-15 Thread william humphrey
Mark Waddingham also on mine?

http://quality.runrev.com/show_bug.cgi?id=11402

On Wed, Jan 15, 2014 at 8:18 PM, Alejandro Tejada
capellan2...@gmail.com wrote:
 william humphrey-2 wrote
 I reported a bug about six months ago with imported images.
 [snip]

 Mark Waddingham already noticed:
 http://quality.runrev.com/show_bug.cgi?id=11673

 About bitmap images, I noticed that animated Gif
 could be resized :D
 and the Dictionary needs update:
 http://docs.runrev.com/Object/image








 --
 View this message in context: 
 http://runtime-revolution.278305.n4.nabble.com/Antialiased-vector-graphics-in-LiveCode-6-5-1-tp4674704p4674728.html
 Sent from the Revolution - User mailing list archive at Nabble.com.

 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode



-- 
http://www.bluewatermaritime.com

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Error importing PBM and PGM image

2014-01-15 Thread Alejandro Tejada
Hi All,

I just filed this bug in the Quality Center:
http://quality.runrev.com/show_bug.cgi?id=11675

Error importing PBM and PGM image

The report include a zipped Folder with one stack 
and three images (pbm, pgm, pnm)

https://dl.dropboxusercontent.com/u/3834621/LiveCode_pbm_pgm_image_error.zip

1) Use the sample stack to import pbm and pgm images found in folder.
2) pbm and pgm image files are not imported.
3) LiveCode becomes unresponsive
4) LiveCode processor usage shoots to 50% or more
5) Tested under Lubuntu Linux 13.10

If your own tests shows different results, please report.

Al



--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Error-importing-PBM-and-PGM-image-tp4674732.html
Sent from the Revolution - User mailing list archive at Nabble.com.

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


ISAM algorithm

2014-01-15 Thread Cal Horner
I have set up an ISAM data substack to control how data from a stack-file is
displayed. And yes I know it's reaching back into history to use it, But

Anyway, my algorithm is a bit clunky. So I'm looking for instruction and
examples of any other ISAM methods. So it will be nice and simple but
beautiful.

Any Ideas on ISAM or suggestions for the same?
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: ISAM algorithm

2014-01-15 Thread Richard Gaskin

Cal Horner wrote:

I have set up an ISAM data substack to control how data from a stack-file is
displayed. And yes I know it's reaching back into history to use it, But

Anyway, my algorithm is a bit clunky. So I'm looking for instruction and
examples of any other ISAM methods. So it will be nice and simple but
beautiful.

Any Ideas on ISAM or suggestions for the same?


Good to see you here, Cal.  Seems like it's been a few months.

I've had a hobby of playing with custom data stores, and while I haven't 
spent much time with ISAM (I prefer to waste disk space in less 
interesting ways g), maybe some of what I've been experimenting with 
could be useful.


Data storage and display is such a broad topic - can you share some 
specifics of what you have thus far?


And if the data is being stored in a stack file, why ISAM over something 
like delimited chunks in custom props?


--
 Richard Gaskin
 Fourth World
 LiveCode training and consulting: http://www.fourthworld.com
 Webzine for LiveCode developers: http://www.LiveCodeJournal.com
 Follow me on Twitter:  http://twitter.com/FourthWorldSys

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


RELEASE: rIDE 3.0

2014-01-15 Thread Mats Wilstrand
Dear All!

I'm pleased to announce rIDE 3.0!
This is a main release with a lot of work under the hood and a handful of
new features:

New Top Bar with fast toggle buttons for Tools Palette, Property Inspector,
Script Editor, Dictionary and Preferences.
Collapsible Browser Tree Area.
New Bottom Bar with script execution similar to the Message Box
New Tools Palette with resizing, filtering and categories.
Underlying framework extended to prepare for a Publish and Subscribe plugin
system.
Lots of minor fixes.

rIDE 3.0 requires LiveCode 6.0 or higher to make full use of the new
features.

Please download from http://www.tapirsoft.on-rev.com/ride

With my best regards

Mats


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode