Re: Image Offset in Frame

2017-11-15 Thread Paul Hibbert via use-livecode
For a simple rectangular crop you can just group the image and set the group bounds to the desired frame area, make sure you lock the location of the group and image, but ultimately I think the best person to answer your question would be Scott Rossi, so I’ll hand over to him…

Image Offset in Frame

2017-11-15 Thread Alejandro Tejada via use-livecode
Hi Sannyasin, > This is probably covered somewhere, but I can't find it. > In CSS we can position in image in frame with an offset like -20,-20 > In most layout programs you can move the image around inside the > frame. How can we do that with an image in LiveCode? > I can use crop, but this is

Image Offset in Frame

2017-11-15 Thread Sannyasin Brahmanathaswami via use-livecode
His is probably covered somewhere, but I can't find it. In CSS we can position in image in frame with an offset like -20,-20 In most layout programs you can move the image around inside the frame. How can we do that with an image in LiveCode? I can use crop, but this is permanent BR

Re: mouseWithin and mouseLeave problem

2017-11-15 Thread Tore Nilsen via use-livecode
But Alejandros script also works when you have scrolled up or down and release the mouse outside of the scrollbar without moving the cursor into the field area first. . Otherwise width of the scrollbar would have stayed at 30 until next time the field received a mouseLeave message > 15. nov.

Re: mouseWithin and mouseLeave problem

2017-11-15 Thread Richmond Mathewson via use-livecode
I think you are over-complicating things as this works perfectly: onmouseEnter setthescrollBarWidthofmeto120 endmouseEnter onmouseLeave setthescrollBarWidthofmeto0 endmouseLeave Richmond. On 15/11/17 11:05 pm, Alejandro Tejada via use-livecode wrote: Today, while trying to

mouseWithin and mouseLeave problem

2017-11-15 Thread Alejandro Tejada via use-livecode
Today, while trying to understand why my own code does not work, I learned about the text field scrollbarWidth property. :-) 1) create a new stack 2) create/insert/drag and drop a scrolling text field in this new stack 3) edit the text field script and insert these handlers: --

RE: Testing Bandwidth with new TSNet Functions

2017-11-15 Thread Ralph DiMola via use-livecode
Sannyasin, This is what I'm going to try to deal with the moving in/out of services issues. I have not done this yet but will try in the next week or 2. 1) Talk to my web service and see if there is a reasonably fast connection. 2) If so then use asynchronous TSNet to download data in the

Re: mouseWithin and mouseLeave problem

2017-11-15 Thread Kaveh Bazargan via use-livecode
Thanks bob. I replied to your first response. Mouserelease sounds good. I didn't know if it and will try later. On Wed, 15 Nov 2017 at 17:53, Kaveh Bazargan < ka...@rivervalleytechnologies.com> wrote: > No :-( > > On 15 November 2017 at 17:48, Bob Sneidar via use-livecode < >

RE: Specialty Fonts on Mobile -- OK? or Stay Away?

2017-11-15 Thread Ralph DiMola via use-livecode
Brahmanathaswami, I have had no problems using TT and OT fonts on both mobile platforms. I put them into a folder and include that folder in the "Standalone Settings" "Copy Files" pane. Type 1 fonts are not supported. TT and OT fonts work well. You have to rename the extension of OTF fonts

Re: Specialty Fonts on Mobile -- OK? or Stay Away?

2017-11-15 Thread Mike Kerner via use-livecode
We've bundled fonts in order to get various icons. So far no problems. On Wed, Nov 15, 2017 at 12:34 PM, Sannyasin Brahmanathaswami via use-livecode wrote: > We have a new UI/UX designer working in Sketch/Invision/Zeplin which is a > marvelous universe for

Re: mouseWithin and mouseLeave problem

2017-11-15 Thread Kaveh Bazargan via use-livecode
No :-( On 15 November 2017 at 17:48, Bob Sneidar via use-livecode < use-livecode@lists.runrev.com> wrote: > Does mouseUp get sent to the control when you release the thumb pointer? > > Bob S > > > > On Nov 15, 2017, at 09:36 , Kaveh Bazargan via use-livecode < > use-livecode@lists.runrev.com>

Testing Bandwidth with new TSNet Functions

2017-11-15 Thread Sannyasin Brahmanathaswami via use-livecode
Someone suggested we could test bandwidth by getting the milliseconds before calling a ping.txt file on our server (contains one word "true") and then check the milliseconds after getting the result and we might use this to determine if the bandwidth was sufficient for streaming content from

Re: mouseWithin and mouseLeave problem

2017-11-15 Thread Mike Bonner via use-livecode
Look at mouserelease.. it should be sent to the scrollbar control if the mouse is released outside the control area, so you should be able to use the mouserelease message to reset your scrollbar to small size. On Wed, Nov 15, 2017 at 10:36 AM, Kaveh Bazargan via use-livecode <

Re: mouseWithin and mouseLeave problem

2017-11-15 Thread Bob Sneidar via use-livecode
Does mouseUp get sent to the control when you release the thumb pointer? Bob S > On Nov 15, 2017, at 09:36 , Kaveh Bazargan via use-livecode > wrote: > > I have a set of scrollbars that are normally small, to preserve screen > space. But I want them to expand

mouseWithin and mouseLeave problem

2017-11-15 Thread Kaveh Bazargan via use-livecode
I have a set of scrollbars that are normally small, to preserve screen space. But I want them to expand when mouse enters, so give finer control, then to shrink again when mouse leaves. I have managed to do this with mouseEnter and mouseLeave. Problem is that if I drag the thumb pointer with

Specialty Fonts on Mobile -- OK? or Stay Away?

2017-11-15 Thread Sannyasin Brahmanathaswami via use-livecode
We have a new UI/UX designer working in Sketch/Invision/Zeplin which is a marvelous universe for design collaboration, and getting from her designs to a card layout in LC is easy enough. But she has chosen to use a font called KohinoorDevanagari which not only has Devanagari script but a

Re: Finding on online shop window for apps (was Re: Awful quiet around here )

2017-11-15 Thread Bob Sneidar via use-livecode
Also, UAC has to be turned off. Otherwise I would probably need some kind of first run dialog asking for an administrator user and password, save it then pass it as an arguement to a command or powershell. Bob S > On Nov 15, 2017, at 09:03 , Bob Sneidar via use-livecode >

Re: Finding on online shop window for apps (was Re: Awful quiet around here )

2017-11-15 Thread Bob Sneidar via use-livecode
OK looks like the way to handle this is to set the compatibility mode to Windows XP. Not sure how much longer that will be supported. It may not be in Windows 10 anymore. Bob S > On Nov 15, 2017, at 08:51 , Bob Sneidar via use-livecode > wrote: > > Thanks

Re: Finding on online shop window for apps (was Re: Awful quiet around here )

2017-11-15 Thread Bob Sneidar via use-livecode
Thanks Jacque. I've attempted to set an app to run as administrator, but there is no place to enter credentials in the properties, so UAC will challenge the user if enabled, and if not it won't run. I have to make my techs local Admins in order to run my app. Bob S > On Nov 15, 2017, at

Re: Finding on online shop window for apps (was Re: Awful quiet around here )

2017-11-15 Thread J. Landman Gay via use-livecode
Zygodact's Register stack is just a substack of the mainstack and will use the same priveleges as the app it's attached to. Priveleges are set in the Windows pane in standalone settings. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software |

Re: Slow Opening IDE

2017-11-15 Thread Bob Sneidar via use-livecode
Disconnect from your networking then launch and see if it takes as long. It may be that it is having a hard time resolving DNS to check for updates. Just a guess. Also, put all your plugins into a new folder called plugins (disabled) (or whatever name you want) the ntry again. If it launches

Re: Finding on online shop window for apps (was Re: Awful quiet around here )

2017-11-15 Thread Matthias Rebbe via use-livecode
Trevor, i know. I watched your Levure presentation at LC Global, but had not enough time yet to dig deeper into it myself. Your framework looks awesome and hopefully during the holidays next month i will be able to concentrate on it. Matthias > Am 15.11.2017 um 15:47 schrieb Trevor DeVore via

Re: Finding on online shop window for apps (was Re: Awful quiet around here )

2017-11-15 Thread Bob Sneidar via use-livecode
That reminds me there was some discussion on how to get a Windows Standalone to launch with elevated priveleges so that non-admin users can *actualy* use it. Does Zygodact handle that? Bob S > On Nov 14, 2017, at 10:39 , JB via use-livecode > wrote: > >> The

Re: Finding on online shop window for apps (was Re: Awful quiet around here )

2017-11-15 Thread Trevor DeVore via use-livecode
On Tue, Nov 14, 2017 at 1:29 PM, Matthias Rebbe via use-livecode < use-livecode@lists.runrev.com> wrote: > Normally i do sign all of my apps (even custom and inhouse apps) for > Windows and Mac. > Makes life easier. But to be honest, sometimes i forgot to sign, if i am > in a hurry or i do not

Re: LC 8.1.7 with Mac OS/X 10.12.6

2017-11-15 Thread hh via use-livecode
Sorry, slided into the wrong thread. > hhwrote: > Did you already try to switch OFF the network for the startup of LC? > And to switch OFF all update checks in the prefs? ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this

Re: LC 8.1.7 with Mac OS/X 10.12.6

2017-11-15 Thread hh via use-livecode
Did you already try to switch OFF the network for the startup of LC? And to switch OFF all update checks in the prefs? ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: Slow Opening IDE

2017-11-15 Thread Peter Reid via use-livecode
Hi Matthias Brilliant, perfect diagnosis! I've just added the log file to the exclusion list for Intego (didn't bother deleting it) and now LC opens instantly!! This probably explains other slow opening issues with other apps, so it's really useful info. Many thanks. Peter -- Peter Reid

Re: Slow Opening IDE

2017-11-15 Thread Matthias Rebbe via use-livecode
Hi Peter, i noticed such behaviour also in the past. In my case it was the combination of my Antivirus Software from Intego and a really big Livecode logfile ~/Library/Logs/RunRev/LiveCodeToolsLog.txt Along with the files from /Applications/LiveCode X.X.X, there was a huge amount of scans from

Slow Opening IDE

2017-11-15 Thread Peter Reid via use-livecode
Please can anyone tell me how to reset LC to a clean startup state? I use the Business Editions of LC 9,0,0-dp10, 8.1.7 and 8.8.1-rc1 on a Mac (10.12.6). Recently opening LC has become much slower. Typically from initial click to open, until the splash pop-up is now taking several minutes.