OT: change email address

2020-09-15 Thread JB via use-livecode
Will someone please tell  me how to change the email  address I am using to 
receive messages from the LiveCode lists?

I tried the run rev.com web link and the message I sent there failed and was 
returned.

thanks,
JB

___
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


Big Sur and Drag and drop

2020-09-15 Thread James Hale via use-livecode
Hi, 

Just a question to others using Big Sur on their Macs.

I have an app which uses drag and drop to place a list of files in a field.

I drag the folder containing the files over the list, release the mouse and 
boom the list of files appear.

Today I went to use this app on my main Mac which is also running the latest 
Big Sur beta.

Dragging over the field and the cursor turns to a grey circle with diagonal 
line, i.e. no entry/go

Launching LC and opening the original stack and sure enough, the same thing.

My question, if you are using Big Sur and have an app that uses drag and drop 
in this way (to get a listing of files in a folder) could you please see if it 
still works?

If not I will submit a bug report.

Thanks in advance.

James




___
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: Mouse messages in scrollers

2020-09-15 Thread scott--- via use-livecode
on mobile (just iOS at the moment) I’m trying to not only register a horizontal 
swipe in a UIScroller but to calculate the line in the field under the scroller 
so that I can perform a delete action. I can get the swipe but… while these 
calculations seem to work fairly well in the IDE, not so much in the simulator. 
 both the mouseH and the mouseLoc report a value but when I check it during 
scrollerDidScroll the X value is always 0 and the Y value is always the bottom 
of the screen… which of course is not particularly helpful. Am I doing 
something wrong or is this just not available when a scroller is under the 
“mouse”? Setting delayTouches and canCancelTouches to false doesn’t appear to 
change anything. 

—
Scott Morrow

Elementary Software
(Now with 20% less chalk dust!)
web   https://elementarysoftware.com/
email sc...@elementarysoftware.com
booth1 360 734 4701


> On May 21, 2020, at 1:22 PM, J. Landman Gay via use-livecode 
>  wrote:
> 
> It was "delayTouches" mostly. Default is true, I had to set it to false. I 
> also set canCancelTouches to false but didn't test how necessary that was. 
> Default for that is also true.
> 
> This allowed messages to pass through to LC, but you had to very deliberately 
> swipe, holding down a moment so the mouseDown would fire. Brian Milby came up 
> with a faster solution using something like Jim MacConnell's suggestion -- 
> make the contentRect wider than the group so that a horizontal swipe triggers 
> scrollerDidScroll. Lock direction to vertical to prevent wiggle. That proved 
> to be a the solution for a more natural swipe.
> 
> You have to branch for Android because it doesn't have a lockDirection 
> property; for that OS keep the contentRect the same width as the group. Mouse 
> messages pass through to LC automatically, which is good because the above 
> two settings don't exist on Android.
> 
> Swiping is such a normal behavior on mobile, I'd like to see an easier method 
> in LC to accomodate all this.
> 
> 
> On 5/19/20 8:00 PM, scott--- via use-livecode wrote:
>> You have probably already looked at these but here are (some of) the 
>> scroller settings I use for the below-mentioned field:
>> 
>> mobileControlSet sScrollerId, "pagingEnabled", "false"
>> mobileControlSet sScrollerId, "decelerationRate", "normal" -- fast --iOS only
>> mobileControlSet sScrollerId, "canScrollToTop", "true"
>> mobileControlSet sScrollerId, "delayTouches", "false"
>> mobileControlSet sScrollerId, "canCancelTouches", “true"
> 
> 
> -- 
> 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: Issue with dropbox

2020-09-15 Thread Bob Sneidar via use-livecode
Interesting. Not sure how far app signing goes. For instance I downloaded 
Livecode for Mac, then made the mistake of modifying 2 data grid libraries (in 
the bundle) before opening the app for the first time. This of course caused 
the system to refuse to open Livecode, but when I re-copy Livecode to my apps 
folder, once opened the first time, I can subsequently modify the libraries and 
the system will no longer balk when opening the app. 

Bob S

> On Sep 10, 2020, at 4:30 PM, JB via use-livecode 
>  wrote:
> 
> Is it possible the app refers to folder B using
> the path created when folder B was not in
> the zipped or unzipped file therefore it can
> not see folder B?
> 
> JB
> 
>> On Sep 10, 2020, at 3:42 PM, Charles Lachat via use-livecode 
>>  wrote:
>> 
>> Hi everybody,
>> 
>> A friend has accepted to test my new desktop app. I upload the app to 
>> dropbox and send a link, by e-mail, to my friend.
>> 
>> My app is in a folder "A" containing :
>> 
>> ** the app 
>> ** a folder "B" containing several text files the app needs
>> 
>> The folder "A" is zipped before uploading.
>> 
>> After downloading (friend side) and unzipping, all the files are there but 
>> the app behaves as if there were no folder "B".
>> 
>> Most of the time.
>> 
>> What am I doing wrong ? Any idee ?
>> 
>> 
>> 
>> 
>> Thanks
>> Charles Lachat
>> 
>> ===
>> iMac 2019
>> macOS 10.14
>> Livecode 9.6.0
>> 
>> 
>> 
>> ___
>> 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: knot in my brain?

2020-09-15 Thread Klaus major-k via use-livecode


> ...
> Does the trick, ouch embaRAssing!

Even more embarrassing... 8-)

--
Klaus Major
https://www.major-k.de
kl...@major-k.de


___
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: knot in my brain?

2020-09-15 Thread Drs Mark Schonewille via use-livecode

:-)

Mark Schonewille
Economy-x-Talk
https://ecxtalk.nl
https://www.nt2.nu

Programming LiveCode for the Real Beginner
http://www3.economy-x-talk.com/file.php?node=programming-livecode-for-the-real-beginner

Op 15-9-2020 om 15:34 schreef Klaus major-k via use-livecode:

Hi all,


Am 15.09.2020 um 15:30 schrieb Klaus major-k via use-livecode 
:

Hi friends,

...
repeat with i = 1 to the num of grcs
## This line:
if the short name of grc i begins with "Graphic_" then
## Gives me the error -> no such object
...
What am I overlooking?
I know do, but have no clue currently...

ignore this, of course I cannot delete an already deleted object.
...
repeat with i = the num of grcs down to 1
...
Does the trick, ouch embassing!


Best

Klaus


--
Klaus Major
https://www.major-k.de
kl...@major-k.de


___
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: knot in my brain?

2020-09-15 Thread Drs Mark Schonewille via use-livecode

Hi Klaus,

I bet the problem is in the remainder of the script, for instance 
changing layers or deleting graphics (although the latter probably not). 
If you change it to


repeat with i = 1 to the num of grcs
  if the short name of grc i beginswith "Graphic_" then put i
end repeat

do you still get an error?

Mark Schonewille
Economy-x-Talk
https://ecxtalk.nl
https://www.nt2.nu

Programming LiveCode for the Real Beginner
http://www3.economy-x-talk.com/file.php?node=programming-livecode-for-the-real-beginner

Op 15-9-2020 om 15:30 schreef Klaus major-k via use-livecode:

Hi friends,

...
repeat with i = 1 to the num of grcs
## This line:
if the short name of grc i begins with "Graphic_" then
## Gives me the error -> no such object
...
What am I overlooking?
I know do, but have no clue currently...

Thanks in advance!


Best

Klaus
--
Klaus Major
https://www.major-k.de
kl...@major-k.de


___
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: knot in my brain?

2020-09-15 Thread Klaus major-k via use-livecode
Hi all,

> Am 15.09.2020 um 15:30 schrieb Klaus major-k via use-livecode 
> :
> 
> Hi friends,
> 
> ...
> repeat with i = 1 to the num of grcs
> ## This line:
> if the short name of grc i begins with "Graphic_" then
> ## Gives me the error -> no such object
> ...
> What am I overlooking? 
> I know do, but have no clue currently...

ignore this, of course I cannot delete an already deleted object.
...
repeat with i = the num of grcs down to 1
...
Does the trick, ouch embassing!


Best

Klaus


--
Klaus Major
https://www.major-k.de
kl...@major-k.de


___
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


knot in my brain?

2020-09-15 Thread Klaus major-k via use-livecode
Hi friends,

...
repeat with i = 1 to the num of grcs
## This line:
if the short name of grc i begins with "Graphic_" then
## Gives me the error -> no such object
...
What am I overlooking? 
I know do, but have no clue currently...

Thanks in advance!


Best

Klaus
--
Klaus Major
https://www.major-k.de
kl...@major-k.de


___
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