Re: Purge a stack from memory

2019-07-29 Thread Bob Sneidar via use-livecode
Yes long standing issue ever since v9 I believe. Might have been since v7. I 
have to do the same thing. Apparently copies of things like library stacks (not 
the originals, but the COPIES created when building a standalone) are left open 
in memory. Not sure why they do that. Anything opened in the build process that 
was not open already should be closed, and everything already open before the 
process should be re-opened. 

Bob S


> On Jul 26, 2019, at 16:20 , doc hawk via use-livecode 
>  wrote:
> 
> On Jul 26, 2019, at 3:40 PM, Bob Sneidar via use-livecode 
>  wrote:
>> 
>> K!
> 
> Don’t be scared.
> 
> Be *very* scared . . .
> 
> There is something wonky about the whole  in and out of memory thing.
> 
> My  project is (during development) a bunch of   main s tacks,   with an mcp  
> to  rule  them all .  . .
> 
> Anyway, when I bump the version of one of them that has already been used,  
> something seems to stick around, so that I get an endless cycle of the two  
> stacks causing popups asking what to do with the other.
> 
> I’ve taking to quitting livecode after bumping and just plain reloading . . .

___
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: Purge a stack from memory

2019-07-26 Thread doc hawk via use-livecode

On Jul 26, 2019, at 3:40 PM, Bob Sneidar via use-livecode 
 wrote:
> 
> K!

Don’t be scared.

Be *very* scared . . .

There is something wonky about the whole  in and out of memory thing.

My  project is (during development) a bunch of   main s tacks,   with an mcp  
to  rule  them all .  . .

Anyway, when I bump the version of one of them that has already been used,  
something seems to stick around, so that I get an endless cycle of the two  
stacks causing popups asking what to do with the other.

I’ve taking to quitting livecode after bumping and just plain reloading . . .


___
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: Purge a stack from memory

2019-07-26 Thread Bob Sneidar via use-livecode
K!

Bob S


> On Jul 26, 2019, at 13:25 , J. Landman Gay via use-livecode 
>  wrote:
> 
> The word you want is "delete" but you will have to be careful. If you delete 
> an open mainstack, it is purged from memory without saving, but the file 
> remains intact on disk. However if you delete a substack, it is removed from 
> the mainstack and if you subsequently save its mainstack the substack is gone 
> forever. So you will need to delete the mainstack first before opening the 
> mainstack B that contains substack X.
> 
> If they are both open at the same time who knows which one will be targeted 
> for deletion.
> --
> 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: Purge a stack from memory

2019-07-26 Thread J. Landman Gay via use-livecode
The word you want is "delete" but you will have to be careful. If you 
delete an open mainstack, it is purged from memory without saving, but the 
file remains intact on disk. However if you delete a substack, it is 
removed from the mainstack and if you subsequently save its mainstack the 
substack is gone forever. So you will need to delete the mainstack first 
before opening the mainstack B that contains substack X.


If they are both open at the same time who knows which one will be targeted 
for deletion.

--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.com
On July 26, 2019 2:09:59 PM Paul Dupuis via use-livecode 
 wrote:



I know this comes up again and again, is there some counterpart to
"revLoadedStacks(application)" that can PURGE a stack from memory?

If you have a stack open, say stack "A" and you open a different stack
file with a stack called "A", the IDE presents a message about stacks
with the same name and what do you want to do with essentially "Cancel"
(opening the new stack) or "Purge" (the old stack without saving) or
"Save" (the old stack and purge)

What does the IDE do to purge a stack?

I ask as I have the following case:

I have a stack open in the IDE (Call it "A") that uses another stack
(not a substack), call it "X" as a library stack. That stack needs to
make a scripted change to another mainstack (call it "B") with a
substack, also  it "X", with the same name as the library stack (yes,
the naming could have been better, but these are old stack made by
different people and renaming stuff would be a real pain in the butt)

I have tried:
stop using stack "X"
set the destroyStack of stack "X" to true
close stack "X"
wait 0 with messages -- give time to close and remove the stack from memory

-- then open the other stack "X"
-- and do what I need

Yet when I try this, I get the IDE message about stacks of the same name.

Any tips on how to positively, absolutely purge a stack from memory?

___
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


Purge a stack from memory

2019-07-26 Thread Paul Dupuis via use-livecode
I know this comes up again and again, is there some counterpart to 
"revLoadedStacks(application)" that can PURGE a stack from memory?


If you have a stack open, say stack "A" and you open a different stack 
file with a stack called "A", the IDE presents a message about stacks 
with the same name and what do you want to do with essentially "Cancel" 
(opening the new stack) or "Purge" (the old stack without saving) or 
"Save" (the old stack and purge)


What does the IDE do to purge a stack?

I ask as I have the following case:

I have a stack open in the IDE (Call it "A") that uses another stack 
(not a substack), call it "X" as a library stack. That stack needs to 
make a scripted change to another mainstack (call it "B") with a 
substack, also  it "X", with the same name as the library stack (yes, 
the naming could have been better, but these are old stack made by 
different people and renaming stuff would be a real pain in the butt)


I have tried:
stop using stack "X"
set the destroyStack of stack "X" to true
close stack "X"
wait 0 with messages -- give time to close and remove the stack from memory

-- then open the other stack "X"
-- and do what I need

Yet when I try this, I get the IDE message about stacks of the same name.

Any tips on how to positively, absolutely purge a stack from memory?

___
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