<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><meta content="text/html;charset=UTF-8" http-equiv="Content-Type"></head><body ><div style='font-size:10pt;font-family:Verdana,Arial,Helvetica,sans-serif;'><div>Back story.<br></div><div><br></div><div>If you browse Category 'Kernel-Methods' class CompiledMethod and right click on&nbsp;'accessing-pragmas &amp; properties' then select 'browse' a Browser appears showing all the methods in that method category;</div><div><br></div><div>In some HelpTopic work I am doing, I want to do the same thing within the HelpTopic so the user can do a DoIt and see all the related methods I am discussing.&nbsp;</div><div><br></div><div>I hunted around for how the system currently does it and Browser-&gt;buildMessageCategoryBrowserEditString: aString does the work.</div><div><br></div><div>I am able to duplicate that with</div><div><br></div><div>Browser openBrowserView:(</div><div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(Browser new)<br>                                                                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;selectSystemCategory: #'Kernel-Methods';<br>                                                                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;selectClass: CompiledMethod;<br>                                                                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;metaClassIndicated: false;<br>                                                                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;selectMessageCategoryNamed: #'accessing-pragmas &amp; properties';<br>                                                                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;selectMessageNamed: nil;<br>                                                                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;openMessageCatEditString:nil)<br>                                                        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;label: 'Message Category Browser (', #'Kernel-Classes' asString, ')'.</div><div class="zmail_extra"><div><br></div><div><br></div><div>While this works, embedding this in a HelpTopic is a bit clunky looking, so I propose adding a wrapper method such as:</div><div><br></div><div>Browser openCategoryBrowserFor: #'Kernel-Methods' class: CompiledMethod category:#'accessing-pragmas &amp; properties'&nbsp;</div><div><br></div><div><br></div></div><br><br></div></body></html>