I'm trying to get a feel for how much the triggerEvent: system is being used for the VisualParts (i.e. things that show up in the view tree). What I need is for end users to open up their applications, and then run the following script, and send me back the result of the transcript. It should be run with your application running. Not just with the IDE running (it will turn up nothing).
results := Set new. VisualPart allGeneralInstancesDo: [:each | each myEventTable ifNotNil: [:et | et keys do: [:event | results add: (Array with: each class name with: event)]]]. Transcript clear. (results asSortedCollection: [:a :b | a first < b first]) do: [:each | Transcript nextPutAll: each first; space; nextPutAll: each last; cr]. Transcript endEntry I've attached it as a .ws file as well. Thanks to any and all who can help me out. -- Travis Griggs Objologist If you can't say "Did it First!", you'd better be able to say "Did it Better!" VisualPartEventsQuery.ws (412 bytes) Download Attachment |
On Aug 7, 2007, at 15:33, Tudor Girba wrote:
-- Travis Griggs Objologist One man's blue plane is another man's pink plane. |
In reply to this post by Travis Griggs-3
nothing from our apps.
cheers Denis On 8/8/07, Travis Griggs <[hidden email]> wrote: > I'm trying to get a feel for how much the triggerEvent: system is being used > for the VisualParts (i.e. things that show up in the view tree). What I need > is for end users to open up their applications, and then run the following > script, and send me back the result of the transcript. It should be run with > your application running. Not just with the IDE running (it will turn up > nothing). > > results := Set new. > VisualPart allGeneralInstancesDo: > [:each | > each myEventTable ifNotNil: > [:et | > et keys > do: [:event | results add: (Array with: each class name with: event)]]]. > Transcript clear. > (results asSortedCollection: [:a :b | a first < b first]) do: > [:each | > Transcript > nextPutAll: each first; > space; > nextPutAll: each last; > cr]. > Transcript endEntry > > I've attached it as a .ws file as well. > > Thanks to any and all who can help me out. > > > -- > Travis Griggs > Objologist > If you can't say "Did it First!", you'd better be able to say "Did it > Better!" > > > > > > > |
In reply to this post by Travis Griggs-3
DataSetView
cellValueChanged
EditTextView wantParentControl MonochartView changed MultichartView changed MultichartView chartClicked: TabControlComposite tabChanged cheers,
Christian
Von: [hidden email] [mailto:[hidden email]] Im Auftrag von Travis Griggs Gesendet: Dienstag, 7. August 2007 23:30 An: VW NC; VW DEV Betreff: Request for Info: VisualParts & triggerEvent:s results := Set new.
VisualPart allGeneralInstancesDo:
[:each |
each
myEventTable ifNotNil:
[:et |
et keys
do: [:event |
results add: (Array with: each class name with: event)]]].
Transcript clear.
(results asSortedCollection: [:a :b | a first < b first]) do:
[:each |
Transcript
nextPutAll: each
first;
space;
nextPutAll: each
last;
cr].
Transcript endEntry
I've attached it as a .ws file as well.
Thanks to any and all who can help me out.
--
Travis Griggs
Objologist
If you can't say "Did it First!", you'd better be able to say "Did it
Better!" |
Free forum by Nabble | Edit this page |