Karl Ramberg uploaded a new version of MorphicExtras to project Etoys:
http://source.squeak.org/etoys/MorphicExtras-kfr.43.mcz==================== Summary ====================
Name: MorphicExtras-kfr.43
Author: kfr
Time: 14 October 2011, 7:46:25 pm
UUID: 1f0527c7-2f1c-5844-9b52-38ebf3c05f67
Ancestors: MorphicExtras-kfr.42
Fix ObjectsTool entry. Renamed morph to player.
=============== Diff against MorphicExtras-kfr.42 ===============
Item was changed:
----- Method: WebCamMorph class>>additionsToViewerCategories (in category 'scripting') -----
additionsToViewerCategories
"Answer a list of (<categoryName> <list of category specs>) pairs that characterize the phrases this kind of morph wishes to add to various Viewer categories."
^ #(
(#'camera' (
(slot resolution '160x120, 320x240 or 640x480'
WebCamResolution readWrite Player getWebCamResolution Player setWebCamResolution:)
(slot cameraIsOn 'Whether the camera is on/off' Boolean readWrite Player getWebCamIsOn Player setWebCamIsOn:)
+ (slot useFrameSize 'Resize the player to match the cameras frame size'
- (slot useFrameSize 'Resize the morph to match the cameras frame size'
Boolean readWrite Player getUseFrameSize Player setUseFrameSize:)
+ (slot lastFrame 'A player with the last frame' Player readOnly Player getLastFrame unused unused)
- (slot lastFrame 'A morph with the last frame' Player readOnly Player getLastFrame unused unused)
(slot graphic 'The picture currently being worn' Graphic readOnly Player getVideoGraphic unused unused)
))
)
!
Item was changed:
----- Method: WebCamMorph class>>descriptionForPartsBin (in category 'parts bin') -----
descriptionForPartsBin
^ self
+ partName: 'Camera' translatedNoop
- partName: 'WebCam' translatedNoop
categories: {'Multimedia' translatedNoop}
+ documentation: 'Web camera player.' translatedNoop
- documentation: 'WebCam player.' translatedNoop
sampleImageForm: self icon!
_______________________________________________
etoys-dev mailing list
[hidden email]
http://lists.squeakland.org/mailman/listinfo/etoys-dev