[squeak-dev] File Seection question

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
8 messages Options
Reply | Threaded
Open this post in threaded view
|

[squeak-dev] File Seection question

Javier Reyes-2
Hello All,

I need a file selection dialog , but when using FileList, FileList2 o FileChooser, I get a list of remote sites like Squeakland, SuperSwiki, or Squeak related ftp sites that have no meaning for the users of my app. How can I get rid of that ?

What I use now (from FileChooser example1):   

| fc stream |
    fc := FileChooser new.
    fc initalizeAsDialogBox.
    stream := fc open.


Thanks in advance,

                                 Javier Reyes


Reply | Threaded
Open this post in threaded view
|

RE: [squeak-dev] File Seection question

Gary Chambers-4
There's always the UI Enhancements... with the FileDialogWindow. Quite configurable.
-----Original Message-----
From: [hidden email] [mailto:[hidden email]]On Behalf Of Javier Reyes
Sent: 26 March 2008 5:36 PM
To: The general-purpose Squeak developers list
Subject: [squeak-dev] File Seection question

Hello All,

I need a file selection dialog , but when using FileList, FileList2 o FileChooser, I get a list of remote sites like Squeakland, SuperSwiki, or Squeak related ftp sites that have no meaning for the users of my app. How can I get rid of that ?

What I use now (from FileChooser example1):   

| fc stream |
    fc := FileChooser new.
    fc initalizeAsDialogBox.
    stream := fc open.


Thanks in advance,

                                 Javier Reyes


Reply | Threaded
Open this post in threaded view
|

Re: [squeak-dev] File Seection question

Bert Freudenberg
In reply to this post by Javier Reyes-2

On Mar 26, 2008, at 18:36 , Javier Reyes wrote:
> Hello All,
>
> I need a file selection dialog , but when using FileList, FileList2  
> o FileChooser, I get a list of remote sites like Squeakland,  
> SuperSwiki, or Squeak related ftp sites that have no meaning for the  
> users of my app. How can I get rid of that ?


ServerDirectory resetServers

... and remove any servers in the prefs/knownServers/ directory.

- Bert -



Reply | Threaded
Open this post in threaded view
|

Re: [squeak-dev] File Seection question

Javier Reyes-2
Thanks very much Bert. Got it.

         Javier

On Wed, Mar 26, 2008 at 6:58 PM, Bert Freudenberg <[hidden email]> wrote:

On Mar 26, 2008, at 18:36 , Javier Reyes wrote:
> Hello All,
>
> I need a file selection dialog , but when using FileList, FileList2
> o FileChooser, I get a list of remote sites like Squeakland,
> SuperSwiki, or Squeak related ftp sites that have no meaning for the
> users of my app. How can I get rid of that ?


ServerDirectory resetServers

... and remove any servers in the prefs/knownServers/ directory.

- Bert -






Reply | Threaded
Open this post in threaded view
|

Re: [squeak-dev] File Seection question

Javier Reyes-2
In reply to this post by Gary Chambers-4
Hi Gary,

I've had problems downloading it. I am using Squeak3.9-7067mac vm 3.8.18beta1U. I have tried the widgets (303) first , but it stops before finishing the loading gauge  with an "System Error handling window". I would like to copy the whole text window but it seems to freeze my VM. I would love to take  a look to them as they could be of great help to me. ¿Am I doing something wrong ?

All the best,
                         Javier

On Wed, Mar 26, 2008 at 6:46 PM, Gary Chambers <[hidden email]> wrote:
There's always the UI Enhancements... with the FileDialogWindow. Quite configurable.
-----Original Message-----
From: [hidden email] [mailto:[hidden email]]On Behalf Of Javier Reyes
Sent: 26 March 2008 5:36 PM
To: The general-purpose Squeak developers list
Subject: [squeak-dev] File Seection question

Hello All,

I need a file selection dialog , but when using FileList, FileList2 o FileChooser, I get a list of remote sites like Squeakland, SuperSwiki, or Squeak related ftp sites that have no meaning for the users of my app. How can I get rid of that ?

What I use now (from FileChooser example1):   

| fc stream |
    fc := FileChooser new.
    fc initalizeAsDialogBox.
    stream := fc open.


Thanks in advance,

                                 Javier Reyes






Reply | Threaded
Open this post in threaded view
|

RE: [squeak-dev] File Seection question

Gary Chambers-4
(Copied from UI list...)
 

With the Widgets stuff it is best to have as few Morphs onscreen while

loading. In particular, keep the central screen area clear (where the

progress appears) and disable any dockingbars/taskbars. Otherwise you may

run into problems since the Widgets affects display code and MC is not

atomic.

Regards, Gary.

-----Original Message-----
From: [hidden email] [mailto:[hidden email]]On Behalf Of Javier Reyes
Sent: 26 March 2008 6:32 PM
To: The general-purpose Squeak developers list
Subject: Re: [squeak-dev] File Seection question

Hi Gary,

I've had problems downloading it. I am using Squeak3.9-7067mac vm 3.8.18beta1U. I have tried the widgets (303) first , but it stops before finishing the loading gauge  with an "System Error handling window". I would like to copy the whole text window but it seems to freeze my VM. I would love to take  a look to them as they could be of great help to me. ¿Am I doing something wrong ?

All the best,
                         Javier

On Wed, Mar 26, 2008 at 6:46 PM, Gary Chambers <[hidden email]> wrote:
There's always the UI Enhancements... with the FileDialogWindow. Quite configurable.
-----Original Message-----
From: [hidden email] [mailto:[hidden email]]On Behalf Of Javier Reyes
Sent: 26 March 2008 5:36 PM
To: The general-purpose Squeak developers list
Subject: [squeak-dev] File Seection question

Hello All,

I need a file selection dialog , but when using FileList, FileList2 o FileChooser, I get a list of remote sites like Squeakland, SuperSwiki, or Squeak related ftp sites that have no meaning for the users of my app. How can I get rid of that ?

What I use now (from FileChooser example1):   

| fc stream |
    fc := FileChooser new.
    fc initalizeAsDialogBox.
    stream := fc open.


Thanks in advance,

                                 Javier Reyes






Reply | Threaded
Open this post in threaded view
|

RE: [squeak-dev] File Seection question

Gary Chambers-4
In reply to this post by Javier Reyes-2
And there's always the wiki... http://wiki.squeak.org/squeak/6005


Reply | Threaded
Open this post in threaded view
|

Re: [squeak-dev] File Seection question

Javier Reyes-2
In reply to this post by Gary Chambers-4
My screen had almost 100 Morphs ! :-)) I'll try it.

Thxs

On Wed, Mar 26, 2008 at 7:56 PM, Gary Chambers <[hidden email]> wrote:
(Copied from UI list...)
 

With the Widgets stuff it is best to have as few Morphs onscreen while

loading. In particular, keep the central screen area clear (where the

progress appears) and disable any dockingbars/taskbars. Otherwise you may

run into problems since the Widgets affects display code and MC is not

atomic.

Regards, Gary.

-----Original Message-----
From: [hidden email] [mailto:[hidden email]]On Behalf Of Javier Reyes
Sent: 26 March 2008 6:32 PM
To: The general-purpose Squeak developers list
Subject: Re: [squeak-dev] File Seection question

Hi Gary,

I've had problems downloading it. I am using Squeak3.9-7067mac vm 3.8.18beta1U. I have tried the widgets (303) first , but it stops before finishing the loading gauge  with an "System Error handling window". I would like to copy the whole text window but it seems to freeze my VM. I would love to take  a look to them as they could be of great help to me. ¿Am I doing something wrong ?

All the best,
                         Javier

On Wed, Mar 26, 2008 at 6:46 PM, Gary Chambers <[hidden email]> wrote:
There's always the UI Enhancements... with the FileDialogWindow. Quite configurable.
-----Original Message-----
From: [hidden email] [mailto:[hidden email]]On Behalf Of Javier Reyes
Sent: 26 March 2008 5:36 PM
To: The general-purpose Squeak developers list
Subject: [squeak-dev] File Seection question

Hello All,

I need a file selection dialog , but when using FileList, FileList2 o FileChooser, I get a list of remote sites like Squeakland, SuperSwiki, or Squeak related ftp sites that have no meaning for the users of my app. How can I get rid of that ?

What I use now (from FileChooser example1):   

| fc stream |
    fc := FileChooser new.
    fc initalizeAsDialogBox.
    stream := fc open.


Thanks in advance,

                                 Javier Reyes