Re: forms and prints

2003-09-19 Thread Frank Di Luzio
I can offer 2 suggestions to get you started: 1. check out www.director-online.com for fdf. These are Acrobat pdf forms. I have used this method with good results. To distribute, the fdf data can be sent seperately if the recipient has the pdf form doc already. If not, you need to send both. 2.

RE: forms and prints

2003-09-19 Thread Elvin Certeza
Thanks for the info. I found them quite useful. I will look into them... [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learnin

MIAWs: close, forget....and VOID?

2003-09-19 Thread Mendelsohn, Michael
Hi list... When closing a MIAW, is it necessary to void a global variable for it after you do the close() and forget() methods on it? In other words... -- gVow is a global referring to window("Garbage") -- closing the MIAW: gVow.close() gVow.forget() -- now, is this necessary: gVow = VOID -- .

Re: MIAWs: close, forget....and VOID?

2003-09-19 Thread alpha
> When closing a MIAW, is it necessary to void a global variable for it > after you do the close() and forget() methods on it? Yes, you need to void it (or set it to 0, or "fido", or something else). Until you do, it contains the reference to the MIAW, and Director won't release its memory. Cor

Re: MIAWs: close, forget....and VOID?

2003-09-19 Thread Tab Julius
There is no need to void the variable, at least not from Director's point of view. If you want to do it for the sake of cleanliness and/or debugging, you could, but there's no technical need. - Tab At 01:16 PM 9/19/03, Mendelsohn, Michael wrote: Hi list... When closing a MIAW, is it necessary

Re: MIAWs: close, forget....and VOID?

2003-09-19 Thread Howdy-Tzi
On Friday, Sep 19, 2003, at 12:16 America/Chicago, Mendelsohn, Michael wrote: Hi list... When closing a MIAW, is it necessary to void a global variable for it after you do the close() and forget() methods on it? Rather than void I use 0. I don't let uninitialized (void) variables float around i

Re: MIAWs: close, forget....and VOID?

2003-09-19 Thread alpha
> There is no need to void the variable, at least not from Director's point > of view. If you want to do it for the sake of cleanliness and/or > debugging, you could, but there's no technical need. So there you have it, two directly contradictory answers. Aren't these lists wonderful? Tab's p

RE: MIAWs: close, forget....and VOID?

2003-09-19 Thread Thomas Higgins
> When closing a MIAW, is it necessary to void a global variable for it > after you do the close() and forget() methods on it? > > In other words... > > -- gVow is a global referring to window("Garbage") > -- closing the MIAW: > > gVow.close() > gVow.forget() > > -- now, is this necessary: > gV

RE: MIAWs: close, forget....and VOID?

2003-09-19 Thread Thomas Higgins
Kerry, > Yes, you need to void it (or set it to 0, or "fido", or > something else). Until > you do, it contains the reference to the MIAW, and Director > won't release its > memory. When I test on my end the variable that used to refer to the window is set to zero, at least as far as put() is

RE: MIAWs: close, forget....and VOID?

2003-09-19 Thread Mendelsohn, Michael
Super quick responses! Thanks everyone. I appreciate it. - Michael M. [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learnin

Re: MIAWs: close, forget....and VOID?

2003-09-19 Thread Agustín María Rodríguez
Hi. Check this post from Jakob Hede Madsen: "Here is a behavior which closes the MIAW it sits in, and properly disposes of the MIAW, abiding common empirical experience of such struggles. Don't worry if you don't quite understand it, try it on anyway. --miawCloserButtonBhv property pWind

Re: MIAWs: close, forget....and VOID?

2003-09-19 Thread Buzz Kettles
At 11:04 AM -0700 9/19/03, you wrote: > There is no need to void the variable, at least not from Director's point of view. If you want to do it for the sake of cleanliness and/or debugging, you could, but there's no technical need. So there you have it, two directly contradictory answers. Aren'

RE: MIAWs: close, forget....and VOID?

2003-09-19 Thread Alex da Franca
At 11:07 Uhr -0700 19.09.2003, Thomas Higgins wrote: (that don't currently exist AFAIK but may have in previous releases). ah cool !! when do WE get this version YOU are apparently using currently ?! ;-) -- ||| a¿ex -- [To remove yourself from this list, or to change to digest mode, go to http:

Re: MIAWs: close, forget....and VOID?

2003-09-19 Thread Howdy-Tzi
On Friday, Sep 19, 2003, at 13:23 America/Chicago, Agustín María Rodríguez wrote: Hi. Check this post from Jakob Hede Madsen: Jakob's behavior is a groovy one, allowing MIAWs to close and forget themselves without crashing director; however the original question was whether a MIAW's variable n

RE: MIAWs: close, forget....and VOID?

2003-09-19 Thread alpha
> When I test on my end the variable that used to refer to the window is set > to zero, at least as far as put() is concerned the variable has a zero > value. Are you sure the window continues to linger in memory? If so, how are > you evidencing that it continues to exist? Just wanna be sure there

buddyAPI / MIAW / Dir-->Flash comm - all in one!!

2003-09-19 Thread Mendelsohn, Michael
Hi all... I'm using buddyAPI (v3.6, Windows) to copy some files using baCopyFileProgress(). You can set this method to hide its progress bar and use yours, and I made a Flash sprite to do that. You can also set this method to use a special callback handler (below) which would update whatever you

RE: buddyAPI / MIAW / Dir-->Flash comm - all in one!!

2003-09-19 Thread Mendelsohn, Michael
Oh, never mind. It turns out that no updatestage was the problem. [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and he

Re: MIAWs: close, forget....and VOID?

2003-09-19 Thread Daniel Nelson
Just this morning, I solved a baffling bug related to this. If an object in a MIAW passes its instance to an object held in another window (or maybe if the window is referenced in some other window...I didn't resolve which reference was actually causing the problem), then all references to the

Re: MIAWs: close, forget....and VOID? (going OT)

2003-09-19 Thread Jakob Hede Madsen
At 14:19 -0500 19/09/03, Howdy-Tzi wrote: Jakob's behavior is a groovy one, allowing MIAWs to close and forget themselves without crashing director; however the original question was whether a MIAW's variable needed to be zeroed after the MIAW was closed and forgotten normally, or whether Direc

Re: MIAWs: close, forget....and VOID?

2003-09-19 Thread Howdy-Tzi
On Friday, Sep 19, 2003, at 18:20 America/Chicago, Daniel Nelson wrote: Just this morning, I solved a baffling bug related to this. If an object in a MIAW passes its instance to an object held in another window (or maybe if the window is referenced in some other window...I didn't resolve which

Re: MIAWs: close, forget....and VOID? (going OT)

2003-09-19 Thread Daniel Nelson
Interesting. Late last month I asked the advice of a computer science professor whom I followed through four courses back in college. He wrote two course books to taught computer science through Java, yet he recommended that I stick with Director. He said that Director has enough of a user ba

Re: MIAWs: close, forget....and VOID?

2003-09-19 Thread Bruce Mitchener
Daniel Nelson wrote: Just this morning, I solved a baffling bug related to this. If an object in a MIAW passes its instance to an object held in another window (or maybe if the window is referenced in some other window...I didn't resolve which reference was actually causing the problem), then all

Re: MIAWs: close, forget....and VOID?

2003-09-19 Thread Howdy-Tzi
On Friday, Sep 19, 2003, at 19:38 America/Chicago, Bruce Mitchener wrote: Daniel Nelson wrote: Just this morning, I solved a baffling bug related to this. If an object in a MIAW passes its instance to an object held in another window (or maybe if the window is referenced in some other window...I

Re: MIAWs: close, forget....and VOID?

2003-09-19 Thread Daniel Nelson
> > > That's correct; the same thing happens with parent scripts as well. If > all their internal props aren't zeroed first, An internal property only needs to be cleared if there is a circular reference or in cases such as the one I mentioned, in which an object reference points to another obje

Re: MIAWs: close, forget....and VOID?

2003-09-19 Thread Bruce Mitchener
Howdy-Tzi wrote: That may not be the best plan. That error surfaces because there's something fundamentally wrong with the *code* trying to close or open the MIAW file. It makes more sense to track down the location of the code error (and this block a potential memory leak) than try to make the

Re: MIAWs: close, forget....and VOID?

2003-09-19 Thread Howdy-Tzi
On Friday, Sep 19, 2003, at 20:56 America/Chicago, Daniel Nelson wrote: That's correct; the same thing happens with parent scripts as well. If all their internal props aren't zeroed first, An internal property only needs to be cleared if there is a circular reference or in cases such as the one I

Re: MIAWs: close, forget....and VOID?

2003-09-19 Thread Daniel Nelson
> > > If you have a very complex app using Director, do you have any advice on > tracking down MIAW/parent script leaks? We have various LDMs, MIAWs, > parent scripts, etc, with data being shared between all of them, and we > have some leaks that are being very difficult to track down. My approac

Re: MIAWs: close, forget....and VOID? (going OT)

2003-09-19 Thread Rob Romanek
19/09/2003 7:22:31 PM, Jakob Hede Madsen <[EMAIL PROTECTED]> wrote: >You make me feel missed... you do all me miss right? ;-) >I guess at least some of you must have noticed my 'absence'. > >I have just been on a two day 'camp trip'(or whatever it's called) >with the whole "informatics" line of

Re: MIAWs: close, forget....and VOID? (going OT)

2003-09-19 Thread Alex da Franca
At 1:22 Uhr +0200 20.09.2003, Jakob Hede Madsen wrote: I guess, at some point soon, I will fade away completely from these lists, but maybe just for the social value keep 'hopping' at one. Hi Jakob, thank you for all the knowledge you shared with the community and the things I learned from you.

[XPOST] Movie in a Window manager parent script

2003-09-19 Thread Daniel Nelson
Hi Lists, I've made my window manager parent script (and its companion window forgetter parent script) available: http://www.bluejade.com/public_resources/director/window_manager.html Using a global instance of the window manager allows the stage or any MIAW to create and forget windows without