Re: Lock screen challenge

2022-11-22 Thread J. Landman Gay via use-livecode
On 11/22/22 3:27 PM, Brian Milby via use-livecode wrote: One option to use an external editor would be ScriptTracker. You could export the scripts, do your bulk changes, and then import them back. That's worth a thought. Thanks. -- Jacqueline Landman Gay |

Re: Lock screen challenge

2022-11-22 Thread J. Landman Gay via use-livecode
On 11/22/22 3:08 PM, Geoff Canyon via use-livecode wrote: A random thought: if you converted to script-only stack behaviors first, then you would have a bunch of text files you can use whatever tool you like on. This project is a huge HC world. There are a lot of stacks, hundreds of cards, and

Re: Lock screen challenge

2022-11-22 Thread J. Landman Gay via use-livecode
Landman Gay Subject: Re: Lock screen challenge Thanks to both you and Craig. I couldn't think of any other way to do it either, but was hoping there was something other than brute force. Magic, maybe. It took LC's search/replace dialog a long time just to find all the instances, and actual

RE: Lock screen challenge

2022-11-22 Thread Ralph DiMola via use-livecode
ecode-boun...@lists.runrev.com] On Behalf Of J. Landman Gay via use-livecode Sent: Monday, November 21, 2022 10:48 PM To: How to use LiveCode Cc: J. Landman Gay Subject: Re: Lock screen challenge Thanks to both you and Craig. I couldn't think of any other way to do it either, but was hoping there was so

Re: Lock screen challenge

2022-11-22 Thread Geoff Canyon via use-livecode
y number of things > >> unlock screen with > >> > >> These all need to be changed to: > >> > >> lock screen for visual effect > >> -- do any number of things > >> unlock screen with visual effect > >> > >> The challenge is t

Re: Lock screen challenge

2022-11-22 Thread Geoff Canyon via use-livecode
ithout the visual effect thing. > Search downstream until you find the “unlock” line, That gives you the > start and finish lines for each handler. Then you can just replace the > start and finish lines with the new ones. > > > > Am I missing this? > > > > Craig > > >

Re: Lock screen challenge

2022-11-22 Thread Brian Milby via use-livecode
of things >> unlock screen with >> >> These all need to be changed to: >> >> lock screen for visual effect >> -- do any number of things >> unlock screen with visual effect >> >> The challenge is that not all "lock screen" command

Re: Lock screen challenge

2022-11-22 Thread Geoff Canyon via use-livecode
t; lock screen >> -- do any number of things >> unlock screen with >> >> These all need to be changed to: >> >> lock screen for visual effect >> -- do any number of things >> unlock screen with visual effect >> >> The challenge is that not

Re: Lock screen challenge

2022-11-22 Thread Geoff Canyon via use-livecode
; > lock screen > -- do any number of things > unlock screen with > > These all need to be changed to: > > lock screen for visual effect > -- do any number of things > unlock screen with visual effect > > The challenge is that not all "lock screen" commands u

Re: Lock screen challenge

2022-11-22 Thread Geoff Canyon via use-livecode
These all need to be changed to: > > lock screen for visual effect > -- do any number of things > unlock screen with visual effect > > The challenge is that not all "lock screen" commands use a visual effect, > some are simple > lock/unlock pairs. I need to auto

Re: Lock screen challenge

2022-11-22 Thread Jim MacConnell via use-livecode
I resemble that remark! j > On Nov 21, 2022, at 7:47 PM, J. Landman Gay via use-livecode > wrote: > > more old-timers ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: Lock screen challenge

2022-11-21 Thread J. Landman Gay via use-livecode
ay need to be changed. Right now they look like this: lock screen -- do any number of things unlock screen with These all need to be changed to: lock screen for visual effect -- do any number of things unlock screen with visual effect The challenge is that not all "lock screen" co

Re: Lock screen challenge

2022-11-21 Thread Paul Dupuis via use-livecode
ances that may need to be changed. Right now they look like this: lock screen -- do any number of things unlock screen with These all need to be changed to: lock screen for visual effect -- do any number of things unlock screen with visual effect The challenge is that not all "lock screen&quo

Re: Lock screen challenge

2022-11-21 Thread Craig Newman via use-livecode
any number of things > unlock screen with visual effect > > The challenge is that not all "lock screen" commands use a visual effect, > some are simple lock/unlock pairs. I need to automate this. The visual > effects are not all the same. Some handlers have multiple instance

Lock screen challenge

2022-11-21 Thread J. Landman Gay via use-livecode
be changed to: lock screen for visual effect -- do any number of things unlock screen with visual effect The challenge is that not all "lock screen" commands use a visual effect, some are simple lock/unlock pairs. I need to automate this. The visual effects are not all the same. Some ha

Re: Challenge: converting python (or Javascript) code to Livecode

2022-06-15 Thread Bob Sneidar via use-livecode
The javascript and python code is not that long, so > it will be an interesting challenge to translate: > > Python code: > > • https://github.com/volkerp/fitCurves/blob/master/fitCurves.py > > Javascript code: > > • https://github.com/sos

Challenge: converting python (or Javascript) code to Livecode

2022-06-15 Thread David Bovill via use-livecode
Thanks Craig - I dug around but no joy. I hate it when you loose code as I had a function somewhere… The javascript and python code is not that long, so it will be an interesting challenge to translate: Python code: • https://github.com/volkerp/fitCurves/blob/master/fitCurves.py Javascript

Another off topic challenge

2020-05-05 Thread Colin Holgate via use-livecode
Many of you are way more into tricky Windows things than I am, so I thought it would be worth asking this here. In my Windows 10 I can run this line in PowerShell: Get-WmiObject -Query "SELECT * FROM Win32_ComputerSystem” It echos a few lines of information about my system. When I try the same

Scripting puzzle / challenge.

2020-01-12 Thread Alex Tweedly via use-livecode
It's been a while since we had a puzzle challenge on here I came across this article https://medium.com/free-code-camp/bet-you-cant-solve-this-google-interview-question-4a6e5a4dc8ee and it seemed to me like an interesting puzzle. The article is interesting, but (IMHO) pretty flawed

Re: ...and a challenge

2019-10-06 Thread Dar Scott Consulting via use-livecode
It doesn't have to be text strings. It could be data (byte strings). This would be handy for using the base-16 method for computing pi. In my personal "slow math" library, I have tinkered with binary data, float encoded data, and number arrays, usually using a decimal point. Division is hard. I

Re: ...and a challenge

2019-10-05 Thread Mark Wieder via use-livecode
On 10/5/19 8:34 PM, Colin Holgate via use-livecode wrote: Pi is a reserved work, so I used pie. I haven’t seen this way of producing Pi before, and in both JavaScript and LivceCode it seems to be instantaneous. I think it’s a rewording of 4*(1-1/3+1/5-1/7+1/9…) the Taylor algorithm is

Re: ...and a challenge

2019-10-05 Thread Peter W A Wood via use-livecode
Colin > On 6 Oct 2019, at 11:34, Colin Holgate via use-livecode > wrote: > > Pi is a reserved work, so I used pie. I haven’t seen this way of producing Pi > before, and in both JavaScript and LivceCode it seems to be instantaneous. I > think it’s a rewording of 4*(1-1/3+1/5-1/7+1/9…) … >

Re: ...and a challenge

2019-10-05 Thread Jerry Jensen via use-livecode
Does it give the correct answer for pie? I don’t think the n suffix is for floating point. I thought it was for expressing bigint type. > On Oct 5, 2019, at 8:34 PM, Colin Holgate via use-livecode > wrote: > > > Pi is a reserved work, so I used pie. I haven’t seen this way of producing Pi >

Re: ...and a challenge

2019-10-05 Thread Colin Holgate via use-livecode
Pi is a reserved work, so I used pie. I haven’t seen this way of producing Pi before, and in both JavaScript and LivceCode it seems to be instantaneous. I think it’s a rewording of 4*(1-1/3+1/5-1/7+1/9…) Anyway, see for yourself on mouseup put the ticks into t put 1.0 into i put 3.0 *

...and a challenge

2019-10-05 Thread Mark Wieder via use-livecode
On 10/5/19 6:01 PM, Mark Wieder via use-livecode wrote: On 10/5/19 4:57 PM, JB via use-livecode wrote: Hi Mark, I just visited the link Richard provided and it shows the following; Hah! I missed a very important word in that sentence. Nonetheless, here's pi in nine lines of javascript. I

Re: Challenge: who can background this shell command?

2019-08-02 Thread Dar Scott Consulting via use-livecode
And an especially nice thing (I'm dreaming) would be callbacks for process and device I/O, maybe even some sort of unification with sockets. That would remove the need for polling in a send loop. > On Aug 2, 2019, at 8:40 AM, Bob Sneidar via use-livecode > wrote: > > This is a fascinating

Re: Challenge: who can background this shell command?

2019-08-02 Thread Bob Sneidar via use-livecode
This is a fascinating thread. When all this is sussed out, a nice thing to have is a function that takes arguements for all the heretofore literals, and does the deed. It can be added to the master library. Bob S > On Aug 2, 2019, at 07:13 , Dar Scott Consulting via use-livecode > wrote: >

Re: Challenge: who can background this shell command?

2019-08-02 Thread Dar Scott Consulting via use-livecode
I'm assuming you can send the ^c down the process connection. That is, write to the opened process. Wait a bit after that or look at the response, and then shut down the polling send-loop and then close the connection if it is not already closed, It might be that simply closing the connection

Re: Challenge: who can background this shell command?

2019-08-02 Thread David Bovill via use-livecode
Yes - ^c to shut down... but why for update? On Thu, 1 Aug 2019 at 19:27, Dar Scott Consulting via use-livecode < use-livecode@lists.runrev.com> wrote: > I am not familiar with hugo. Do you type a ^c to shut down hugo server? In > that case you might want to consider open for update. > > > On

Re: Challenge: who can background this shell command?

2019-08-01 Thread Dar Scott Consulting via use-livecode
I am not familiar with hugo. Do you type a ^c to shut down hugo server? In that case you might want to consider open for update. > On Aug 1, 2019, at 12:19 PM, David Bovill via use-livecode > wrote: > > OK - I managed to get it to work with: > > - open process "/usr/local/bin/hugo server"

Re: Challenge: who can background this shell command?

2019-08-01 Thread David Bovill via use-livecode
OK - I managed to get it to work with: - open process "/usr/local/bin/hugo server" for read which I did not think would work due to the two word shell command. Timing was an issue - so I had to use the method found here (thanks Mark) -

Re: Challenge: who can background this shell command?

2019-08-01 Thread dsc--- via use-livecode
I feel foolish. From the dictionary: Note: On OS X systems, you can use the open process command to start up an application, but not a Unix process. To work with a Unix process, use the shell func instead. When I saw this in the Dictionary, I thought, "Oh, when did this break?" I should have

Re: Challenge: who can background this shell command?

2019-08-01 Thread Dar Scott Consulting via use-livecode
So, this is a documentation problem? > On Aug 1, 2019, at 9:27 AM, Mark Waddingham via use-livecode > wrote: > > On 2019-08-01 17:12, David Bovill via use-livecode wrote: >> OK - so I have it working by writing to a temporary file. >> Trying to redirect the output to stdout - so that shell()

Re: Challenge: who can background this shell command?

2019-08-01 Thread Dar Scott Consulting via use-livecode
e best way to shut it down would be. > On Aug 1, 2019, at 5:55 AM, David Bovill via use-livecode > wrote: > > The challenge is to figure out a technique we can use in Livecode to be > able to call long running shell processes (typically something like an http > server proces

Re: Challenge: who can background this shell command?

2019-08-01 Thread David Bovill via use-livecode
OK - will try. My first attempt launched the process, but the server did not work and the openproccessids = 0 But will try to do this properly and report back - thanks Mark :) On Thu, 1 Aug 2019 at 16:27, Mark Waddingham via use-livecode < use-livecode@lists.runrev.com> wrote: > On 2019-08-01

Re: Challenge: who can background this shell command?

2019-08-01 Thread Mark Waddingham via use-livecode
On 2019-08-01 17:12, David Bovill via use-livecode wrote: OK - so I have it working by writing to a temporary file. Trying to redirect the output to stdout - so that shell() return the information of the background process - but this freezes: Okay so given you want to read/write to the

Re: Challenge: who can background this shell command?

2019-08-01 Thread David Bovill via use-livecode
OK - so I have it working by writing to a temporary file. Trying to redirect the output to stdout - so that shell() return the information of the background process - but this freezes: - *put* shell ("hugo server 2>&1 &") into launchResult Even though: - command 2>&1 & redirects

Re: Challenge: who can background this shell command?

2019-08-01 Thread Matthias Rebbe via use-livecode
Aaah, it seems the server has absorbed the greater character. command > filename redirects the stdout to a file, so any output from the command will be redirected to the file 2 > &1 redirects stderr to stdout, which in my case is redirected to file hubbabubba.txt the

Re: Challenge: who can background this shell command?

2019-08-01 Thread Matthias Rebbe via use-livecode
I just noticed that my last post was not easy to read I´ve used the following shell command to redirect to a file instead of to /dev/null /users/matthias/downloads/temp/MailHog > /users/matthias/downloads/temp/hubbabubba.txt 2>&1 & My script looked like this put

Re: Challenge: who can background this shell command?

2019-08-01 Thread Matthias Rebbe via use-livecode
put "/users/matthias/downloads/temp/MailHog > /users/matthias/downloads/temp/hubbabubba.txt 2>&1 &" into tShell -- above redirects into file and then don´t ask me.. ;) put shell(tShell) answer URL "file:/users/matthias/downloads/temp/hubbabubba.txt" -- answer dialog shows content of file, which

Re: Challenge: who can background this shell command?

2019-08-01 Thread David Bovill via use-livecode
> Matthias Rebbe > > free tools for Livecoders: > InstaMaker <https://instamaker.dermattes.de/> > WinSignMaker Mac <https://winsignhelper.dermattes.de/> > > > Am 01.08.2019 um 13:55 schrieb David Bovill via use-livecode < > use-livecode@lists.runrev.com

Re: Challenge: who can background this shell command?

2019-08-01 Thread Matthias Rebbe via use-livecode
s.de/ > <https://winsignhelper.dermattes.de/>> > >> Am 01.08.2019 um 13:55 schrieb David Bovill via use-livecode >> mailto:use-livecode@lists.runrev.com> >> <mailto:use-livecode@lists.runrev.com >> <mailto:use-livecode@lists.runrev.com>>>

Re: Challenge: who can background this shell command?

2019-08-01 Thread Matthias Rebbe via use-livecode
es.de/> > Am 01.08.2019 um 13:55 schrieb David Bovill via use-livecode > mailto:use-livecode@lists.runrev.com>>: > > The challenge is to figure out a technique we can use in Livecode to be > able to call long running shell processes (typically something like an http

Challenge: who can background this shell command?

2019-08-01 Thread David Bovill via use-livecode
The challenge is to figure out a technique we can use in Livecode to be able to call long running shell processes (typically something like an http server process) without blocking Livecode. To test this without asking anyone to install some cli I thought we could try it with an existing long

re: Fwd: LC / WordPress / CGI challenge

2016-05-29 Thread Todd Fabacher
Hello Richard, Rating Stars for WP - just doing an iFrame will not be that simple, because you will need to transfer a good deal of info into calling iFrame. Plus you will NOT be able to track the user. I suggest using a WP plugin like this: https://wordpress.org/plugins/rating-widget/. There

Re: Fwd: LC / WordPress / CGI challenge

2016-05-29 Thread Dave Kilroy
time, and the last 10% takes the other 90% of the time." Peter M. Brigham -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Fwd-LC-WordPress-CGI-challenge-tp4705282p4705308.html Sent from the Revolution - User mailing list archive at

Re: Fwd: LC / WordPress / CGI challenge

2016-05-29 Thread Richard Miller
Thanks, Stephen. Those two inclinations were what I was thinking as well. Thanks for confirming. On 5/29/16 4:52 PM, stephen barncard wrote: 1. I wouldn't bother trying to do this simple task in PHP if I didn't have to... how about.. create a livecode server page with the rating/poll

Re: Fwd: LC / WordPress / CGI challenge

2016-05-29 Thread stephen barncard
1. I wouldn't bother trying to do this simple task in PHP if I didn't have to... how about.. create a livecode server page with the rating/poll page and business logic since you said you could do that ... and easy to check and debug outside WP. and then use an IFRAME in the html to display

Re: Fwd: LC / WordPress / CGI challenge

2016-05-29 Thread Alex Tweedly
Disclaimer - I don't know much about Wordpress. But after Todd's postings about it during the recent funding effort, I decided to go back and try again to use it (previous attempts have failed in a myriad of features that appear to be documented only on videos - the least time-effective way to

Fwd: LC / WordPress / CGI challenge

2016-05-29 Thread Richard Miller
I have someone building a WordPress website for me. I personally do not know WordPress. He doesn't know how to address the following issue. I know how to do much of it through Livecode, but I'm not sure how to integrate the two. One feature of the site is that users get to input a rating on a

Re: A Personal Challenge

2016-05-20 Thread Mark Smith
on.278305.n4.nabble.com/A-Personal-Challenge-tp4704836p4704999.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 ma

Re: A Personal Challenge

2016-05-20 Thread Mark Smith
on.278305.n4.nabble.com/A-Personal-Challenge-tp4704836p4704998.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 m

Re: A Personal Challenge

2016-05-20 Thread Mike Bonner
I feel like i'm in that movie.. "Help me, help you..." Pledge increased. https://youtu.be/l1B1_jQnlFk?t=1m14s On Fri, May 20, 2016 at 1:33 AM, Kay C Lan wrote: > On Fri, May 20, 2016 at 6:29 AM, Mike Bonner wrote: > > > Hey Heather (if you're

Re: A Personal Challenge

2016-05-20 Thread Kay C Lan
On Fri, May 20, 2016 at 6:29 AM, Mike Bonner wrote: > Hey Heather (if you're watching this thread) If I pledge more, can I wait > till the first to pay up? > I know for a fact that if you contact her directly and explain your situation they can customise your pledge. Bend

Re: A Personal Challenge

2016-05-19 Thread Mike Bonner
Truly wish I could pledge more. Hey Heather (if you're watching this thread) If I pledge more, can I wait till the first to pay up? On Thu, May 19, 2016 at 2:53 PM, Paul Dupuis wrote: > On 5/18/2016 11:06 PM, Mark Smith wrote: > > Thanks, now go double down!! > > > > Just

Re: A Personal Challenge

2016-05-19 Thread Paul Dupuis
On 5/18/2016 11:06 PM, Mark Smith wrote: > Thanks, now go double down!! > Just doubled down. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: A Personal Challenge

2016-05-19 Thread Peter Bogdanoff
hat and > (b) we can build really great e-commerce sites for fun or profit. We get > both of these for what? $130 ??!? Wow, that is an amazing deal. > > So, here’s my challenge: I know we all know this is worth way more so I just > went and DOUBLED my contribution. If you have contri

A Personal Challenge

2016-05-18 Thread Mark Smith
of an OPEN SOURCE version of his wrapped WordPress functionality so (a) we can see how to do that and (b) we can build really great e-commerce sites for fun or profit. We get both of these for what? $130 ??!? Wow, that is an amazing deal. So, here’s my challenge: I know we all know this is worth way more

Re: Design Challenge -- Round Corner mask on images

2016-04-05 Thread Dave Kilroy
bscription preferences: > http://lists.runrev.com/mailman/listinfo/use-livecode - "The first 90% of the task takes 90% of the time, and the last 10% takes the other 90% of the time." Peter M. Brigham -- View this message in context: http://runtime-revolution.278305.n4.nabbl

Re: Design Challenge -- Round Corner mask on images

2016-04-04 Thread Sannyasin Brahmanathaswami
Indeed.. thank you.. not only for the widget but for a good example of what can be done. On April 4, 2016 at 8:32:16 AM, William Prothero (proth...@earthednet.org) wrote: Trevor: Very nice! Thanks for the widget. Best, Bill

Re: Design Challenge -- Round Corner mask on images

2016-04-04 Thread William Prothero
Trevor: Very nice! Thanks for the widget. Best, Bill > On Apr 3, 2016, at 8:17 PM, William Prothero wrote: > > Trevor: > Never tried to install a widget before. I downloaded your zip folder and > copied the folder with its contents to the “extensions” folder. I don’t

Re: Design Challenge -- Round Corner mask on images

2016-04-04 Thread Jim Lambert
Trevor, Thanks for the Rounded Corners widget. Very nice! Jim Lambert ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: Design Challenge -- Round Corner mask on images

2016-04-04 Thread RM
On 4.04.2016 18:21, RM wrote: Here's the next step; using absolutely the most *bog-basic* code you can imagine (all you purists can check out the button script in "Export Image" and get upset) will export the image with rounded corners AND ink effects.

Re: Design Challenge -- Round Corner mask on images

2016-04-04 Thread RM
Here's the next step; using absolutely the most *bog-basic* code you can imagine (all you purists can check out the button script in "Export Image" and get upset) will export the image with rounded corners AND ink effects. http://forums.livecode.com/viewtopic.php?f=10=26933=140584#p140584

Re: Design Challenge -- Round Corner mask on images

2016-04-04 Thread Trevor DeVore
On Monday, April 4, 2016, J. Landman Gay wrote: > > > Trevor, this is SO COOL. Not just the work you've produced, which is > really neat stuff, but also how anyone can make LC into anything they want. > I hope Kevin is right and that we get lots more of these little

Re: Design Challenge -- Round Corner mask on images

2016-04-04 Thread Trevor DeVore
On Sunday, April 3, 2016, William Prothero wrote: > Trevor: > Never tried to install a widget before. I downloaded your zip folder and > copied the folder with its contents to the “extensions” folder. I don’t see > it in the extensions manager. I’m in dp15. Any

Re: Design Challenge -- Round Corner mask on images

2016-04-03 Thread Earthednet-wp
Jacque, Perhaps I have more than one extensions folder. I'll check for another one. Btw, I am assuming v7 and v8 use the same extensions folder? Hmm, seems unlikely. I'll check. Best, Bill William Prothero http://es.earthednet.org > On Apr 3, 2016, at 10:32 PM, "J. Landman Gay"

Re: Design Challenge -- Round Corner mask on images

2016-04-03 Thread J. Landman Gay
On 4/3/2016 4:50 PM, Trevor DeVore wrote: I thought this would make an interesting widget. I put together a widget that does the following: 1. Allows you to turn on/off rounded corners for each corner of the widget. 2. Allows you to set the radius. 3. Allows you to set a filename of an image

Re: Design Challenge -- Round Corner mask on images

2016-04-03 Thread William Prothero
Trevor: Never tried to install a widget before. I downloaded your zip folder and copied the folder with its contents to the “extensions” folder. I don’t see it in the extensions manager. I’m in dp15. Any suggestions? Bill > On Apr 3, 2016, at 2:50 PM, Trevor DeVore

Re: Design Challenge -- Round Corner mask on images

2016-04-03 Thread Trevor DeVore
On Sun, Mar 27, 2016 at 6:26 PM, Sannyasin Brahmanathaswami < bra...@hindu.org> wrote: > Our design team finished a design for a mobile app. The used rounded > corners everywhere. > > see > > http://wiki.hindu.org/screenshots/radius-all-corners.jpg > > Something I wished we had in LC for all

Re: Design Challenge -- Round Corner mask on images

2016-04-03 Thread Peter Bogdanoff
In LC8 you can get the names of the inks: put button "pulldown" of group "ink" of group "Ink" of card id 1002 of stack "revPropertyInspector 1" Peter On Apr 3, 2016, at 11:58 AM, J. Landman Gay wrote: > On 4/3/2016 12:45 PM, RM wrote: >> Well: I must be rather

Re: Design Challenge -- Round Corner mask on images

2016-04-03 Thread J. Landman Gay
On 4/3/2016 12:45 PM, RM wrote: Well: I must be rather stupid: but where-O-where is the 'Inks' button? What Tore said. I was thinking of LC 8 where the inks are in a popdown button in the inspector. Either place should work. Scripting it would require knowing the name of the control you

Re: Design Challenge -- Round Corner mask on images

2016-04-03 Thread RM
So it does: thanks for the help. Not exactly intuitive.. . . Might be time for a Feature Request: inkNames Richmond. On 3.04.2016 21:34, Tore Nilsen wrote: It works when you hold the mouse over the field with the inks in the blending section of the property inspector Tore 3. apr. 2016 kl.

Re: Design Challenge -- Round Corner mask on images

2016-04-03 Thread Tore Nilsen
It works when you hold the mouse over the field with the inks in the blending section of the property inspector Tore > 3. apr. 2016 kl. 19.45 skrev RM : > > Well: I must be rather stupid: but where-O-where is the 'Inks' button? > > Richmond. > > On 3.04.2016

Re: Design Challenge -- Round Corner mask on images

2016-04-03 Thread RM
Well: I must be rather stupid: but where-O-where is the 'Inks' button? Richmond. On 3.04.2016 20:38, J. Landman Gay wrote: Put this in the message box: put the text of the mousecontrol Point the cursor to the inks menu button in the IDE and hit the return key. -- Jacqueline Landman Gay

Re: Design Challenge -- Round Corner mask on images

2016-04-03 Thread RM
Smashing: Thanks! BUT, there 'must' be a way to script that R. On 3.04.2016 20:38, J. Landman Gay wrote: Put this in the message box: put the text of the mousecontrol Point the cursor to the inks menu button in the IDE and hit the return key. -- Jacqueline Landman Gay |

Re: Design Challenge -- Round Corner mask on images

2016-04-03 Thread J. Landman Gay
Put this in the message box: put the text of the mousecontrol Point the cursor to the inks menu button in the IDE and hit the return key. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On April 3, 2016

Re: Design Challenge -- Round Corner mask on images

2016-04-03 Thread RM
Aha. Well, if you could find a way to answer my post about inks I could get on with my batch processor :) R. On 3.04.2016 20:20, J. Landman Gay wrote: On April 3, 2016 11:59:33 AM RM wrote: Of course the obvious question at this point is "why use a

Re: Design Challenge -- Round Corner mask on images

2016-04-03 Thread J. Landman Gay
On April 3, 2016 11:59:33 AM RM wrote: Of course the obvious question at this point is "why use a distributed work environment?" Because you work in a large company with different departments? Or you have a team of a dozen people, each with particular skills? Or

Re: Design Challenge -- Round Corner mask on images

2016-04-03 Thread RM
Well, for what it's worth: here's a start: http://forums.livecode.com/viewtopic.php?f=10=26933=140562#p140562 Love, Richmond. On 3.04.2016 00:02, Sannyasin Brahmanathaswami wrote: RM: Your "why bother" assumes a) we work in teams of one in solitude or something like that. OR b) you have

Re: Design Challenge -- Round Corner mask on images

2016-04-03 Thread RM
classical theater for the character that fills that role in a play. In a play, this character helps to develop and advance the plot until it reach author's purpose or logical conclusion. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Design-Challenge-Round-C

Re: Design Challenge -- Round Corner mask on images

2016-04-03 Thread Alejandro Tejada
plot until it reach author's purpose or logical conclusion. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Design-Challenge-Round-Corner-mask-on-images-tp4702659p4703039.html Sent from the Revolution - User mailing list archive at

Re: Design Challenge -- Round Corner mask on images

2016-04-03 Thread RM
On 3.04.2016 00:02, Sannyasin Brahmanathaswami wrote: RM: Your "why bother" assumes a) we work in teams of one in solitude or something like that. OR b) you have experienced talented "workers" in image process. In a distributed work environment, the options to pre-process images prior to

Re: Design Challenge -- Round Corner mask on images

2016-04-02 Thread Alejandro Tejada
hat job as well. True. I will update my stack palette "mask bitmap 02"... when I find time. :-D Alejandro -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Design-Challenge-Round-Corner-mask-on-images-tp4702659p4702982.html Sent from the Revolution -

Re: Design Challenge -- Round Corner mask on images

2016-04-02 Thread RM
Why bother? Frankly the process is no more difficult using GIMP: https://www.gimp.org/downloads/ or Photoshop: http://www.adobe.com/products/photoshop.html and there are quite a few other image editing software packages available that can do that job as well. Richmond. On 1.04.2016 02:46,

Re: Design Challenge -- Round Corner mask on images

2016-03-31 Thread Alejandro Tejada
.278305.n4.nabble.com/Design-Challenge-Round-Corner-mask-on-images-tp4702659p4702904.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, u

Re: Design Challenge -- Round Corner mask on images

2016-03-31 Thread BNig
the points of me to lpoints end mouseMove on mouseUp put "" into tClick end mouseUp on mouseRelease put "" into tClick end mouseRelease ------ as usual watch for linebreaks. Kind regards Bernd -- View this message in context: http://run

Re: Design Challenge -- Round Corner mask on images

2016-03-31 Thread Alejandro Tejada
c and move the mouse the image will move within the graphic. Alejandro -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Design-Challenge-Round-Corner-mask-on-images-tp4702659p4702879.html Sent from the Revolution - User mailing list archive at Nabble.com. _

Re: Design Challenge -- Round Corner mask on images

2016-03-31 Thread RM
Am I being stupid? https://www.dropbox.com/s/ce57yiy7xj4k9j0/Round%20Corners.livecode.zip?dl=0 http://forums.livecode.com/viewtopic.php?f=10=26933 Richmond. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to

Re: Design Challenge -- Round Corner mask on images

2016-03-31 Thread BNig
05.n4.nabble.com/Design-Challenge-Round-Corner-mask-on-images-tp4702659p4702856.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, unsu

Re: Design Challenge -- Round Corner mask on images

2016-03-31 Thread RM
Why does THIS not work: set the imageSource of graphic "ggg" to 1003 ? Richmond. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: Design Challenge -- Round Corner mask on images

2016-03-31 Thread BNig
Alejandro Tejada wrote > By the way, while looking for a script to convert a color in a mask, > (for example: convert bright green color of an image to alphadata) > I just found that Bernd already answer this Design Challenge, > back in 2011: > > http://forums.livecode.com/

Re: Design Challenge -- Round Corner mask on images

2016-03-30 Thread Alejandro Tejada
By the way, while looking for a script to convert a color in a mask, (for example: convert bright green color of an image to alphadata) I just found that Bernd already answer this Design Challenge, back in 2011: http://forums.livecode.com/viewtopic.php?f=10=6525 >From this 5 years old thr

Re: Design Challenge -- Round Corner mask on images

2016-03-30 Thread Alejandro Tejada
original image: > set the width of img 1 to the width of img 2 > set the height of img 1 to the height of img 2 > set the alphadata of image 2 to the alphadata of image 1 Many thanks again! :-) Alejandro -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/D

Re: Design Challenge -- Round Corner mask on images

2016-03-30 Thread BNig
; tBotRight) to image "myImg" as png end mouseUp - But I think transparency is lost. But you get the ink-mode tried with notSrcCopy and blendExclusion. worked all right. Kind regards Bernd -- View this message in context: http://runtime-revolution.278305.

Re: Design Challenge -- Round Corner mask on images

2016-03-30 Thread Alejandro Tejada
? Thanks in advance! Alejandro -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Design-Challenge-Round-Corner-mask-on-images-tp4702659p4702823.html Sent from the Revolution - User mailing list archive at Nabble.com. ___

Re: Design Challenge -- Round Corner mask on images

2016-03-30 Thread BNig
nd such. As far as I am aware the speed advantage is not as large as it used to be. Kind regards Bernd -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Design-Challenge-Round-Corner-mask-on-images-tp4702659p4702803.html S

Re: Design Challenge -- Round Corner mask on images

2016-03-30 Thread Alejandro Tejada
-revolution.278305.n4.nabble.com/Design-Challenge-Round-Corner-mask-on-images-tp4702659p4702801.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

Re: Design Challenge -- Round Corner mask on images

2016-03-30 Thread BNig
at tWidth put tTransparent after tAlphaRow end repeat repeat tHeight put tAlphaRow after tAlpha end repeat set the alphaData of image "iLittle" to tAlpha end mouseUp Kind regards Bernd -- View this message in c

Re: Design Challenge -- Round Corner mask on images

2016-03-30 Thread sanke
Another contribution to this thread from the past. and Stacks from 2009: The first one is a result of a longer discussion and experimentation with Bernd Niggemann showing different approaches to create and use masks, the second is a short example stack demonstrating round-corner-buttons

  1   2   3   >