Re: Can I still change LC code?

2022-01-12 Thread Jim Lambert via use-livecode
Of course, you can start 'rolling your own' by cloning the IDE stacks then 
customizing those clones as you wish.
___
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: Can I still change LC code?

2022-01-11 Thread Mike Kerner via use-livecode
However, if you have improvements to make, you can always submit them along
with a bug report.


On Tue, Jan 11, 2022 at 9:40 AM Tom Glod via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Alright, I'll have to add that to my list.  Thanks for the hints
> Jacqueline.
>
> On Mon, Jan 10, 2022 at 7:16 PM Bob Sneidar via use-livecode <
> use-livecode@lists.runrev.com> wrote:
>
> > Just roll your own. Any mod to the IDE goes away next time you update.
> >
> > Sent from my iPhone
> >
> > > On Jan 10, 2022, at 14:48, J. Landman Gay via use-livecode <
> > use-livecode@lists.runrev.com> wrote:
> > >
> > > I agree with Craig that you're better off making your own. There is a
> > built-in mechanism for this: the dialogData. It's a generic global
> > property, always available, specifically for moving data between a modal
> > stack and your scripts. You don't need to declare it as a global, it's
> > always there.
> > >
> > > Create a stack with the controls you need, and open it as modal. When
> > the user hits the OK button (or whatever dismisses the stack,) use a
> > closeStack handler to put the data you need into the dialogData. Your
> > script will pause when the modal opens and resume when it closes, so you
> > just get the dialogData in the line after the one that opened the modal.
> > >
> > > Be sure to grab the data in the same handler that opened the modal
> > stack, because a lot of things use it and it can change often.
> > >
> > >
> > >> On 1/10/22 12:13 PM, Tom Glod via use-livecode wrote:
> > >> Hi Folks,
> > >> Am I allowed to modify the answer and ask dialog stack to be what I
> > need it
> > >> to be? and build my standalones from the modified version?
> > >> and can those modified stacks be shared with others?
> > >> Thanks in advance,
> > >
> > >
> > > --
> > > 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
> >
> ___
> 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
>


-- 
On the first day, God created the heavens and the Earth
On the second day, God created the oceans.
On the third day, God put the animals on hold for a few hours,
   and did a little diving.
And God said, "This is good."
___
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: Can I still change LC code?

2022-01-11 Thread Tom Glod via use-livecode
Alright, I'll have to add that to my list.  Thanks for the hints Jacqueline.

On Mon, Jan 10, 2022 at 7:16 PM Bob Sneidar via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Just roll your own. Any mod to the IDE goes away next time you update.
>
> Sent from my iPhone
>
> > On Jan 10, 2022, at 14:48, J. Landman Gay via use-livecode <
> use-livecode@lists.runrev.com> wrote:
> >
> > I agree with Craig that you're better off making your own. There is a
> built-in mechanism for this: the dialogData. It's a generic global
> property, always available, specifically for moving data between a modal
> stack and your scripts. You don't need to declare it as a global, it's
> always there.
> >
> > Create a stack with the controls you need, and open it as modal. When
> the user hits the OK button (or whatever dismisses the stack,) use a
> closeStack handler to put the data you need into the dialogData. Your
> script will pause when the modal opens and resume when it closes, so you
> just get the dialogData in the line after the one that opened the modal.
> >
> > Be sure to grab the data in the same handler that opened the modal
> stack, because a lot of things use it and it can change often.
> >
> >
> >> On 1/10/22 12:13 PM, Tom Glod via use-livecode wrote:
> >> Hi Folks,
> >> Am I allowed to modify the answer and ask dialog stack to be what I
> need it
> >> to be? and build my standalones from the modified version?
> >> and can those modified stacks be shared with others?
> >> Thanks in advance,
> >
> >
> > --
> > 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
>
___
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: Can I still change LC code?

2022-01-10 Thread Bob Sneidar via use-livecode
Just roll your own. Any mod to the IDE goes away next time you update. 

Sent from my iPhone

> On Jan 10, 2022, at 14:48, J. Landman Gay via use-livecode 
>  wrote:
> 
> I agree with Craig that you're better off making your own. There is a 
> built-in mechanism for this: the dialogData. It's a generic global property, 
> always available, specifically for moving data between a modal stack and your 
> scripts. You don't need to declare it as a global, it's always there.
> 
> Create a stack with the controls you need, and open it as modal. When the 
> user hits the OK button (or whatever dismisses the stack,) use a closeStack 
> handler to put the data you need into the dialogData. Your script will pause 
> when the modal opens and resume when it closes, so you just get the 
> dialogData in the line after the one that opened the modal.
> 
> Be sure to grab the data in the same handler that opened the modal stack, 
> because a lot of things use it and it can change often.
> 
> 
>> On 1/10/22 12:13 PM, Tom Glod via use-livecode wrote:
>> Hi Folks,
>> Am I allowed to modify the answer and ask dialog stack to be what I need it
>> to be? and build my standalones from the modified version?
>> and can those modified stacks be shared with others?
>> Thanks in advance,
> 
> 
> -- 
> 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: Can I still change LC code?

2022-01-10 Thread J. Landman Gay via use-livecode
I agree with Craig that you're better off making your own. There is a built-in mechanism for 
this: the dialogData. It's a generic global property, always available, specifically for moving 
data between a modal stack and your scripts. You don't need to declare it as a global, it's 
always there.


Create a stack with the controls you need, and open it as modal. When the user hits the OK 
button (or whatever dismisses the stack,) use a closeStack handler to put the data you need 
into the dialogData. Your script will pause when the modal opens and resume when it closes, so 
you just get the dialogData in the line after the one that opened the modal.


Be sure to grab the data in the same handler that opened the modal stack, because a lot of 
things use it and it can change often.



On 1/10/22 12:13 PM, Tom Glod via use-livecode wrote:

Hi Folks,

Am I allowed to modify the answer and ask dialog stack to be what I need it
to be? and build my standalones from the modified version?

and can those modified stacks be shared with others?

Thanks in advance,




--
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: Can I still change LC code?

2022-01-10 Thread Craig Newman via use-livecode
Tom.

There was a pretty long thread here about modifying those dialogs. They are 
just stacks, after all, but the IDE is protective of them. I think the upshot 
was that you can hack anything, but better to roll your own. These would be 
just stacks, after all, and you can start with a clean slate. Since they are 
yours, sharing them is no different than sharing anything else.

Craig

> On Jan 10, 2022, at 1:13 PM, Tom Glod via use-livecode 
>  wrote:
> 
> Hi Folks,
> 
> Am I allowed to modify the answer and ask dialog stack to be what I need it
> to be? and build my standalones from the modified version?
> 
> and can those modified stacks be shared with others?
> 
> Thanks in advance,
> 
> -- 
> Tom Glod
> 
> Founder & Developer @ MakeShyft R.D.A 
> Build Software with AppStarterStack  for
> Livecode
> Save Time with The Time Saver's Toolbox 
> ___
> 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