Re: Scott Rossi and TactileMedia

2018-04-28 Thread Roger Guay via use-livecode
Thanks, Jacque. I will try.


> On Apr 28, 2018, at 12:29 PM, J. Landman Gay via use-livecode 
>  wrote:
> 
> On 4/28/18 12:48 PM, Roger Guay via use-livecode wrote:
>> I am a total fan of Scott and the many contributions he has offered to the 
>> LC community over the years. I particularly like his little plugins tmAlign 
>> and tmEffects and use them all the time. However, the title bars of these 
>> have gone from light on dark to light on light in V9 of LC, to such an 
>> extent that one can hardly read the menu items. And, so far, I have been 
>> unable to find a resolution on Scott’s TactileMedia website. Can anyone 
>> suggest an easy fix for this?
>> I have missed Scott’s frequent participation to this list and hope he is 
>> well!!
> 
> I don't think he reads the list regularly any more, you'd probably get a 
> quicker response if you wrote him directly.
> 
> -- 
> 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: Telling the IDE to build a standalone under script control

2018-04-28 Thread Ali Lloyd via use-livecode
The revSaveAsStandalone stack is now script-only, and therefore no longer a
substack of revStandaloneSettings. So try

*send* "revSaveAsStandalone" && quote & tStackName & quote to stack
"revSaveAsStandalone"

On Sat, Apr 28, 2018 at 6:48 PM Paul Dupuis via use-livecode <
use-livecode@lists.runrev.com> wrote:

> In LiveCode 6.x.x and earlier, I used a line in a script:
>
>
> *send*"revSaveAsStandalone"&"revSaveAsStandalone"ofstack"revStandaloneSettings"
>
> to build a standalone of a stack (tStackName) under script control
>
> In LC9.0.0 this line no longer works. I can dig my way through the IDE
> code to find out what changes, but can any one on this list save me the
> time if they have already figured out how to build a standalone under
> script control under LC9.0.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


Re: Scott Rossi and TactileMedia

2018-04-28 Thread J. Landman Gay via use-livecode

On 4/28/18 12:48 PM, Roger Guay via use-livecode wrote:

I am a total fan of Scott and the many contributions he has offered to the LC 
community over the years. I particularly like his little plugins tmAlign and 
tmEffects and use them all the time. However, the title bars of these have gone 
from light on dark to light on light in V9 of LC, to such an extent that one 
can hardly read the menu items. And, so far, I have been unable to find a 
resolution on Scott’s TactileMedia website. Can anyone suggest an easy fix for 
this?

I have missed Scott’s frequent participation to this list and hope he is well!!


I don't think he reads the list regularly any more, you'd probably get a 
quicker response if you wrote him directly.


--
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: Down a leafy lane or up queer street?

2018-04-28 Thread Richmond Mathewson via use-livecode

Thanks.

Richmond.

On 28/4/2018 9:11 pm, Tore Nilsen via use-livecode wrote:

Ah, my bad!

I always place all my script at the same level, normally the stack level. Then 
declaring the local variabel at the start of the script make them accessible to 
all handlers. You can solve this either by declaring the variabel global in all 
script where you will use it, or place the scripts that will use it at the same 
level.

Regards Tore


28. apr. 2018 kl. 20:05 skrev Richmond Mathewson via use-livecode 
:

No joy.

What happens then is that, on looking in the properties palette for an image 
("p11")

having had

setthefileNameofimg "p11" tosFolderPath & "c11.png"

in the openCard script

I see that its source is listed as sFolderPathc11.png

Richmond.


On 28/4/2018 8:55 pm, Tore Nilsen via use-livecode wrote:

What I do in these situations is to use the path stored in the variable 
sFolderPath like this

set fileName of image “whateverImage” to sFolderPath & “imageName”

or

put sFolderPath & “imageName” into tFilePath

set fileName of image “whateverImage” to tFilePath


Tore Nilsen


28. apr. 2018 kl. 19:51 skrev Richmond Mathewson via use-livecode 
:

In theory that should work . . .

But what happens is that I end with a grey square rather than the actual 
picture.

Richmond.

On 28/4/2018 8:42 pm, Tore Nilsen via use-livecode wrote:

Try this:

local sFolderPath

on preOpenStack

put specialFolderPath("resources")&"/myCrap/rez/" into sFolderPath

end preOpenStack


specialFolderPath(“resources”) will point to the folder containing the stack 
when you are in the IDE, and to the resources folder of your compiled 
application


Tore Nilsen


28. apr. 2018 kl. 19:38 skrev Richmond Mathewson via use-livecode 
:

Here I go agin, replying to my own posting:

I have this script in the stack:

onpreOpenStack

setitemDelto"/"

setthedefaultFoldertoitem 1 to-2 of(theeffectivefileNameofthis stack)

endpreOpenStack

but it ain't working.

Richmond.


On 28/4/2018 8:34 pm, Richmond Mathewson wrote:

Probably both . . .

So, there I am opening an on-going project I have been "somewhat remiss" about 
of late
what with one thing and another.

Now this project has a ton of images made via the Object/New Control/Image menu
and for their image data in their property panels are referred to a folder called 
"rez"
that resides in the same folder as my stack.

Now when I set up the stack the source field in the property panels went 
something
like this:

/Users/richmondmathewson/Desktop/myCrap/rez/c7.png

and "everything worked perfectly" . . .

on reopening the stack the image data does not show up
and the source fields contain this sort of thing:

rez/c7.png

now this "just won't do" as the . . . well, never mind; probably that is too 
filthy a joke for the Use-List.

So . . . presumably, I need a sort of 'set the default file path' script in my 
openScript thang?

Richmond.

___
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

___
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: Down a leafy lane or up queer street?

2018-04-28 Thread Tore Nilsen via use-livecode
Ah, my bad!

I always place all my script at the same level, normally the stack level. Then 
declaring the local variabel at the start of the script make them accessible to 
all handlers. You can solve this either by declaring the variabel global in all 
script where you will use it, or place the scripts that will use it at the same 
level.

Regards Tore

> 28. apr. 2018 kl. 20:05 skrev Richmond Mathewson via use-livecode 
> :
> 
> No joy.
> 
> What happens then is that, on looking in the properties palette for an image 
> ("p11")
> 
> having had
> 
> setthefileNameofimg "p11" tosFolderPath & "c11.png"
> 
> in the openCard script
> 
> I see that its source is listed as sFolderPathc11.png
> 
> Richmond.
> 
> 
> On 28/4/2018 8:55 pm, Tore Nilsen via use-livecode wrote:
>> What I do in these situations is to use the path stored in the variable 
>> sFolderPath like this
>> 
>> set fileName of image “whateverImage” to sFolderPath & “imageName”
>> 
>> or
>> 
>> put sFolderPath & “imageName” into tFilePath
>> 
>> set fileName of image “whateverImage” to tFilePath
>> 
>> 
>> Tore Nilsen
>> 
>>> 28. apr. 2018 kl. 19:51 skrev Richmond Mathewson via use-livecode 
>>> :
>>> 
>>> In theory that should work . . .
>>> 
>>> But what happens is that I end with a grey square rather than the actual 
>>> picture.
>>> 
>>> Richmond.
>>> 
>>> On 28/4/2018 8:42 pm, Tore Nilsen via use-livecode wrote:
 Try this:
 
 local sFolderPath
 
 on preOpenStack
 
 put specialFolderPath("resources")&"/myCrap/rez/" into sFolderPath
 
 end preOpenStack
 
 
 specialFolderPath(“resources”) will point to the folder containing the 
 stack when you are in the IDE, and to the resources folder of your 
 compiled application
 
 
 Tore Nilsen
 
> 28. apr. 2018 kl. 19:38 skrev Richmond Mathewson via use-livecode 
> :
> 
> Here I go agin, replying to my own posting:
> 
> I have this script in the stack:
> 
> onpreOpenStack
> 
> setitemDelto"/"
> 
> setthedefaultFoldertoitem 1 to-2 of(theeffectivefileNameofthis stack)
> 
> endpreOpenStack
> 
> but it ain't working.
> 
> Richmond.
> 
> 
> On 28/4/2018 8:34 pm, Richmond Mathewson wrote:
>> Probably both . . .
>> 
>> So, there I am opening an on-going project I have been "somewhat remiss" 
>> about of late
>> what with one thing and another.
>> 
>> Now this project has a ton of images made via the Object/New 
>> Control/Image menu
>> and for their image data in their property panels are referred to a 
>> folder called "rez"
>> that resides in the same folder as my stack.
>> 
>> Now when I set up the stack the source field in the property panels went 
>> something
>> like this:
>> 
>> /Users/richmondmathewson/Desktop/myCrap/rez/c7.png
>> 
>> and "everything worked perfectly" . . .
>> 
>> on reopening the stack the image data does not show up
>> and the source fields contain this sort of thing:
>> 
>> rez/c7.png
>> 
>> now this "just won't do" as the . . . well, never mind; probably that is 
>> too filthy a joke for the Use-List.
>> 
>> So . . . presumably, I need a sort of 'set the default file path' script 
>> in my openScript thang?
>> 
>> Richmond.
> ___
> 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
> 
> ___
> 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, 

Re: Down a leafy lane or up queer street?

2018-04-28 Thread Richmond Mathewson via use-livecode

No joy.

What happens then is that, on looking in the properties palette for an 
image ("p11")


having had

setthefileNameofimg "p11" tosFolderPath & "c11.png"

in the openCard script

I see that its source is listed as sFolderPathc11.png

Richmond.


On 28/4/2018 8:55 pm, Tore Nilsen via use-livecode wrote:

What I do in these situations is to use the path stored in the variable 
sFolderPath like this

set fileName of image “whateverImage” to sFolderPath & “imageName”

or

put sFolderPath & “imageName” into tFilePath

set fileName of image “whateverImage” to tFilePath


Tore Nilsen


28. apr. 2018 kl. 19:51 skrev Richmond Mathewson via use-livecode 
:

In theory that should work . . .

But what happens is that I end with a grey square rather than the actual 
picture.

Richmond.

On 28/4/2018 8:42 pm, Tore Nilsen via use-livecode wrote:

Try this:

local sFolderPath

on preOpenStack

put specialFolderPath("resources")&"/myCrap/rez/" into sFolderPath

end preOpenStack


specialFolderPath(“resources”) will point to the folder containing the stack 
when you are in the IDE, and to the resources folder of your compiled 
application


Tore Nilsen


28. apr. 2018 kl. 19:38 skrev Richmond Mathewson via use-livecode 
:

Here I go agin, replying to my own posting:

I have this script in the stack:

onpreOpenStack

setitemDelto"/"

setthedefaultFoldertoitem 1 to-2 of(theeffectivefileNameofthis stack)

endpreOpenStack

but it ain't working.

Richmond.


On 28/4/2018 8:34 pm, Richmond Mathewson wrote:

Probably both . . .

So, there I am opening an on-going project I have been "somewhat remiss" about 
of late
what with one thing and another.

Now this project has a ton of images made via the Object/New Control/Image menu
and for their image data in their property panels are referred to a folder called 
"rez"
that resides in the same folder as my stack.

Now when I set up the stack the source field in the property panels went 
something
like this:

/Users/richmondmathewson/Desktop/myCrap/rez/c7.png

and "everything worked perfectly" . . .

on reopening the stack the image data does not show up
and the source fields contain this sort of thing:

rez/c7.png

now this "just won't do" as the . . . well, never mind; probably that is too 
filthy a joke for the Use-List.

So . . . presumably, I need a sort of 'set the default file path' script in my 
openScript thang?

Richmond.

___
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


___
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: Down a leafy lane or up queer street?

2018-04-28 Thread Tore Nilsen via use-livecode
What I do in these situations is to use the path stored in the variable 
sFolderPath like this

set fileName of image “whateverImage” to sFolderPath & “imageName”

or

put sFolderPath & “imageName” into tFilePath

set fileName of image “whateverImage” to tFilePath


Tore Nilsen

> 28. apr. 2018 kl. 19:51 skrev Richmond Mathewson via use-livecode 
> :
> 
> In theory that should work . . .
> 
> But what happens is that I end with a grey square rather than the actual 
> picture.
> 
> Richmond.
> 
> On 28/4/2018 8:42 pm, Tore Nilsen via use-livecode wrote:
>> Try this:
>> 
>> local sFolderPath
>> 
>> on preOpenStack
>> 
>> put specialFolderPath("resources")&"/myCrap/rez/" into sFolderPath
>> 
>> end preOpenStack
>> 
>> 
>> specialFolderPath(“resources”) will point to the folder containing the stack 
>> when you are in the IDE, and to the resources folder of your compiled 
>> application
>> 
>> 
>> Tore Nilsen
>> 
>>> 28. apr. 2018 kl. 19:38 skrev Richmond Mathewson via use-livecode 
>>> :
>>> 
>>> Here I go agin, replying to my own posting:
>>> 
>>> I have this script in the stack:
>>> 
>>> onpreOpenStack
>>> 
>>> setitemDelto"/"
>>> 
>>> setthedefaultFoldertoitem 1 to-2 of(theeffectivefileNameofthis stack)
>>> 
>>> endpreOpenStack
>>> 
>>> but it ain't working.
>>> 
>>> Richmond.
>>> 
>>> 
>>> On 28/4/2018 8:34 pm, Richmond Mathewson wrote:
 Probably both . . .
 
 So, there I am opening an on-going project I have been "somewhat remiss" 
 about of late
 what with one thing and another.
 
 Now this project has a ton of images made via the Object/New Control/Image 
 menu
 and for their image data in their property panels are referred to a folder 
 called "rez"
 that resides in the same folder as my stack.
 
 Now when I set up the stack the source field in the property panels went 
 something
 like this:
 
 /Users/richmondmathewson/Desktop/myCrap/rez/c7.png
 
 and "everything worked perfectly" . . .
 
 on reopening the stack the image data does not show up
 and the source fields contain this sort of thing:
 
 rez/c7.png
 
 now this "just won't do" as the . . . well, never mind; probably that is 
 too filthy a joke for the Use-List.
 
 So . . . presumably, I need a sort of 'set the default file path' script 
 in my openScript thang?
 
 Richmond.
>>> ___
>>> 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: Down a leafy lane or up queer street?

2018-04-28 Thread Richmond Mathewson via use-livecode

In theory that should work . . .

But what happens is that I end with a grey square rather than the actual 
picture.


Richmond.

On 28/4/2018 8:42 pm, Tore Nilsen via use-livecode wrote:

Try this:

local sFolderPath

on preOpenStack

put specialFolderPath("resources")&"/myCrap/rez/" into sFolderPath

end preOpenStack


specialFolderPath(“resources”) will point to the folder containing the stack 
when you are in the IDE, and to the resources folder of your compiled 
application


Tore Nilsen


28. apr. 2018 kl. 19:38 skrev Richmond Mathewson via use-livecode 
:

Here I go agin, replying to my own posting:

I have this script in the stack:

onpreOpenStack

setitemDelto"/"

setthedefaultFoldertoitem 1 to-2 of(theeffectivefileNameofthis stack)

endpreOpenStack

but it ain't working.

Richmond.


On 28/4/2018 8:34 pm, Richmond Mathewson wrote:

Probably both . . .

So, there I am opening an on-going project I have been "somewhat remiss" about 
of late
what with one thing and another.

Now this project has a ton of images made via the Object/New Control/Image menu
and for their image data in their property panels are referred to a folder called 
"rez"
that resides in the same folder as my stack.

Now when I set up the stack the source field in the property panels went 
something
like this:

/Users/richmondmathewson/Desktop/myCrap/rez/c7.png

and "everything worked perfectly" . . .

on reopening the stack the image data does not show up
and the source fields contain this sort of thing:

rez/c7.png

now this "just won't do" as the . . . well, never mind; probably that is too 
filthy a joke for the Use-List.

So . . . presumably, I need a sort of 'set the default file path' script in my 
openScript thang?

Richmond.

___
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

Scott Rossi and TactileMedia

2018-04-28 Thread Roger Guay via use-livecode
I am a total fan of Scott and the many contributions he has offered to the LC 
community over the years. I particularly like his little plugins tmAlign and 
tmEffects and use them all the time. However, the title bars of these have gone 
from light on dark to light on light in V9 of LC, to such an extent that one 
can hardly read the menu items. And, so far, I have been unable to find a 
resolution on Scott’s TactileMedia website. Can anyone suggest an easy fix for 
this?

I have missed Scott’s frequent participation to this list and hope he is well!!


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

Telling the IDE to build a standalone under script control

2018-04-28 Thread Paul Dupuis via use-livecode
In LiveCode 6.x.x and earlier, I used a line in a script:

*send*"revSaveAsStandalone"&"revSaveAsStandalone"ofstack"revStandaloneSettings"

to build a standalone of a stack (tStackName) under script control

In LC9.0.0 this line no longer works. I can dig my way through the IDE
code to find out what changes, but can any one on this list save me the
time if they have already figured out how to build a standalone under
script control under LC9.0.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


Re: Down a leafy lane or up queer street?

2018-04-28 Thread Tore Nilsen via use-livecode
Try this:

local sFolderPath

on preOpenStack

put specialFolderPath("resources")&"/myCrap/rez/" into sFolderPath

end preOpenStack


specialFolderPath(“resources”) will point to the folder containing the stack 
when you are in the IDE, and to the resources folder of your compiled 
application


Tore Nilsen

> 28. apr. 2018 kl. 19:38 skrev Richmond Mathewson via use-livecode 
> :
> 
> Here I go agin, replying to my own posting:
> 
> I have this script in the stack:
> 
> onpreOpenStack
> 
> setitemDelto"/"
> 
> setthedefaultFoldertoitem 1 to-2 of(theeffectivefileNameofthis stack)
> 
> endpreOpenStack
> 
> but it ain't working.
> 
> Richmond.
> 
> 
> On 28/4/2018 8:34 pm, Richmond Mathewson wrote:
>> Probably both . . .
>> 
>> So, there I am opening an on-going project I have been "somewhat remiss" 
>> about of late
>> what with one thing and another.
>> 
>> Now this project has a ton of images made via the Object/New Control/Image 
>> menu
>> and for their image data in their property panels are referred to a folder 
>> called "rez"
>> that resides in the same folder as my stack.
>> 
>> Now when I set up the stack the source field in the property panels went 
>> something
>> like this:
>> 
>> /Users/richmondmathewson/Desktop/myCrap/rez/c7.png
>> 
>> and "everything worked perfectly" . . .
>> 
>> on reopening the stack the image data does not show up
>> and the source fields contain this sort of thing:
>> 
>> rez/c7.png
>> 
>> now this "just won't do" as the . . . well, never mind; probably that is too 
>> filthy a joke for the Use-List.
>> 
>> So . . . presumably, I need a sort of 'set the default file path' script in 
>> my openScript thang?
>> 
>> Richmond.
> 
> ___
> 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: Down a leafy lane or up queer street?

2018-04-28 Thread Richmond Mathewson via use-livecode

Here I go agin, replying to my own posting:

I have this script in the stack:

onpreOpenStack

setitemDelto"/"

setthedefaultFoldertoitem 1 to-2 of(theeffectivefileNameofthis stack)

endpreOpenStack

but it ain't working.

Richmond.


On 28/4/2018 8:34 pm, Richmond Mathewson wrote:

Probably both . . .

So, there I am opening an on-going project I have been "somewhat 
remiss" about of late

what with one thing and another.

Now this project has a ton of images made via the Object/New 
Control/Image menu
and for their image data in their property panels are referred to a 
folder called "rez"

that resides in the same folder as my stack.

Now when I set up the stack the source field in the property panels 
went something

like this:

/Users/richmondmathewson/Desktop/myCrap/rez/c7.png

and "everything worked perfectly" . . .

on reopening the stack the image data does not show up
and the source fields contain this sort of thing:

rez/c7.png

now this "just won't do" as the . . . well, never mind; probably that 
is too filthy a joke for the Use-List.


So . . . presumably, I need a sort of 'set the default file path' 
script in my openScript thang?


Richmond.


___
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


Down a leafy lane or up queer street?

2018-04-28 Thread Richmond Mathewson via use-livecode

Probably both . . .

So, there I am opening an on-going project I have been "somewhat remiss" 
about of late

what with one thing and another.

Now this project has a ton of images made via the Object/New 
Control/Image menu
and for their image data in their property panels are referred to a 
folder called "rez"

that resides in the same folder as my stack.

Now when I set up the stack the source field in the property panels went 
something

like this:

/Users/richmondmathewson/Desktop/myCrap/rez/c7.png

and "everything worked perfectly" . . .

on reopening the stack the image data does not show up
and the source fields contain this sort of thing:

rez/c7.png

now this "just won't do" as the . . . well, never mind; probably that is 
too filthy a joke for the Use-List.


So . . . presumably, I need a sort of 'set the default file path' script 
in my openScript thang?


Richmond.
___
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: Question: script only stacks in iOS?

2018-04-28 Thread prothero--- via use-livecode
Thanks Jacqueline. 
I was thinking that might be the case, but got tired of fiddling around and 
thought I’d ask, to be sure.
Best,
Bill

William Prothero
http://earthlearningsolutions.org

> On Apr 27, 2018, at 11:12 PM, J. Landman Gay via use-livecode 
>  wrote:
> 
>> On 4/27/18 4:04 PM, William Prothero via use-livecode wrote:
>> Folks:
>> I can’t seem to get an external script only stack to get assigned to the 
>> “Stacks” list for an iOS app in LC 9.0.0. Thus, it appears to me that all 
>> stacks must be substacks in iOS. Is this true?
> 
> You should be able to add them in the Copy Files pane. They aren't really 
> stacks until after they load.
> 
> -- 
> 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: OpenLanguage: abstract syntax trees

2018-04-28 Thread Mark Smith via use-livecode
Sign me up :)



--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: Mac app code signing for beginners

2018-04-28 Thread Mark Smith via use-livecode
graham, do your apps expire and need resigning after a year?



--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: Question: script only stacks in iOS?

2018-04-28 Thread J. Landman Gay via use-livecode

On 4/27/18 4:04 PM, William Prothero via use-livecode wrote:

Folks:
I can’t seem to get an external script only stack to get assigned to the 
“Stacks” list for an iOS app in LC 9.0.0. Thus, it appears to me that all 
stacks must be substacks in iOS. Is this true?


You should be able to add them in the Copy Files pane. They aren't 
really stacks until after they load.


--
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