引用通过“代码”直接操作创建的 Squeak (Mophic) 变形;
如何引用(即编程)通过直接操作创建的 Morph,例如通过工作区中的 Squeak/Smalltalk 代码将文本框从耗材菜单拖到桌面? 当我通过 Squeak/Smalltalk 代码实例化 Morph 时,我还好(好吧,我刚刚学习 Morphic),但当我将 Morph 拖入存在时,我感到不知所措。
How do I reference (i.e. program) a Morph created by direct manipulation, for instance dragging a text box from the supplies menu to the desktop, via Squeak/Smalltalk code in say the workspace? I'm okay (well sort of - I'm just learning Morphic) when I instantiate a Morph via Squeak/Smalltalk code but I'm at a loss when I've dragged a Morph into existence.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
感谢 Squeak 邮件列表上的 Mike Stramba 提供的以下内容:-
将变形拖放到工作区上是一个好的开始(您必须
单击工作区标题中的“方块”,然后打开“创建
对删除变形的文本引用“选项)。
此外,当您创建变形时,它会添加到当前的“桌面”
(世界)子变形实例变量。
您可以在“桌面”上MMB,单击调试选项卡并探索
当前的世界。 您会看到它是一个 PasteUpMorph。
您可以使用以下命令获取图像中的所有 PasteUpMorph:p :=
PasteUpMorph allInstances,返回所有项目的数组
图像中的“桌面”。
Thanks to Mike Stramba on the Squeak mailing list for the following:-
Drag and dropping the morph on a workspace is good start (you have to
click on the "square" in the workspace header, and turn on the "create
textual reference to dropped morphs" option).
Also when you create the morph it gets added to the current "desktop"
(world) submorphs instance variable.
You can MMB on the "desktop", click the debug tab and explore the
current world. You'll see it's a PasteUpMorph.
You can get all the PasteUpMorphs in the image with : p :=
PasteUpMorph allInstances, which returns an array of all the projects
"desktops" in the image.