Re: Message Box placement

2003-09-08 Thread Richard Gaskin
Robert Brenstein wrote:

> I am not sure whether this projects really fits in terms of
> mechanics, but SourceForge.net is the traditional place for open
> source projects.

Scott Raney had recommended it, so in accordance with his preferences and
the consensus here that's where it will be.

-- 
 Richard Gaskin 
 Fourth World Media Corporation
 Developer of WebMerge: Publish any database on any Web site
 ___
 [EMAIL PROTECTED]   http://www.FourthWorld.com
 Tel: 323-225-3717   AIM: FourthWorldInc

___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard


Re: Message Box placement

2003-09-08 Thread Robert Brenstein
I see a consensus:  it initially opens at the bottom of the
windowbouldingrect, and remembers its position for subsequent sessions.
Great.

Now we have two questions:

1. Who writes it?

2, Where do we post things for review and testing?

I am not sure whether this projects really fits in terms of 
mechanics, but SourceForge.net is the traditional place for open 
source projects.

Robert
___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard


Re: Message Box placement

2003-09-08 Thread xbury . cs

Richard said...

>1. Who writes it?

I have already made a replacement... 
It's included in the script editor X installer.
Just a substack. The TypeAhead is not finished so it is commented out.
But feel free to tamper with it!

>2, Where do we post things for review and testing?

I'll make a separate installer and post it on my website...

-=-
Xavier Bury
TNS NT LAN Server
ext 6465






Richard Gaskin <[EMAIL PROTECTED]>
Sent by: [EMAIL PROTECTED]
05/09/03 22:08
Please respond to metacard

        
        To:        <[EMAIL PROTECTED]>
        cc:        ^
        Subject:        Re: Message Box placement



[EMAIL PROTECTED] wrote:

> Pierre saysTop right
> 
> Shari says Bottom.
> 
> Hugh says Any way I can get it. I'd also like it to be intelligent enough to
> move and resize if necessary when the screen gets full, preferably auto-typing
> by telepathy and the ability to make tea would be considered a bonus.

I see a consensus:  it initially opens at the bottom of the
windowbouldingrect, and remembers its position for subsequent sessions.

It seems no one like the current dynamic repositioning, and that we're all
pretty much on the same page about remedies.

Now we have two questions:

1. Who writes it?

2, Where do we post things for review and testing?

-- 
 Richard Gaskin 
 Fourth World Media Corporation
 Developer of WebMerge: Publish any database on any Web site
 ___
 [EMAIL PROTECTED]       http://www.FourthWorld.com
 Tel: 323-225-3717                       AIM: FourthWorldInc

___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard




Visit us at http://www.clearstream.com
  
IMPORTANT MESSAGE

Internet communications are not secure and therefore Clearstream International does not accept legal responsibility for the contents of this message.

The information contained in this e-mail is confidential and may be legally privileged. It is intended solely for the addressee. If you are not the intended recipient, any disclosure, copying, distribution or any action taken or omitted to be taken in reliance on it, is prohibited and may be unlawful. Any views expressed in this e-mail are those of the individual sender, except where the sender specifically states them to be the views of Clearstream International or of any of its affiliates or subsidiaries.

END OF DISCLAIMER


Re: Message Box placement

2003-09-07 Thread Richard Gaskin
MisterX wrote:

> I had a great scheme for the msg box placement.
> It followed the bottom of the current stack.

It seems that most here would prefer the traditional HC/SC placement, near
the bottom of the monitor.

-- 
 Richard Gaskin 
 Fourth World Media Corporation
 Developer of WebMerge: Publish any database on any Web site
 ___
 [EMAIL PROTECTED]   http://www.FourthWorld.com
 Tel: 323-225-3717   AIM: FourthWorldInc

___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard


Re: Message Box placement

2003-09-07 Thread Ray Horsley
Here's a handler I use for all window placements.  Feel free to use it.


Ray Horsley
Developer, LinkIt! Software




on placeWindow win,placeWhere
  put the screenRect into scrRct
  if placeWhere = "Center" then
put (item 3 of scrRct - width of window win)/2 into tmpNum
put round(tmpNum) into myTopLeft
put (item 4 of scrRct - height of window win)/2 into tmpNum
put round(tmpNum) into item 2 of myTopLeft
if placeWhere = "CenterHigh" then
  subtract 50 from item 2 of myTopLeft
else if placeWhere = "CenterLow" then
  add 50 to item 2 of myTopLeft
end if
if win = "€Print Tests€" and the platform = "MacOS" then put 40 into
item 2 of myTopLeft
set topLeft of window win to myTopLeft
  else if placeWhere = "TopLeft" then
if the platform = "MacOS" then
  set topLeft of window win to "0,20"
else set topLeft of window win to "0,0"
  else if placeWhere = "CenterRight" then
put item 3 of scrRct - width of window win - 5 into myTopLeft
put (item 4 of scrRct - height of window win)/2-3 into tmpNum
put round(tmpNum) into item 2 of myTopLeft
set topLeft of window win to myTopLeft
  else if placeWhere = "CenterBottom" then
put (item 3 of scrRct - width of window win)/2 into tmpNum
put round(tmpNum) into myTopLeft
put (item 4 of scrRct - height of window win)-3 into tmpNum
put round(tmpNum) into item 2 of myTopLeft
if the platForm is not "MacOS" then put (item 2 of myTopLeft)-32 into
item 2 of myTopLeft
set topLeft of window win to myTopLeft
  else if placeWhere = "CenterTop" then
put (item 3 of scrRct - width of window win)/2 into tmpNum
put round(tmpNum) into myTopLeft
put 42 into item 2 of myTopLeft
set topLeft of window win to myTopLeft
  end if
end placeWindow

___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard


RE: Message Box placement

2003-09-07 Thread MisterX
Just reopened my mac 3 years after! could use
another home server!

Also lots of HC goodies stocked in there!

So I launched this stack compact agent stack I made long
ago... still runs!
http://www.monsieurx.com/hyper/screenshots/StackCompaquer.gif

I had a great scheme for the msg box placement.
It followed the bottom of the current stack.
XOS feature! Also did it for the tools palette with
smart screen placement if too left or too right!

I'll try to fish it out and post it ;)


> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of MisterX
> Sent: Saturday, September 06, 2003 14:13
> To: [EMAIL PROTECTED]
> Subject: RE: Message Box placement
>
>
> This sounds like a good scheme but some stacks can have
> the same name and may be positioned elsewhere...
>
> That's why I do it for each stack a cprop to be
> updated on resizestack and/or closestack...
>
> a couple cents...
>
> > -Original Message-
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED] Behalf Of Hervé Chaudet
> > Sent: Saturday, September 06, 2003 09:09
> > To: [EMAIL PROTECTED]
> > Subject: Re: Message Box placement
> >
> >
> > Just a suggestion:  why not use a preference file that keeps the last
> > placement of the message box (if the coordinates are coherent with the
> > screen size) ?
> > The same method can be used for the tools, ...
> >
> > H. Chaudet
> >
> > 
> > -
> > Herve Chaudet  e-mail :
> > [EMAIL PROTECTED]
> >mobile : 33-(0)-608-05-98-09
> >   Unité UPRES EA 2672
> >Faculte de Medecine - 27, Bd Jean Moulin - 13385 Marseille cedex 5 -
> > France
> >Tel 33-(0)-491-79-19-10 ; Fax 33-(0)-491-79-40-13
> >   Service de l'Information Medicale
> >Hopital Nord - Chemin des Bourrelly - 13326 Marseille cedex 15 -
> > France
> >Tel 33-(0)-491-96-80-20
> > 
> > -
> >
> > ___
> > metacard mailing list
> > [EMAIL PROTECTED]
> > http://lists.runrev.com/mailman/listinfo/metacard
> >
>
> ___
> metacard mailing list
> [EMAIL PROTECTED]
> http://lists.runrev.com/mailman/listinfo/metacard
>

___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard


Re: Message Box placement

2003-09-07 Thread Tariel Gogoberidze

> Thu, 04 Sep 2003 21:48:55 -0700
> Subject: Message Box placement
> From: Richard Gaskin <[EMAIL PROTECTED]>

> 
> Currently the Message Box is opened below and center to the topmost window.
> Personally, I prefer it to open at the bottom of the display (aboce the
> Dock/Task Bar).
> 
> In the next rev of the IDE, would you folks prefer to have it centered to
> the topstack or at the bottom of the display?
> 


I always drag it to the bottom. Will be very convenient to have it there by
default

best regards
Tariel Gogoberidze

___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard


RE: Message Box placement

2003-09-06 Thread MisterX
This sounds like a good scheme but some stacks can have
the same name and may be positioned elsewhere...

That's why I do it for each stack a cprop to be
updated on resizestack and/or closestack...

a couple cents...

> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of Hervé Chaudet
> Sent: Saturday, September 06, 2003 09:09
> To: [EMAIL PROTECTED]
> Subject: Re: Message Box placement
>
>
> Just a suggestion:  why not use a preference file that keeps the last
> placement of the message box (if the coordinates are coherent with the
> screen size) ?
> The same method can be used for the tools, ...
>
> H. Chaudet
>
> 
> -
> Herve Chaudet  e-mail :
> [EMAIL PROTECTED]
>mobile : 33-(0)-608-05-98-09
>   Unité UPRES EA 2672
>Faculte de Medecine - 27, Bd Jean Moulin - 13385 Marseille cedex 5 -
> France
>Tel 33-(0)-491-79-19-10 ; Fax 33-(0)-491-79-40-13
>   Service de l'Information Medicale
>Hopital Nord - Chemin des Bourrelly - 13326 Marseille cedex 15 -
> France
>Tel 33-(0)-491-96-80-20
> 
> -
>
> ___
> metacard mailing list
> [EMAIL PROTECTED]
> http://lists.runrev.com/mailman/listinfo/metacard
>

___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard


Re: Message Box placement

2003-09-06 Thread Hervé Chaudet
Just a suggestion:  why not use a preference file that keeps the last  
placement of the message box (if the coordinates are coherent with the  
screen size) ?
The same method can be used for the tools, ...

H. Chaudet

 
-
Herve Chaudet  e-mail :  
[EMAIL PROTECTED]
  mobile : 33-(0)-608-05-98-09
 Unité UPRES EA 2672
  Faculte de Medecine - 27, Bd Jean Moulin - 13385 Marseille cedex 5 -  
France
  Tel 33-(0)-491-79-19-10 ; Fax 33-(0)-491-79-40-13
 Service de l'Information Medicale
  Hopital Nord - Chemin des Bourrelly - 13326 Marseille cedex 15 -  
France
  Tel 33-(0)-491-96-80-20
 
-

___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard


Re: Message Box placement

2003-09-05 Thread Richard Gaskin
[EMAIL PROTECTED] wrote:

> Pierre saysTop right
> 
> Shari says Bottom.
> 
> Hugh says Any way I can get it. I'd also like it to be intelligent enough to
> move and resize if necessary when the screen gets full, preferably auto-typing
> by telepathy and the ability to make tea would be considered a bonus.

I see a consensus:  it initially opens at the bottom of the
windowbouldingrect, and remembers its position for subsequent sessions.

It seems no one like the current dynamic repositioning, and that we're all
pretty much on the same page about remedies.

Now we have two questions:

1. Who writes it?

2, Where do we post things for review and testing?

-- 
 Richard Gaskin 
 Fourth World Media Corporation
 Developer of WebMerge: Publish any database on any Web site
 ___
 [EMAIL PROTECTED]   http://www.FourthWorld.com
 Tel: 323-225-3717   AIM: FourthWorldInc

___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard


Re: Message Box placement

2003-09-05 Thread FlexibleLearning
Pierre saysTop right

Shari says Bottom.

Hugh says Any way I can get it. I'd also like it to be intelligent enough to move and resize if necessary when the screen gets full, preferably auto-typing by telepathy and the ability to make tea would be considered a bonus.

/H
_
Hugh Senior
The Flexible Learning Company
Consultant Programming & Software Solutions
Fax/Voice: +44 (0)1483.27 87 27
Email: mailto:[EMAIL PROTECTED]
Web: www.flexibleLearning.com


Re: Message Box placement

2003-09-05 Thread Ray G. Miller
From: Richard Gaskin <[EMAIL PROTECTED]>

> Currently the Message Box is opened below and center to the topmost 
window.
> Personally, I prefer it to open at the bottom of the display (aboce the
Dock/Task Bar).

> In the next rev of the IDE, would you folks prefer to have it 
centered > to the topstack or at the bottom of the display?

I would prefer the bottom of the windowBoundingRect rather than the 
topStack or the screenRect...



Ray G. Miller
__
Turtlelips Productions
4009 Everett Ave.
Oakland, CA 94602
MailTo:[EMAIL PROTECTED]
(V) 510.530.1971
(F) 510.482.3491
___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard


Re: Message Box placement

2003-09-05 Thread Shari
In the next rev of the IDE, would you folks prefer to have it centered to
the topstack or at the bottom of the display?
--
 Richard Gaskin
Bottom of the screen.
--
--Shareware Games for the Mac--
http://www.gypsyware.com
___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard


Re: Message Box placement

2003-09-05 Thread Pierre Sahores
Le ven 05/09/2003 à 06:48, Richard Gaskin a écrit :
> Currently the Message Box is opened below and center to the topmost window.
> Personally, I prefer it to open at the bottom of the display (aboce the
> Dock/Task Bar).
> 
> In the next rev of the IDE, would you folks prefer to have it centered to
> the topstack or at the bottom of the display?

Hi Richard,

For my own, i always set it to the top right of the main screen, beside
the menubar stack.

Bests, Pierre

___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard


Re: Message Box placement

2003-09-05 Thread Robert Brenstein
Currently the Message Box is opened below and center to the topmost window.
Personally, I prefer it to open at the bottom of the display (aboce the
Dock/Task Bar).
In the next rev of the IDE, would you folks prefer to have it centered to
the topstack or at the bottom of the display?
I agree that the current workings are unsatisfactory and having it at 
the bottom is better. However, I would really prefer that it 
remembers its last position and size (but the script needs to check 
then whether it is on any screen when opening, since the screen 
estate might have changed). This would allow each of us to keep it at 
a personally preferable position.

The same actually goes for script editor windows, it would be nice if 
each occurance of edit window saved its location and size. This 
should not be difficult to do.

Robert
___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard


Re: Message Box placement

2003-09-04 Thread Richard Gaskin
Ken Ray wrote:

> I'd like it at the bottom of the display, but if the Dock/Task Bar is
> hidden at the bottom of the screen, the MB needs to be far enough away
> that a casual slide down the MB won't accidentally activate the
> Dock/Task Bar.

Yes, it would use the windowboundingrect rather than screenrect, which would
account for both the Dock and the Task Bar.

-- 
 Richard Gaskin 
 Fourth World Media Corporation
 Developer of WebMerge: Publish any database on any Web site
 ___
 [EMAIL PROTECTED]   http://www.FourthWorld.com
 Tel: 323-225-3717   AIM: FourthWorldInc

___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard


RE: Message Box placement

2003-09-04 Thread MisterX
Personally, I prefer that it remembers where it was
last.

But by default it opens below my home stack unless
this one is too low, then it opens on top of the home
stack or at the bottomleft of the screen...

> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of Richard Gaskin
> Sent: Friday, September 05, 2003 06:49
> To: MetaCard List
> Subject: Message Box placement
> 
> 
> Currently the Message Box is opened below and center to the 
> topmost window.
> Personally, I prefer it to open at the bottom of the display (aboce the
> Dock/Task Bar).
> 
> In the next rev of the IDE, would you folks prefer to have it centered to
> the topstack or at the bottom of the display?
> 
> -- 
>  Richard Gaskin 
>  Fourth World Media Corporation
>  Developer of WebMerge: Publish any database on any Web site
>  ___
>  [EMAIL PROTECTED]   http://www.FourthWorld.com
>  Tel: 323-225-3717   AIM: FourthWorldInc
> 
> ___
> metacard mailing list
> [EMAIL PROTECTED]
> http://lists.runrev.com/mailman/listinfo/metacard
> 
___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard


RE: Message Box placement

2003-09-04 Thread Ken Ray
I'd like it at the bottom of the display, but if the Dock/Task Bar is
hidden at the bottom of the screen, the MB needs to be far enough away
that a casual slide down the MB won't accidentally activate the
Dock/Task Bar.

Just my 2 cents,

Ken Ray
Sons of Thunder Software
Email: [EMAIL PROTECTED]
Web Site: http://www.sonsothunder.com/ 

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf Of Richard Gaskin
> Sent: Thursday, September 04, 2003 11:49 PM
> To: MetaCard List
> Subject: Message Box placement
> 
> 
> Currently the Message Box is opened below and center to the 
> topmost window. Personally, I prefer it to open at the bottom 
> of the display (aboce the Dock/Task Bar).
> 
> In the next rev of the IDE, would you folks prefer to have it 
> centered to the topstack or at the bottom of the display?
> 
> -- 
>  Richard Gaskin 
>  Fourth World Media Corporation
>  Developer of WebMerge: Publish any database on any Web site  
> ___
>  [EMAIL PROTECTED]   http://www.FourthWorld.com
>  Tel: 323-225-3717   AIM: FourthWorldInc
> 
> ___
> metacard mailing list
> [EMAIL PROTECTED] 
> http://lists.runrev.com/mailman/listinfo/metac> ard
> 


___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard