Re: gjpqy cut off while typing

2015-10-01 Thread BNig
Hi Paul,

I like your idea to use textshift for screenrefresh, no fiddling with
selectedChunk etc.

Just one little change to your code in case textshift has not been set
before. Then textShift would be empty.
Adding 0 to it will not change previous text shift and if textShift has not
been set it will not throw an error.
And a textShift of 0 does not accumulate "textShifts" in
styledText/htmlText.

--
on textChanged
   set the textShift of last char of me to the textShift of last char of me
+0
end textChanged
--

Kind regards
Bernd


Paul Hibbert-4 wrote
> I wondered if the textShift would help and found this works too;
> 
> on textChanged
>set the textShift of last char of me to the textShift of last char of
> me
> end textChanged





--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/gjpqy-cut-off-while-typing-tp4696789p4696799.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: use-livecode Digest, Vol 145, Issue 1

2015-10-01 Thread bernd . gottwald
Bis zum 12.10.2015 bin ich nicht verfügbar. Ich werde meine Emails nicht lesen. 
In dringenden Fällen erreichen Sie mich über mein Mobiltelefon.

I will be out of office until 12.10.2015. I won't read me emails. In urgent 
matter please call me on my mobile.




___
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: gjpqy cut off while typing

2015-10-01 Thread BNig
One curious observation regarding descents with large textSizes

Regardless of workaround or not: in LC 7.1 when tabbing out of the field the
first 3 letters get their descents "cut off". However if you click outside
of the field to take focus from it everything looks fine.
This affects textSizes of 60, textsize 48 is ok with regards to tabbing out
of the field. (using comic-sans bold)

This does not affect LC 6.7.7 rc 4 nor LC 6.1.3.

So there are two bugs when rendering large fontsizes with descents
The first one affects typing: while typing the descents are not fully
rendered (this can be worked around)
The second affects only LC 7.1: tabbing out of a field cuts off the descents
of the first three letters. (this one I don't know a workaround for) 

Of note:
In LC 8 dp 5 everything works without a hitch, no workaround needed. All
descents are rendered when typing and also when tabbing out of the field.

Sorry if this almost has the length of a Bug-report. :) I did all my testing
on a Mac.

Kind regards
Bernd



BNig wrote
> Hi Paul,
> 
> I like your idea to use textshift for screenrefresh, no fiddling with
> selectedChunk etc.
> 
> Just one little change to your code in case textshift has not been set
> before. Then textShift would be empty.
> Adding 0 to it will not change previous text shift and if textShift has
> not been set it will not throw an error.
> And a textShift of 0 does not accumulate "textShifts" in
> styledText/htmlText.
> 
> --
> on textChanged
>set the textShift of last char of me to the textShift of last char of
> me +0
> end textChanged
> --
> 
> Kind regards
> Bernd
> Paul Hibbert-4 wrote
>> I wondered if the textShift would help and found this works too;
>> 
>> on textChanged
>>set the textShift of last char of me to the textShift of last char of
>> me
>> end textChanged





--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/gjpqy-cut-off-while-typing-tp4696789p4696801.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: What's everyone working on this month? (September 2015 edition)

2015-10-01 Thread David V Glasgow
I am working on v 3.0 of an assessment of paedophile sexual interest for 
professionals working with sex offenders.

I’m sweating a bit because it has to be ready for the Association for the 
Treatment of Sexual Abusers conference in Montreal starting week of 11th Oct.

Im working on the manual just now, using another LC product, what used to be 
Blue Mango’s ScreenSteps.  Not sure what happened to Blue Mango, but for 
documenting a product, it’s the bees knees.  (ScreenSteps is nothing to do with 
me, just a happy user.)

David Glasgow
___
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: Inter process communication

2015-10-01 Thread Pierre Sahores
Hello,

Works perfectly in a 100% reliable mode for years :

- Mobile App : HTTP POST to Apache or OpenLiteSpeed Http Deamon
- httpd to Linux LC server in cgi mode
- LC server to MySQL/INNODB or PostgreSQL RDBMS*

*needed to free-up LC-Server from complex requests best suited by ACID-SQL 
servers.

Note1 : in case of Web dedicated development : not to forget to include 
Revigniter in the loop.

Note2 : to code with optimal confort LC-Server stack’s librairies :

- first save them at the web hosting right path;
- reopen them from the FTP-client in choosing LC-Desktop IDE as the default 
editor;
- each command-S action will directly saves changes to the remote path.
- don’t forget to use an LC script.lc to bind together the httpd to the 
LC-Server stack lib.

Have fun,
--
Pierre Sahores
mobile : 06 03 95 77 70
www.sahores-conseil.com

> Le 1 oct. 2015 à 08:24, Ethan L  a écrit :
> 
> Greetings 
> Has anyone done any work on inter process communications between two livecode 
> instances. 
> Specifically, I would like to be able to have a client instance (eg iPhone LC 
> app) make native LC commands calls to a remote instance (eg UNIX LC server) 
> while masking / embedding all of the plumbing (eg pipe establishment, 
> authentication, session encryption, etc). 
> This idealized two tier architecture would seperate the solution 
> (application) developer logic from the administrative logic. Hopefully 
> isolating the configuration details outside of the application into a 
> configuration manifest / file which could then be runtime manipulated / 
> selected based upon conditions at that time. 
> Yes, one could accomplish this through a combination of LC, JSON, SQL, etc. I 
> am hoping to achieve an end to end LC solution. 
> One could then easily leverage server based resources in a n-tier distributed 
> compute architecture while maintaining the benefits a high level language to 
> deliver a flexible elegant solution 
> Thanks in advanceEthan
> 
> et...@lish.net
> 240.876.1389
> ___
> 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's everyone working on this month? (September 2015 edition)

2015-10-01 Thread Trevor DeVore
On Thu, Oct 1, 2015 at 6:22 AM, David V Glasgow  wrote:

>
> Im working on the manual just now, using another LC product, what used to
> be Blue Mango’s ScreenSteps.  Not sure what happened to Blue Mango, but for
> documenting a product, it’s the bees knees.  (ScreenSteps is nothing to do
> with me, just a happy user.)
>

Hi David,

ScreenSteps is alive and well. It just grew into a SASS product that
companies use for larger support, onboarding, and education projects.

http://www.screensteps.com

I'm actually working on the next major update to the desktop software
component of ScreenSteps. It is used for authoring help articles. I'm
writing it in LiveCode 8.

-- 
Trevor DeVore
ScreenSteps
www.screensteps.com-www.clarify-it.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's everyone working on this month? (September 2015 edition)

2015-10-01 Thread Roger Eller
All of my real work is creating and managing in-house applications.  We are
an international company, but my primary focus is improving business
efficiency locally, and in some capacity in my region.

My latest app provides an interface to gather work orders for 5 sites in my
region, and download all required files to produce those orders from a
centrally managed server.  This eliminates the errors associated with
manual processes such as going through the server filesystem and dragging
files from thousands of folders.  Files were constantly being lost, and
folders were lost inside other unrelated folders.  Now, the system is
clean, efficient, and accurate thanks to LiveCode.  No human hands access
the server now.  Just the app.
On Sep 28, 2015 2:09 PM, "Peter TB Brett"  wrote:

> Hi all,
>
> I'm really interested to hear about what you're working on at the moment.
> The community always seems to have a huge, exciting and varied range of
> projects going on, and it's great to hear how people are using LiveCode for
> work, for hobbies, for learning or for play!
>
>
>
> I'll start:
>
> 1. I've been working on the HTML5 engine.  For the last couple of weeks,
> I've been focussed on getting LiveCode Builder (i.e. widgets) working in
> HTML5, and it's been an often rather frustrating business, because it's
> really hard to debug asm.js code running in the browser!  Every time I
> think I've nailed the last bug, another one jumps out of the woodwork.
> However, I'm feeling hopeful that by the time of the Global Jam next week,
> everyone will be able to use widgets in the browser.  And after that,
> commercial HTML5...
>
> 2. I've added a new test framework to the repository that lets us write
> script-only test stacks and run them automatically for every proposed
> change.  Now I need to get contributors to write tests!
>
>
>
> What have you been working on?
>
>  Peter
>
> --
> Dr Peter Brett 
> LiveCode Open Source Team
>
> LiveCode on reddit! 
>
> ___
> 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 Color Picker is Screwed Up in El Capitan!!

2015-10-01 Thread Roger Guay
I just installed El Capitan and found that the Apple Color picker is screwed up 
. . . the color samples go away after one use. And yes, so is the ColorSync 
Utility.

I offer my colorPiquer utility in the interim:


https://www.dropbox.com/s/1arbh6jlm35u68z/colorPiquer.livecode?dl=0 




 Control-click “p”  to palletize, and control-click “e” to edit.




Cheers,

Roger
___
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 Color Picker is Screwed Up in El Capitan!!

2015-10-01 Thread Colin Holgate
Are you talking about the square to the left of the eye dropper, and how it’s 
white if you reopen the color picker? Was it ever different from that? You can 
drag a color you want to keep around into one of the little squares to the 
right. Then the color is still there next time.


> On Oct 1, 2015, at 2:32 PM, Roger Guay  wrote:
> 
> I just installed El Capitan and found that the Apple Color picker is screwed 
> up . . . the color samples go away after one use. And yes, so is the 
> ColorSync Utility.
> 
> I offer my colorPiquer utility in the interim:
> 
> 
> https://www.dropbox.com/s/1arbh6jlm35u68z/colorPiquer.livecode?dl=0 
> 
> 
> 
> 
> Control-click “p”  to palletize, and control-click “e” to edit.
> 
> 
> 
> 
> Cheers,
> 
> Roger

___
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 Color Picker is Screwed Up in El Capitan!!

2015-10-01 Thread John Dixon

Apple Colour Picker is working fine here... OSX 10.11, LC 7.1


> From: i...@mac.com
> Subject: Apple Color Picker is Screwed Up in El Capitan!!
> Date: Thu, 1 Oct 2015 11:32:14 -0700
> To: use-livecode@lists.runrev.com
> 
> I just installed El Capitan and found that the Apple Color picker is screwed 
> up . . . the color samples go away after one use. And yes, so is the 
> ColorSync Utility.
> 
> I offer my colorPiquer utility in the interim:
> 
> 
> https://www.dropbox.com/s/1arbh6jlm35u68z/colorPiquer.livecode?dl=0 
> 
> 
> 
> 
>  Control-click “p”  to palletize, and control-click “e” to edit.
> 
> 
> 
> 
> Cheers,
> 
> Roger
> ___
> 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: Apple Color Picker is Screwed Up in El Capitan!!

2015-10-01 Thread Roger Guay
Thank you Colin and John,

I went back to review my situation: The top part of the color picker, the 
crayons in particular, disappear after one use in LC 6.6.5 OS X 10.11. No 
problems with LC 6.7.6 nor 7.0.6.

But, the Apple ColorSync Utility is out on my rMBP! Is it working for you guys?

Roger





> On Oct 1, 2015, at 11:46 AM, John Dixon  wrote:
> 
> 
> Apple Colour Picker is working fine here... OSX 10.11, LC 7.1
> 
> 
>> From: i...@mac.com
>> Subject: Apple Color Picker is Screwed Up in El Capitan!!
>> Date: Thu, 1 Oct 2015 11:32:14 -0700
>> To: use-livecode@lists.runrev.com
>> 
>> I just installed El Capitan and found that the Apple Color picker is screwed 
>> up . . . the color samples go away after one use. And yes, so is the 
>> ColorSync Utility.
>> 
>> I offer my colorPiquer utility in the interim:
>> 
>> 
>> https://www.dropbox.com/s/1arbh6jlm35u68z/colorPiquer.livecode?dl=0 
>> 
>> 
>> 
>> 
>> Control-click “p”  to palletize, and control-click “e” to edit.
>> 
>> 
>> 
>> 
>> Cheers,
>> 
>> Roger
>> ___
>> 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: Livecode V8.0 (dp 5) problem

2015-10-01 Thread William Prothero
I reported this as a bug.
Bill

> On Sep 30, 2015, at 12:42 PM, William Prothero  
> wrote:
> 
> folks:
> I have a simple splash stack that will load another stack when I click on a 
> button. If I click “Save” to save any changes, the “saving” dialog comes up 
> and doesn’t go away. I can quite LC normally, but it’s impossible to go on.
> 
> This “Save” operation works fine with V8.0 dp4. I also have Berndt’s BvG Docu 
> 2 document plugin and it hangs with a “Please wait ……” window. 
> 
> Anybody else see this? Is there something I’m missing?
> Bill
> 
> 
> William A. Prothero
> http://es.earthednet.org/
> 
> ___
> 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: Apple Color Picker is Screwed Up in El Capitan!!

2015-10-01 Thread Colin Holgate
Don’t know how to use the ColorSync Utility, but it opens ok. The crayons are 
working fine in LC 7.1.


> On Oct 1, 2015, at 3:01 PM, Roger Guay  wrote:
> 
> Thank you Colin and John,
> 
> I went back to review my situation: The top part of the color picker, the 
> crayons in particular, disappear after one use in LC 6.6.5 OS X 10.11. No 
> problems with LC 6.7.6 nor 7.0.6.
> 
> But, the Apple ColorSync Utility is out on my rMBP! Is it working for you 
> guys?
> 
> Roger
> 
> 
> 
> 
> 
>> On Oct 1, 2015, at 11:46 AM, John Dixon  wrote:
>> 
>> 
>> Apple Colour Picker is working fine here... OSX 10.11, LC 7.1
>> 
>> 
>>> From: i...@mac.com
>>> Subject: Apple Color Picker is Screwed Up in El Capitan!!
>>> Date: Thu, 1 Oct 2015 11:32:14 -0700
>>> To: use-livecode@lists.runrev.com
>>> 
>>> I just installed El Capitan and found that the Apple Color picker is 
>>> screwed up . . . the color samples go away after one use. And yes, so is 
>>> the ColorSync Utility.
>>> 
>>> I offer my colorPiquer utility in the interim:
>>> 
>>> 
>>> https://www.dropbox.com/s/1arbh6jlm35u68z/colorPiquer.livecode?dl=0 
>>> 
>>> 
>>> 
>>> 
>>> Control-click “p”  to palletize, and control-click “e” to edit.
>>> 
>>> 
>>> 
>>> 
>>> Cheers,
>>> 
>>> Roger
>>> ___
>>> 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


Re: Apple Color Picker is Screwed Up in El Capitan!!

2015-10-01 Thread Roger Guay
Yes, crayons work fine in my LC 7.1 as well.

The Apple ColorSync Utility is available in the Utilities Folder. I get a 
Profile First Aid pane when I try to use it. However, repairs do not work 
because files are locked.



Thanks!



> On Oct 1, 2015, at 12:11 PM, Colin Holgate  wrote:
> 
> Don’t know how to use the ColorSync Utility, but it opens ok. The crayons are 
> working fine in LC 7.1.

___
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 Color Picker is Screwed Up in El Capitan!!

2015-10-01 Thread Colin Holgate
Getting info and setting read & write access let them be repaired.


> On Oct 1, 2015, at 3:20 PM, Roger Guay  wrote:
> 
> Yes, crayons work fine in my LC 7.1 as well.
> 
> The Apple ColorSync Utility is available in the Utilities Folder. I get a 
> Profile First Aid pane when I try to use it. However, repairs do not work 
> because files are locked.
> 
> 
> 
> Thanks!
> 
> 
> 
>> On Oct 1, 2015, at 12:11 PM, Colin Holgate  wrote:
>> 
>> Don’t know how to use the ColorSync Utility, but it opens ok. The crayons 
>> are working fine in LC 7.1.
> 


___
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 Color Picker is Screwed Up in El Capitan!!

2015-10-01 Thread Roger Guay
Thank you , Colin!


> On Oct 1, 2015, at 12:30 PM, Colin Holgate  wrote:
> 
> Getting info and setting read & write access let them be repaired.
> 
> 
>> On Oct 1, 2015, at 3:20 PM, Roger Guay  wrote:
>> 
>> Yes, crayons work fine in my LC 7.1 as well.
>> 
>> The Apple ColorSync Utility is available in the Utilities Folder. I get a 
>> Profile First Aid pane when I try to use it. However, repairs do not work 
>> because files are locked.
>> 
>> 
>> 
>> Thanks!
>> 
>> 
>> 
>>> On Oct 1, 2015, at 12:11 PM, Colin Holgate  wrote:
>>> 
>>> Don’t know how to use the ColorSync Utility, but it opens ok. The crayons 
>>> are working fine in LC 7.1.
>> 
> 
> 
> ___
> 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: Apple Color Picker is Screwed Up in El Capitan!!

2015-10-01 Thread Sannyasin Brahmanathaswami
Roger: even on Yosemite, the apple color wheel invoked by LC does not give you 
the correct RGB value when you use it’s eye dropper… it appears to work, but 
the hue is 2-3 “degrees" down on the gray scale from the actual color… this is 
not LC’s fault (at least I don’t think so…) : tested in photoshop, illustrator, 
inDesign and LC… the color that is picked up is *not* the precise color that it 
was on…

I used Eric Chatonet’s color picker and that eyedropper gives the *real* RGB 
value of the color it picks up. 

So, even if it worked in El Capitan… I wouldn’t trust it. 
WYSINWYG  What You See is Not What You Get.

I’m going try your piquer… thanks for sharing.

BR



Roger wrote:

>I just installed El Capitan and found that the Apple Color picker is screwed 
>up . . . the color samples go away after one use. And yes, so is the ColorSync 
>Utility.
___
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