Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. ImageMorph allInstances do: [ :im |
  2. im bounds origin x = 0 & im bounds origin y = 0 &
  3. im bounds corner x = 1 & im bounds corner y = 1 &
  4. im height = 1 & im width = 1
  5. ifTrue: [ im inspect]
  6. ].
  7.  
  8. ImageMorph allInstances collect: [ :im |
  9. im bounds origin x = 0 & im bounds origin y = 0 &
  10. im bounds corner x = 1 & im bounds corner y = 1 &
  11. im height = 1 & im width = 1
  12. ifTrue: [ im height = 100. im width = 100 ]
  13. ].
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement