Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
Post it morphs or slides for a presentation
Last updated at 12:10 am UTC on 10 January 2022
To get a facility to create named post-it Morphs or slides for a presentation you may add the command

 PasteUpMorph new setNameTo: 'myNote'; extent: 640@480; openInHand.

to a menu and ask with a FillInTheBlankMorph for the name.

 PasteUpMorph new setNameTo: (FillInTheBlankMorph request: 'What the name of the card?'); extent: 640@480; openInHand.

You may as well add a property #isNoteCard or #isSlide so that later you may retrieve all your note cards easier in the image.

 PasteUpMorph new 

 setNameTo: (FillInTheBlankMorph request: 'What the name of the card?'); 

 setProperty: #isNoteCard toValue: true; 

 extent: 640@480; 

 openInHand.

See also EventRecorderMorph