Re: OT: Web Server-side ID3 Tagger

2014-12-16 Thread Matthias Rebbe | M-R-D
Hi Brahmanathaswami,

there is a ID3 library for livecode the late Mark Smith created in 2009.

You can find it here
http://marksmith.on-rev.com/revstuff/files/

Maybe it is of some help for you.

Regards,

Matthias


Matthias Rebbe
Bramkampsieke 13
32312 Lübbecke
Tel +49 5741 31
+49 160 5504462
Fax: +49 5741 310002
eMail: matth...@m-r-d.de mailto:matth...@m-r-d.de

BR5 Konverter - BR5 - MP3 http://matthiasrebbe.eu/portfolio/produkte/brx/
 Am 16.12.2014 um 07:24 schrieb Brahmanathaswami bra...@hindu.org:
 
 I need to set the ID3 tags for MP3 files that have already been uploaded to 
 our web server.
 
 typically my approach is to create a thin desktop client, which can read our 
 media database from the web server... then I need to send a POST back to my 
 MusicAPI.lc  which in turn then passes some params to [The ID3 Tagger 
 program] via shell
 
 path to file
 artist
 author
 genre
 album
 date
 title
 
 locally on a mac this is as simple as getting info in iTunes, adding the ID3 
 metadata and iTunes writes it back to the same .mp3 file (or aiff)
 
 Does anyone know of a *nix program that can do the same, that I can call from 
 shell (would run on CentOS 6.2)
 
 Swasti Astu, Be Well!
 Brahmanathaswami
 
 Kauai's Hindu Monastery
 www.HimalayanAcademy.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

___
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: LiveCode 7.0.1 RC4

2014-12-16 Thread Benjamin Beaumont
Dear List Members,

We're pleased to announce the release of LiveCode 7.0.1 RC4. This is a
maintenance release focusing on bug fixes and refinement.

Release Contents
This release contains 23 bug fixes (14 of which were fixes applied to 6.7
RC4). The most notable fix relates to 100% CPU usage in specific
circumstances in LiveCode 6.7 which as a result was also effecting LiveCode
7.0.1.

For a full list of the bugs fixed in this release please see the release
notes:
http://downloads.livecode.com/livecode/7_0_1/LiveCodeNotes-7_0_1_rc_4.pdf

Getting the Release
To get the release please select check for updates from the help menu
in the product or download the installer directly at:
http://downloads.livecode.com

Feeding Back
If you encounter any issues while working with the release please help us
by creating a report in our quality control center at:
http://quality.runrev.com/

Special thanks to Trevor Devore for working with us to find and fix the
100% cpu issue.

Warm regards,

The LiveCode Team
___
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


Vertically aligning text in a field

2014-12-16 Thread Terence Heaford
Is there a definitive calculation that correctly sets the position of text 
vertically in a field?

I am using LC 6.7.

I have come across a few ideas like the one below that all appear to use an 
arbitrary offset to the margins, is there a method to calculate this accurately?

   put the effective textSize of fld id tID into tTextSize
   --   put round (((tTextSize - 22) * 1/3)) into tOffset
   put round (((tTextSize - 24) * 1/3)) into tOffset
   put the formattedheight of char 1 to - 1 of fld id tID into tFormattedHeight
   put round((the height of fld id tID - tFormattedHeight) / 2) into 
tVerticalMargins
   put tVerticalMargins - tOffset into tTopMargin
   put tVerticalMargins + tOffset into tBottomMargin
   set the margins of fld id tID to 8,tTopMargin,8,tBottomMargin

All the best

Terry
___
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: Vertically aligning text in a field

2014-12-16 Thread Mark Schonewille

Hi Terry,

There's a long discussion about this on the forum. I believe I did a 
good attempt, but Bernd's solution was probably the most reliable.


--
Best regards,

Mark Schonewille

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

Installer Maker for LiveCode:
http://qery.us/468

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


LiveCode on Facebook:
https://www.facebook.com/groups/runrev/

On 12/16/2014 11:54, Terence Heaford wrote:

Is there a definitive calculation that correctly sets the position of text 
vertically in a field?

I am using LC 6.7.

I have come across a few ideas like the one below that all appear to use an 
arbitrary offset to the margins, is there a method to calculate this accurately?

put the effective textSize of fld id tID into tTextSize
--   put round (((tTextSize - 22) * 1/3)) into tOffset
put round (((tTextSize - 24) * 1/3)) into tOffset
put the formattedheight of char 1 to - 1 of fld id tID into tFormattedHeight
put round((the height of fld id tID - tFormattedHeight) / 2) into 
tVerticalMargins
put tVerticalMargins - tOffset into tTopMargin
put tVerticalMargins + tOffset into tBottomMargin
set the margins of fld id tID to 8,tTopMargin,8,tBottomMargin

All the best

Terry



___
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: Web Server-side ID3 Tagger

2014-12-16 Thread Warren Samples

On 12/16/2014 12:24 AM, Brahmanathaswami wrote:

I need to set the ID3 tags for MP3 files that have already been uploaded
to our web server.

typically my approach is to create a thin desktop client, which can read
our media database from the web server... then I need to send a POST
back to my MusicAPI.lc  which in turn then passes some params to [The
ID3 Tagger program] via shell

path to file
artist
author
genre
album
date
title

locally on a mac this is as simple as getting info in iTunes, adding the
ID3 metadata and iTunes writes it back to the same .mp3 file (or aiff)

Does anyone know of a *nix program that can do the same, that I can call
from shell (would run on CentOS 6.2)

Swasti Astu, Be Well!
Brahmanathaswami



Is id3v2 installed, or can you install it?

___
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: controlids and controlnames properties

2014-12-16 Thread Peter M. Brigham
On Dec 15, 2014, at 4:06 PM, Peter Haworth wrote:

 A few days ago I was bemoaning the fact that there wasn't a way to get a
 list of control ids or names without a repeat with x=1 to the number of
 controls of
 
 By chance, I just discovered there is a controlids property and a
 controlnames property that return the ids/names of all controls in a card
 or group.

This would be quite useful to me but when I try it in LC5.5.1:
put the controlnames of card 1 of stack someStack
I get empty. Similarly for controIDs.
Must have been introduced in a later version of LC5.5…

-- Peter

Peter M. Brigham
pmb...@gmail.com
http://home.comcast.net/~pmbrig


___
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: bug or feature in player filename?

2014-12-16 Thread Martin Koob
Hi

I pretty sure these are bugs in the new player introduced in LiveCode 6.7.

Thanks Jacqueline for the info about the result that should be returned when
a player is set to an incorrect path.  Didn't know that.  However it does
not work in LiveCode 6.7.1-rc4

I have posted a bug report for that.
[[Player]] does not return correct result when setting player filename to
invalid path or corrupt movie
http://quality.runrev.com/show_bug.cgi?id=14232


Also Timothy I noticed something odd with players retaining videos that
should have been closed.   Your message helped me realize what was
happening.  I have reported a bug for this as well.   You can try the sample
stack I uploaded and see if you get the same results to confirm this is the
same issue you are seeing.
 [[Player]] does not return correct result when setting player filename to
invalid path or corrupt movie
http://quality.runrev.com/show_bug.cgi?id=14233

The really odd thing with this one is that it retains the old video even
after you set the filename of the player to empty and there is no video
visible.  After that setting to an invalid video redisplays the video that
was previously loaded in the player.

Martin





--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/bug-or-feature-in-player-filename-tp4686748p4686829.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: Determine the LC version of an existing stack

2014-12-16 Thread Richard Gaskin

Mike Bonner wrote:
 You can also do a sneaky if you want to see the stackfileversion of
 one stack from another.

 you can: send put the stackfileversion into wherever you want it to
 go to stack stackname

I can't get that to work.  Since the stackFileVersion if a global 
property I wouldn't expect it to, but this would be handy to have so I 
gave it a shot - how did you get that to return the stack's version 
rather than the global property?


--
 Richard Gaskin
 Fourth World Systems
 Software Design and Development for the Desktop, Mobile, and the Web
 
 ambassa...@fourthworld.comhttp://www.FourthWorld.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: Determine the LC version of an existing stack

2014-12-16 Thread Mike Bonner
DOH Yep, my misunderstanding.  Though with the preserve stack file
version option in the preferences, it must be stored somewhere for that
stack. Klaus has the easiest method I guess, but i'm curious now to know
where the engine tracks which format each stack uses.  IF I can dig up how
the engine tracks the version for stacks, i'll letcha know.

On Tue, Dec 16, 2014 at 10:14 AM, Richard Gaskin ambassa...@fourthworld.com
 wrote:

 Mike Bonner wrote:
  You can also do a sneaky if you want to see the stackfileversion of
  one stack from another.
 
  you can: send put the stackfileversion into wherever you want it to
  go to stack stackname

 I can't get that to work.  Since the stackFileVersion if a global property
 I wouldn't expect it to, but this would be handy to have so I gave it a
 shot - how did you get that to return the stack's version rather than the
 global property?

 --
  Richard Gaskin
  Fourth World Systems
  Software Design and Development for the Desktop, Mobile, and the Web
  
  ambassa...@fourthworld.comhttp://www.FourthWorld.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

___
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: Determine the LC version of an existing stack

2014-12-16 Thread J. Landman Gay

On 12/16/2014, 12:18 PM, Mike Bonner wrote:

IF I can dig up how
the engine tracks the version for stacks, i'll letcha know.


I'm pretty sure it must be reading the first few bytes of the file, like 
Klaus said. As far as I know, that's the only place the info is stored.


--
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: Determine the LC version of an existing stack

2014-12-16 Thread Peter M. Brigham
On Dec 16, 2014, at 2:25 PM, J. Landman Gay wrote:

 On 12/16/2014, 12:18 PM, Mike Bonner wrote:
 IF I can dig up how
 the engine tracks the version for stacks, i'll letcha know.
 
 I'm pretty sure it must be reading the first few bytes of the file, like 
 Klaus said. As far as I know, that's the only place the info is stored.

so,
put char 1 to 8 of url (file:  the effective filename of this stack)
seems to do the trick.

-- Peter

Peter M. Brigham
pmb...@gmail.com
http://home.comcast.net/~pmbr

___
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: Determine the LC version of an existing stack

2014-12-16 Thread Mike Bonner
Got it.

In 7.0, first do this..

put the cRevGeneral[stackfileversion] of stack stackname  If its empty,
it means it was created in an earlier version of LC, and hasn't been saved
using save as legacy whatever at any point.

SO if that one is empty then get revstackfileversion(the filename of stack
stackname) which I believe does as mentioned and checks the first bytes.
However, if the file was created in 7, the first method works, and if a
stack is created with 7 and then saved as, the
cRevGeneral[stackfileversion] of the property is updated and will contain
the version.

Ah k. 6.6.2 does not have revstackfileversion(), but new stacks created
with 6.6.2 have the cRevGeneral[stackfileversion] property, so it should
work fine. (I think) Tho I was recently sent a version that had the 5.5
format, and it did NOT have the property set.  7 was able to get the
version with its revstackfile() function.

On Tue, Dec 16, 2014 at 12:25 PM, J. Landman Gay jac...@hyperactivesw.com
wrote:

 On 12/16/2014, 12:18 PM, Mike Bonner wrote:

 IF I can dig up how
 the engine tracks the version for stacks, i'll letcha know.


 I'm pretty sure it must be reading the first few bytes of the file, like
 Klaus said. As far as I know, that's the only place the info is stored.

 --
 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

___
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: Determine the LC version of an existing stack

2014-12-16 Thread Mike Bonner
For those who use multiple version, the manual way is best.

On Tue, Dec 16, 2014 at 12:42 PM, Peter M. Brigham pmb...@gmail.com wrote:

 On Dec 16, 2014, at 2:25 PM, J. Landman Gay wrote:

  On 12/16/2014, 12:18 PM, Mike Bonner wrote:
  IF I can dig up how
  the engine tracks the version for stacks, i'll letcha know.
 
  I'm pretty sure it must be reading the first few bytes of the file, like
 Klaus said. As far as I know, that's the only place the info is stored.

 so,
 put char 1 to 8 of url (file:  the effective filename of this stack)
 seems to do the trick.

 -- Peter

 Peter M. Brigham
 pmb...@gmail.com
 http://home.comcast.net/~pmbr

 ___
 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: Determine the LC version of an existing stack

2014-12-16 Thread Mike Bonner
just created a stack in lc, 4.6.3 and saved it, the
crevgeneral[stackfileversion] of stack testing reports 2.7.

On Tue, Dec 16, 2014 at 12:44 PM, Mike Bonner bonnm...@gmail.com wrote:

 For those who use multiple version, the manual way is best.

 On Tue, Dec 16, 2014 at 12:42 PM, Peter M. Brigham pmb...@gmail.com
 wrote:

 On Dec 16, 2014, at 2:25 PM, J. Landman Gay wrote:

  On 12/16/2014, 12:18 PM, Mike Bonner wrote:
  IF I can dig up how
  the engine tracks the version for stacks, i'll letcha know.
 
  I'm pretty sure it must be reading the first few bytes of the file,
 like Klaus said. As far as I know, that's the only place the info is stored.

 so,
 put char 1 to 8 of url (file:  the effective filename of this stack)
 seems to do the trick.

 -- Peter

 Peter M. Brigham
 pmb...@gmail.com
 http://home.comcast.net/~pmbr

 ___
 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: Determine the LC version of an existing stack

2014-12-16 Thread J. Landman Gay

On 12/16/2014, 2:24 PM, Mike Bonner wrote:

just created a stack in lc, 4.6.3 and saved it, the
crevgeneral[stackfileversion] of stack testing reports 2.7.


There are only three stackfileversions (well, four, but the very 
earliest stacks didn't have the property.) They are:


2.7
5.5
7.0

These represent the file format of the stack on disk, one new version 
for each time the stack structure was changed. Stack structures are not 
changed very often.


What would be more useful to me would be a property that returns what 
*engine* version the stack was last saved in. HyperCard did that, but we 
don't have such a thing, so if you need that info you have to save it 
yourself as a custom property of the stack.


--
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


postgres replication

2014-12-16 Thread Dr. Hawkins
Has anyone worked with postgres replication through livecode?  Apparently,
automatic replication is supposed to appear in 9.4, but I'd like an easy
way to keep 2-4 postgres servers reasonably synchronized until then


-- 
Dr. Richard E. Hawkins, Esq.
(702) 508-8462
___
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


Anyone wired up the Cloudinary API?

2014-12-16 Thread Geoff Canyon
I'm thinking about uploading/retrieving images, and wondering if anyone has
already done it?
___
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


7.0.1-RC4 crashing regularly

2014-12-16 Thread Dr. Hawkins
With just a few minutes in, it appears that RC4 bombs at least as
frequently as RC3 :(

-- 
Dr. Richard E. Hawkins, Esq.
(702) 508-8462
___
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: 7.0.1-RC4 crashing regularly

2014-12-16 Thread Dr. Hawkins
On Tue, Dec 16, 2014 at 2:16 PM, Dr. Hawkins doch...@gmail.com wrote:


 With just a few minutes in, it appears that RC4 bombs at least as
 frequently as RC3 :(


It may be happening during disk save--I've just gotten corrupted files of
2.2M a couple of times (full stack is 15.1M)
-- 
Dr. Richard E. Hawkins, Esq.
(702) 508-8462
___
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: 7.0.1-RC4 crashing regularly

2014-12-16 Thread Dr. Hawkins
On Tue, Dec 16, 2014 at 2:17 PM, Dr. Hawkins doch...@gmail.com wrote:


 It may be happening during disk save--I've just gotten corrupted files of
 2.2M a couple of times (full stack is 15.1M)


It is most definitely either saving when the crash happens, or it is making
a failed attempt to save when something has gone wrong.

No crash report; just OSX reporting that it quit unexpectedly.



-- 
Dr. Richard E. Hawkins, Esq.
(702) 508-8462
___
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: 7.0.1-RC4 crashing regularly

2014-12-16 Thread Eric Corbett
One of my stacks was crashing on save in 7.0.1 (rc 4). I deleted everything I 
could including script up to the point that it would not crash anymore and will 
send it to LC.

Submitted bug 14239 with a crash log.

Trevore also submitted a bug 14227 with a crash log.

- eric


On Dec 16, 2014, at 2:42 PM, Dr. Hawkins doch...@gmail.com wrote:

 On Tue, Dec 16, 2014 at 2:17 PM, Dr. Hawkins doch...@gmail.com wrote:
 
 
 It may be happening during disk save--I've just gotten corrupted files of
 2.2M a couple of times (full stack is 15.1M)
 
 
 It is most definitely either saving when the crash happens, or it is making
 a failed attempt to save when something has gone wrong.
 
 No crash report; just OSX reporting that it quit unexpectedly.
 
 
 
 -- 
 Dr. Richard E. Hawkins, Esq.
 (702) 508-8462
 ___
 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


7.0.1 redraws IDE too many times

2014-12-16 Thread Dr. Hawkins
It's been nagging at the edge of conscious for a bit, and now I see it.

I first registered that the code section moved at least twice after the
window opened.

Now I just saw some more jiggling while hovering over a variable in the IDE
trying to select it.

The screen is being redrawn *way* to many times.  Did someone forget a
lockscreen?

This would go a long way towards fixing the sluggishness problems.


-- 
Dr. Richard E. Hawkins, Esq.
(702) 508-8462
___
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: 7.0.1 redraws IDE too many times

2014-12-16 Thread Dr. Hawkins
On Tue, Dec 16, 2014 at 2:51 PM, Dr. Hawkins doch...@gmail.com wrote:

 The screen is being redrawn *way* to many times.  Did someone forget a
 lockscreen?


Another hint: with two code tabs loaded, I click into the find window, and
see the double-redrawa couple pixels to the right each time.  (both are
5k-8k line handlers)


-- 
Dr. Richard E. Hawkins, Esq.
(702) 508-8462
___
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: 7.0.1-RC4 crashing regularly

2014-12-16 Thread Dr. Hawkins
On Tue, Dec 16, 2014 at 2:46 PM, Eric Corbett e...@canelasoftware.com
wrote:

 One of my stacks was crashing on save in 7.0.1 (rc 4). I deleted
 everything I could including script up to the point that it would not crash
 anymore and will send it to LC.


In my case, it's the Background or emergency saves, rather than any that
I triggered manually.


-- 
Dr. Richard E. Hawkins, Esq.
(702) 508-8462
___
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: 7.0.1-RC4 crashing regularly

2014-12-16 Thread Dr. Hawkins
On Tue, Dec 16, 2014 at 2:56 PM, Dr. Hawkins doch...@gmail.com wrote:

 In my case, it's the Background or emergency saves, rather than any that
 I triggered manually.


I take that back; it just did on a manual save.



-- 
Dr. Richard E. Hawkins, Esq.
(702) 508-8462
___
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: 7.0.1-RC4 crashing regularly

2014-12-16 Thread Richard Gaskin

Dr. Hawkins wrote:

On Tue, Dec 16, 2014 at 2:46 PM, Eric Corbett eric at canelasoftware.com
wrote:


One of my stacks was crashing on save in 7.0.1 (rc 4). I deleted
everything I could including script up to the point that it would not crash
anymore and will send it to LC.


In my case, it's the Background or emergency saves, rather than any that
I triggered manually.


What is a background save?

--
 Richard Gaskin
 Fourth World Systems
 Software Design and Development for the Desktop, Mobile, and the Web
 
 ambassa...@fourthworld.comhttp://www.FourthWorld.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: 7.0.1-RC4 crashing regularly

2014-12-16 Thread Dr. Hawkins
On Tue, Dec 16, 2014 at 3:02 PM, Richard Gaskin ambassa...@fourthworld.com
wrote:

 What is a background save?


doesn't it periodically update the ~ rescue file, or some such?

If not, then it's recognizing a problem and attempting to save

I just triggered another one just by hitting save three times in an  editor
window. . .


-- 
Dr. Richard E. Hawkins, Esq.
(702) 508-8462
___
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: 7.0.1 redraws IDE too many times

2014-12-16 Thread J. Landman Gay

On 12/16/2014, 4:51 PM, Dr. Hawkins wrote:

It's been nagging at the edge of conscious for a bit, and now I see it.

I first registered that the code section moved at least twice after the
window opened.

Now I just saw some more jiggling while hovering over a variable in the IDE
trying to select it.

The screen is being redrawn *way* to many times.  Did someone forget a
lockscreen?

This would go a long way towards fixing the sluggishness problems.




I sure wish you'd put these things into the QCC where someone in a 
position to fix it would be made aware. The engineers won't see it here, 
and there's nothing we can do.


--
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: 7.0.1 redraws IDE too many times

2014-12-16 Thread Dr. Hawkins
On Tue, Dec 16, 2014 at 3:06 PM, J. Landman Gay jac...@hyperactivesw.com
wrote:

 I sure wish you'd put these things into the QCC where someone in a
 position to fix it would be made aware. The engineers won't see it here,
 and there's nothing we can do.


Is this enough?

It's now but 14241:

Unfortunately, I can't back this one with hard data, but I think I finally
see the pattern.

It appears that the IDE window is being excessively redrawn.

With two tabs open in the IDE editor, if I hit cmd-f for search, and then
click in the box, I can usually see the text area and line numbers jump
wtice, moments apart.  I've seen this for a while.

Today I noticed, and drew the connection, when I was hovering over a
variable value to copy it.  The line for that variable swam on the
screen, suggesting repeated redraw.

(this machine is maverick; I've seen the wiggling code on Yosemite, too)



-- 
Dr. Richard E. Hawkins, Esq.
(702) 508-8462
___
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: 7.0.1-RC4 crashing regularly

2014-12-16 Thread Dr. Hawkins
On Tue, Dec 16, 2014 at 2:46 PM, Eric Corbett e...@canelasoftware.com
wrote:

 Submitted bug 14239 with a crash log.


I added a crash log to your bug.


-- 
Dr. Richard E. Hawkins, Esq.
(702) 508-8462
___
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: 7.0.1 redraws IDE too many times

2014-12-16 Thread J. Landman Gay

On 12/16/2014, 5:13 PM, Dr. Hawkins wrote:

On Tue, Dec 16, 2014 at 3:06 PM, J. Landman Gay jac...@hyperactivesw.com
wrote:


I sure wish you'd put these things into the QCC where someone in a
position to fix it would be made aware. The engineers won't see it here,
and there's nothing we can do.



Is this enough?

It's now but 14241:

Unfortunately, I can't back this one with hard data, but I think I finally
see the pattern.

It appears that the IDE window is being excessively redrawn.

With two tabs open in the IDE editor, if I hit cmd-f for search, and then
click in the box, I can usually see the text area and line numbers jump
wtice, moments apart.  I've seen this for a while.

Today I noticed, and drew the connection, when I was hovering over a
variable value to copy it.  The line for that variable swam on the
screen, suggesting repeated redraw.

(this machine is maverick; I've seen the wiggling code on Yosemite, too)


Thanks. Hopefully it's enough, especially since there's no specific code 
that causes it. They should be able to reproduce it.


I'm glad you did that. :)

--
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: 7.0.1-RC4 crashing regularly

2014-12-16 Thread Dr. Hawkins
On Tue, Dec 16, 2014 at 3:14 PM, Dr. Hawkins doch...@gmail.com wrote:

 I added a crash log to your bug.


Just thought of something . . .

Do the other people who see this have windows spread across multiple
screens?

Just tried staying on one screen, which didn't stop the crash.

After several failed tries in a row to save a three line change, I reloaded
7.0.2.  It saved just fine, and took several cmd-s in a row.



-- 
Dr. Richard E. Hawkins, Esq.
(702) 508-8462
___
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: 7.0.1-RC4 crashing regularly

2014-12-16 Thread Eric Corbett
My issue caused LC to crash with every cmd-s. A Crash Log opened, the stack was 
saved, but corrupt, and the original was backed up using [file name].livecode~

- e


On Dec 16, 2014, at 3:46 PM, Dr. Hawkins doch...@gmail.com wrote:

 On Tue, Dec 16, 2014 at 3:14 PM, Dr. Hawkins doch...@gmail.com wrote:
 
 I added a crash log to your bug.
 
 
 Just thought of something . . .
 
 Do the other people who see this have windows spread across multiple
 screens?
 
 Just tried staying on one screen, which didn't stop the crash.
 
 After several failed tries in a row to save a three line change, I reloaded
 7.0.2.  It saved just fine, and took several cmd-s in a row.
 
 
 
 -- 
 Dr. Richard E. Hawkins, Esq.
 (702) 508-8462
 ___
 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: 7.0.1-RC4 crashing regularly

2014-12-16 Thread Richard Gaskin

Dr. Hawkins wrote:

 On Tue, Dec 16, 2014 at 3:02 PM, Richard Gaskin wrote:

 What is a background save?

 doesn't it periodically update the ~ rescue file, or some such?

 If not, then it's recognizing a problem and attempting to save

Probably the latter (almost certainly so given the subsequent posts from 
others about RC4 that have come in).


The ~ file is the first of two steps the engine takes when saving: 
whenever a save command is issues for a stack file, the engine first 
makes a backup of the last saved copy to the ~ filw, then writes a fresh 
copy into the original file name, and after completing the checksum on 
that it deletes the ~ file.


This is probably borne of Dr. Raney's Unix roots - LC originated on Unix 
where that sort of auto-backup is common.


This save bug seems like a particularly nasty regression, but the bug 
reports from Eric and Trevor hopefully RunRev will get an RC5 out ASAP.


--
 Richard Gaskin
 Fourth World Systems
 Software Design and Development for the Desktop, Mobile, and the Web
 
 ambassa...@fourthworld.comhttp://www.FourthWorld.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: 7.0.1-RC4 crashing regularly

2014-12-16 Thread Dr. Hawkins
On Tue, Dec 16, 2014 at 4:06 PM, Richard Gaskin ambassa...@fourthworld.com
wrote:

 This save bug seems like a particularly nasty regression, but the bug
 reports from Eric and Trevor hopefully RunRev will get an RC5 out ASAP.


I am now fairly certain that it became bad in RC3.

I'm using RC2 now, and have only had one crash in half an hour.


-- 
Dr. Richard E. Hawkins, Esq.
(702) 508-8462
___
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: hide / show oddities ?

2014-12-16 Thread Alex Tweedly

Thanks everyone for the suggestions, experiences, etc.

Definitely not mismatched lock / unlock, since all the other parts of 
the screen are fully updated.


I couldn't (naturally) recreate anything in a smaller sample, nor even 
reliably be sure to make it happen on demand. I finished up using a 
pattern rather like


   show grp abc
   set the vis of grp abc to true
   wait 0 millisecs with messages

every time I want to show or hide things (and had seen a problem).

No visible problems now - and no real idea how to try to track it down 
any further. I'll build an artificial deeply nested group structure in a 
stack, and randomly change the hide/show status of different groups 
within it, and test for visibility mismatches - and leave that running 
as a test. If that shows anything, I'll submit a bug report (and update 
this list for info - but I won't hold my breath :-)


Thanks again
-- Alex.



On 27/11/2014 11:13, Alan Stenhouse wrote:

Possibly mismatched lock screen / unlock screen ? (Though still seems very 
weird and sounds like a bug).


On 27/11/2014, at 11:52 AM, use-livecode-requ...@lists.runrev.com wrote:


From: Alex Tweedly a...@tweedly.net
To: How to use LiveCode use-livecode@lists.runrev.com
Subject: hide / show oddities ?
Message-ID: 5475bd91.6090...@tweedly.net
Content-Type: text/plain; charset=ISO-8859-1; format=flowed


This feels so unlikely that I wonder if I'm simply doing something wrong
- but thought I'd ask first.

I had a script which is supposed to (amongst other things) hide one
particular group. Although it usually worked OK, in some cases,
sometimes, the group would remain visible when it is not supposed to.
Trying to find this in the IDE/debugger wasn't getting anywhere, so I
reverted to using puts (but still in the IDE). I finished up after a
few iterations with some code that said


..
hide grp abcde
put here now  the vis of grp abcde CR after msg


and it output
  here now true

...
___
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


Andre Garcia's FacebookLib

2014-12-16 Thread Gerry
Hi all

Is anyone successfully using Andre Garzia's FacebookLib library on mobile?

I'm getting the following error when trying to log into Facebook from the
demo mobile app, but using my app's key - previously this was all working:

Given URL is not allowed by the Application configuration.: One or more of
the given URLs is not allowed by the App's settings. It must match the
Website URL or Canvas URL, or the domain must be a subdomain of one of the
App's domains.

I've tried to work out what the problem is - that error message is
mentioned on Stackoverload and elsewhere but only in the context of web
apps, not mobile.

I emailed Andre 3 or 4 weeks ago and he said FB had changed something and
he'd get back to me. He hasn't replied to more recent follow up emails.


Gerry
___
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: Andre Garcia's FacebookLib

2014-12-16 Thread Mark Schonewille

Gerry,

A few follow-up e-mails within 4 weeks is really too much. Try again in 
a few months. It isn't easy to fix something like this, especially if 
you're busy like Andre.


--
Best regards,

Mark Schonewille

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

Installer Maker for LiveCode:
http://qery.us/468

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


LiveCode on Facebook:
https://www.facebook.com/groups/runrev/

On 12/17/2014 05:22, Gerry wrote:

Hi all

Is anyone successfully using Andre Garzia's FacebookLib library on mobile?

I'm getting the following error when trying to log into Facebook from the
demo mobile app, but using my app's key - previously this was all working:

Given URL is not allowed by the Application configuration.: One or more of
the given URLs is not allowed by the App's settings. It must match the
Website URL or Canvas URL, or the domain must be a subdomain of one of the
App's domains.

I've tried to work out what the problem is - that error message is
mentioned on Stackoverload and elsewhere but only in the context of web
apps, not mobile.

I emailed Andre 3 or 4 weeks ago and he said FB had changed something and
he'd get back to me. He hasn't replied to more recent follow up emails.


Gerry
___
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: Andre Garcia's FacebookLib

2014-12-16 Thread Gerry
Really? I should wait a few *months*? It's a commercial product!

g

On Wed Dec 17 2014 at 5:50:12 PM Mark Schonewille 
m.schonewi...@economy-x-talk.com wrote:

 Gerry,

 A few follow-up e-mails within 4 weeks is really too much. Try again in
 a few months. It isn't easy to fix something like this, especially if
 you're busy like Andre.

 --
 Best regards,

 Mark Schonewille

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

 Installer Maker for LiveCode:
 http://qery.us/468

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

 LiveCode on Facebook:
 https://www.facebook.com/groups/runrev/

 On 12/17/2014 05:22, Gerry wrote:
  Hi all
 
  Is anyone successfully using Andre Garzia's FacebookLib library on
 mobile?
 
  I'm getting the following error when trying to log into Facebook from the
  demo mobile app, but using my app's key - previously this was all
 working:
 
  Given URL is not allowed by the Application configuration.: One or more
 of
  the given URLs is not allowed by the App's settings. It must match the
  Website URL or Canvas URL, or the domain must be a subdomain of one of
 the
  App's domains.
 
  I've tried to work out what the problem is - that error message is
  mentioned on Stackoverload and elsewhere but only in the context of web
  apps, not mobile.
 
  I emailed Andre 3 or 4 weeks ago and he said FB had changed something and
  he'd get back to me. He hasn't replied to more recent follow up emails.
 
 
  Gerry
  ___
  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: Andre Garcia's FacebookLib

2014-12-16 Thread Mark Schonewille
LiveCode is a commercial product too. Quite a few bugs were reported a 
decade ago and were not fixed.


--
Best regards,

Mark Schonewille

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

Installer Maker for LiveCode:
http://qery.us/468

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


LiveCode on Facebook:
https://www.facebook.com/groups/runrev/

On 12/17/2014 07:57, Gerry wrote:

Really? I should wait a few *months*? It's a commercial product!

g

On Wed Dec 17 2014 at 5:50:12 PM Mark Schonewille 
m.schonewi...@economy-x-talk.com wrote:


Gerry,

A few follow-up e-mails within 4 weeks is really too much. Try again in
a few months. It isn't easy to fix something like this, especially if
you're busy like Andre.

--
Best regards,

Mark Schonewille

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

Installer Maker for LiveCode:
http://qery.us/468

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

LiveCode on Facebook:
https://www.facebook.com/groups/runrev/

On 12/17/2014 05:22, Gerry wrote:

Hi all

Is anyone successfully using Andre Garzia's FacebookLib library on

mobile?


I'm getting the following error when trying to log into Facebook from the
demo mobile app, but using my app's key - previously this was all

working:


Given URL is not allowed by the Application configuration.: One or more

of

the given URLs is not allowed by the App's settings. It must match the
Website URL or Canvas URL, or the domain must be a subdomain of one of

the

App's domains.

I've tried to work out what the problem is - that error message is
mentioned on Stackoverload and elsewhere but only in the context of web
apps, not mobile.

I emailed Andre 3 or 4 weeks ago and he said FB had changed something and
he'd get back to me. He hasn't replied to more recent follow up emails.


Gerry
___
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



___
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