How do I open my clock morph full screen?

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

How do I open my clock morph full screen?

Louis LaBrunda
Hi Everybody,

I now have a clock morph that uses a picture of a clock as the clock face and pictures of clock
hands for the hands.  I would like to open this full screen and without any other Squeak
windows open.  Any ideas?

Lou
--
Louis LaBrunda
Keystone Software Corp.
SkypeMe callto://PhotonDemon


Reply | Threaded
Open this post in threaded view
|

Re: How do I open my clock morph full screen?

Bob Arning-2

put this in a workspace and doit


DisplayScreen fullScreenOn.
sm _ StringMorph contents: 'hello world'.    "or your clock here"
tm _ TransformationMorph new asFlexOf: sm.
tm extent: World extent.
tm position: 0@0.
World removeAllMorphs.
tm openInWorld.


On 12/19/17 5:04 PM, Louis LaBrunda wrote:
Hi Everybody,

I now have a clock morph that uses a picture of a clock as the clock face and pictures of clock
hands for the hands.  I would like to open this full screen and without any other Squeak
windows open.  Any ideas?

Lou



Reply | Threaded
Open this post in threaded view
|

How do I open my clock morph full screen?

Louis LaBrunda
Thanks Bob,

I need to play around with scaling my clock to fit the screen (height - square clock -
rectangular screen) but that can wait until tomorrow.

Lou


On Tue, 19 Dec 2017 17:41:24 -0500, Bob Arning <[hidden email]> wrote:

>put this in a workspace and doit
>
>
>DisplayScreen fullScreenOn.
>sm _ StringMorph contents: 'hello world'.    "or your clock here"
>tm _ TransformationMorph new asFlexOf: sm.
>tm extent: World extent.
>tm position: 0@0.
>World removeAllMorphs.
>tm openInWorld.
>
>
>On 12/19/17 5:04 PM, Louis LaBrunda wrote:
>> Hi Everybody,
>>
>> I now have a clock morph that uses a picture of a clock as the clock face and pictures of clock
>> hands for the hands.  I would like to open this full screen and without any other Squeak
>> windows open.  Any ideas?
>>
>> Lou
--
Louis LaBrunda
Keystone Software Corp.
SkypeMe callto://PhotonDemon


Reply | Threaded
Open this post in threaded view
|

How do I open my clock morph full screen?

Louis LaBrunda
In reply to this post by Bob Arning-2
Hey Bob,

A few more questions.

Is there a keyboard or mouse sequence that gets things back to normal?
How do I obtain the screen size is?

Lou

On Tue, 19 Dec 2017 17:41:24 -0500, Bob Arning <[hidden email]> wrote:

>put this in a workspace and doit
>
>
>DisplayScreen fullScreenOn.
>sm _ StringMorph contents: 'hello world'.    "or your clock here"
>tm _ TransformationMorph new asFlexOf: sm.
>tm extent: World extent.
>tm position: 0@0.
>World removeAllMorphs.
>tm openInWorld.
>
>
>On 12/19/17 5:04 PM, Louis LaBrunda wrote:
>> Hi Everybody,
>>
>> I now have a clock morph that uses a picture of a clock as the clock face and pictures of clock
>> hands for the hands.  I would like to open this full screen and without any other Squeak
>> windows open.  Any ideas?
>>
>> Lou
--
Louis LaBrunda
Keystone Software Corp.
SkypeMe callto://PhotonDemon


Reply | Threaded
Open this post in threaded view
|

Re: How do I open my clock morph full screen?

Bob Arning-2



On 12/20/17 9:22 AM, Louis LaBrunda wrote:
Hey Bob,

A few more questions.

Is there a keyboard or mouse sequence that gets things back to normal?
It's in the appearance menu:
How do I obtain the screen size is?
World extent

Lou

On Tue, 19 Dec 2017 17:41:24 -0500, Bob Arning [hidden email] wrote:

put this in a workspace and doit


DisplayScreen fullScreenOn.
sm _ StringMorph contents: 'hello world'.    "or your clock here"
tm _ TransformationMorph new asFlexOf: sm.
tm extent: World extent.
tm position: 0@0.
World removeAllMorphs.
tm openInWorld.


On 12/19/17 5:04 PM, Louis LaBrunda wrote:
Hi Everybody,

I now have a clock morph that uses a picture of a clock as the clock face and pictures of clock
hands for the hands.  I would like to open this full screen and without any other Squeak
windows open.  Any ideas?

Lou