Need help displaying layouts

I'm new to Java swing but have read the tutorials.. maybe I'm just not very fast learner. However I need to display some things, but having problems doing so in JavaSwing.
Basically my display needs to be like this
Name: <textfield>
Address: <textfield>
Are you married? <yes option> <no Option>
My problem is the yes and no options. If I make the Grid 3 columns then the textfields are displayed in the 2nd column rather than spreading across the 2nd and 3rd columns. The other thing is I want all the Labels (name, address, are you married) to be on one left column while the other items are in another column. I guess this is kinda like a nest panel or something? I'm not really sure. Are there examples of how to do something like this? I learn best by examples.

Swinging :) is kinda like a top-down * bottom-up approach (mix of both). So you gotta think from the top and implement from the bottom. (We can call this design-down, implement-up neh? :)
1. Essentially, you need three rows, with two columns.
2. First column contains three rows of the same size.
3. Second column contains three rows too.
a. First and second rows of second column span the entire row.
c. Last row is split into two.
Make a label panel for holding the labels such as "Name" and "Address". Make this a grid panel of 3 rows and 1 column. Call this LPANEL
Now make another panel, this also with three rows and one column using a grid layout. Call this the FPANEL.
Now, add a textfield to the first two rows.
For the last, create a new panel with a grid layout with size 1x2 (1 row, 2 columns). Call this the OPANEL. Add it to the FPANEL last. So, now you have two panels. How do you ensure they line up?
Set the same margin sizes (and insets) for all components/grid layouts.
Finally, make a MPANEL (main panel) which uses grid bag layout. You want your FPANEL to expand to fill the MPANEL but the LPANEL should be constant no? So we use gridbaglayout and add LPANEL with normal constraints (read up on the constrainst and how to use gridbaglayout :). Add FPANEL with gridbagconstraints that cause it to fill the remainder of the space ("remainder" is the key here).
Voila!
Your are done :)
Now, I would make your life easier by recommending you use netBeans for desiging UI's or Eclipse. But, a year of swinging by hand will give u enuf expertise that when u do start using netBeans etc, you will have be able to get the maximum out of them.
tell me if u got it right!
-vijai.

Similar Messages

  • New to Indesign and need help on layout

    Hi there
    I have a small invitaiton business and have recently started using Indesign (steep learning curve).  I have designed a wedding suite for a bride and it is ready to go off to the printers.  My problem is i have recently changed printers and these guys print on size SRA3 and charge for set up costs if I dont supply all my setup in this size.
    I dont know how to do this!  Is there a simple way i can take my one invitation and place it multiple times on a SRA3 setup without copying and pasting.  Plus all my crop marks and bleeds need to line up.
    ANy help would be really appreciated.
    thanks
    Nerissa

    I really did not want to say more about this but your attitude is ....
    Who are you that you think you know every printers setup and requirements, who are you to say that a person must not go to there prefered printer for work.
    What the hell does a car got to do with printing, NOTHING. Keep on topic!
    You say modern workflow, so your saying every print shop in every town in every country has exactly the same equipment as your printer has and whats needed to handle your unprofessional approach to laying out graphics, wake up will ya every print house in every town can be different your arrogance in assuming every print house can reproduce your improperly prepared graphics is just going to cause trouble.
    Refering back to the original post. I did not see the name of the printer they where sending the job to, do you know them personally to insist that your way is the best way to reproduce the job. NO!
    You do not know them yet you jumped on my suggestion and it was only a suggestion that could lead to an idea for getting the job done. You called it BS yet every working day at my work I follow that sort of work flow for a number of reason. No it is not modern Yes it does work everyday.
    You thinking that your way is the only way is no help to anyone in here.
    This forum is for everyone, if I take the time to suggest something so be it, it is not your job to judge if my suggestion is wrong.
    Be a help not a hinderance and keep your arrogance outta the forum.
    P Taz:
    Bob's main problem is this modern workflow chip on his shoulder, not everyone has the latest and greatest hardware and software. Adobe is printing longer then I care to think back on, and they have many different ways of doing this job and many of these are still in use. Modern is all fine and dandy if you have it.
    I am not happy with using obsolete processes but that is what I have to work with. I absorb a lot that is said in these forums not all I can use yet but its good to see the changes in technology. Everyone as a designer has to keep in mind the Printshop that is printing there work
    I never came in here with the intention to revert people, I only suggested a way to get a job done even you do not know what equipment the printer has to reproduce the OP problem. How in gods name can a suggestion be wrong for this forum even you have fallen for bob's inability to realise there are still people out in the real world not using the most modern workflow equipment and these people need help.
    It is no good you just saying update update update. The job needs doing with what they have, later when money permits or whatever then talk to them about modern workflows.
    And lastly goes out my appology to the original poster, I am very sorry this has gone as far as it has.
    Bob... Lighten up!

  • Hi, need help, displaying text in crystal report

    Post Author: decentsimple
    CA Forum: Crystal Reports
    CR8.5 help, displaying included or not included  i
    have a win app that calls the report, during rendering of report, the
    win app will first create a temp table that holds all the fields for
    the report, then the report is accessing that temptable. i want my report to display &#91;not&#93; included text for a field that contains the right value..here is the tricky part, the field is not in the temp table..is there a way for the crystal report to read the value of that certain field that is not in the temptable..so far.. i have a parameter     3 parameters, the value can be B/P/U          ?B / ?P /?U each parameter have its own formula:  @havefieldvalue        if {?B} = "T" then            ""  else  "Not" same for the rest..if the report generated have B     then the report should display B - includedsame for the rest.. 

    you can always use an array if there's no pattern to your positions:
    var positionA:Array=[ [100,20], [2,222], [55,2], [201,111], [78,23] ];
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    import flash.events.Event;
    import com.adobe.serialization.json.JSON;
    var loader:URLLoader = new URLLoader(new URLRequest("https://api.twitter.com/1/statuses/user_timeline.json?screen_name=ScottMitchell"));
    loader.addEventListener(Event.COMPLETE, loadComplete);
    function loadComplete(e:Event):void {
        processData(e.target.data);
    function processData(data:String):void {
        var tweets:Array = JSON.decode(data) as Array;
    for(var i:int=0;i<5;i++){
    var tf:TextField=new TextField();
    addChild(tf);
    tf.multiline=true;
    tf.width=300;
    tf.text =   tweets[i].text;
    tf.autoSize="left";
    tf.x=positionA[i][0];
    tf.y=positionA[i][1];
    nextY+=tf.height;

  • Need help displaying images with List component for Flash CS4 (ActionScript 3.0)

    Hi folks:
    I am an inexperienced user of Flash CS4 Pro (v10.0.2). I am attempting to use the List component with ActionScript 3.0 to make a different image display when a user clicks each item in a list.
    I did find a tutorial that showed me how to make different text display using a dynamic text box and the following ActionScript:
    MyList.addEventListener(Event.CHANGE, ShowSelectedItem);
    function ShowSelectedItem(event:Event):void {
        ListText.text=MyList.selectedItem.data;
    ...where My List is the instance of the List component and ListText is the dynamix text box. In this case, the user clicks an item in the list, defined by the label value in the dataProvider parameter of the List component, and text displays as defined in the data value in the dataProvider parameter.
    However, as I mentioned to start, what I really want to do is make images display instead of text. Can anyone provide me the steps to do this?
    I appreciate your help (in advance)!!
    Cindy

    Hi...thanks for responding! I was planning on using images from the Library, but if there is a better way to do it, I'm open. So far, I just have text in the data property. This is part of my problem. I don't know what I need to put in the data value for an image to display. Do I just put the image file name and Flash will know to pull it from the Library? Do I need to place the images on the stage on different frames? I apologize for the "stupid user" questions, but as you can tell, I'm a newbie.
    Appreciate your patience and any help you can offer!
    Cindy

  • NEED HELP IN:  layout set in favorites

    Hello again,
    the favorites iView use the Layout Set "LinkListExplorer". In the iview is a link "edit", which open a new iView with the Layout Set "LinkListMaintenance".  I have modified the second layout Set and saved it under xxLinkListMaintenance.
    Now, I need to know how to put the layout set xxLinkListMaintenance in touch with the first layout set LinkListExplorer.
    Please help!
    Thanks a lot
    Sybille

    Hi Sybille,
    you always want to change the hard coded things
    The way:
    1.) Decompile <i>com.sapportals.wcm.rendering.collection.cm.LinkListCollectionRenderer</i> within <i>km.appl.ui.flex.collection_core.jar</i> within <i>...\irj\root\WEB-INF\portal\portalapps\com.sap.km.cm.ui.flex\private\lib</i>
    2.) In line 530 (<i>query.add("rndLayoutSet", "LinkListMaintenance");</i>), replace the LayoutSet with the one of your choice.
    3.) Create a new portal application with this CollectionRenderer and a bootstrap service.
    4.) Define this CollectionRenderer within KM (map a name to the class).
    5.) Create a new LayoutSet <i>xxLinkListExplorer</i> copied from <i>LinkListExplorer</i> but with the new CollectionRenderer.
    Hope it helps
    Detlev
    PS:
    - If you need assistance, you know the experts
    - Better forum would have been KMC

  • Tree component children displays [Object, Object] need help displaying the names :)

    hey guys... i've run into yet another problem...
    i have a tree component that gets its data from a httpservice.. xml file.
    i then pasrse thru the recieved xml to create a dataprovider for the tree component. the code for that is below...
    <mx:Tree id="tree" dataProvider="{treeData2}" showRoot="false" width="50%" height="100%" />
    [Bindable] public var treeData2:ArrayCollection = new ArrayCollection;
    [Bindable] public var treeData:Object;
    public var resultArr:Object;
    public function initNavTab():void{
        var navService:HTTPService = new HTTPService();
        navService.url = "http://www.apxalarm.com/pages/getnav";
        navService.method = "POST";
        navService.useProxy = false;
        navService.resultFormat = "e4x";
        //navService.resultFormat = "array";
        navService.addEventListener(ResultEvent.RESULT, returnNavData);
        navService.addEventListener(FaultEvent.FAULT, navDataFault);
        navService.send();
    public function returnNavData(event:ResultEvent):void{
        navData = event.result;
        //resultArr = event.result;
        Alert.show("load complete");
        tree_labelFunc(navData);
    public function navDataFault(event:FaultEvent):void{
        Alert.show(event.fault.faultDetail);
    public function tree_labelFunc(item:Object):void{
        var node:XML = XML(item);
        var nav:XMLList = new XMLList();
        nav = node.sections;
        var i:Number = 0;
        for each (var section:XML in nav.section){
            var obj:Object = new Object();
            obj.label = section.name;
            obj.urlName = section.urlName;
            obj.children = new ArrayCollection;
                for each(var nav1:XML in section.navs.nav){
                    obj.children.addItem([{label: nav1.name}]);
            treeData2.addItem(obj);
    the tree_labelFunc parces thru the xml and creates the appropriate structure i need to be displayed in the tree component... but unfortunately the children of the tree component only shows [Object, Object]
    can someone show me how to display the labels instead of the Object???
    thank you soo much in advace guys!!! i really appretiate it!!!
    oh and this is part of the xml that it is pulling
    <siteMap>
      <sections>
        <section>
          <name>About APX</name>
          <urlName>about</urlName>
          <position>1</position>
          <defaultaction>/about/mission</defaultaction>
          <navs>
            <nav>
              <name>Our Mission</name>
              <urlName>mission</urlName>
              <position>1</position>
              <defaultaction>13</defaultaction>
              <subNavs/>
            </nav>
            <nav>
              <name>Links</name>
              <urlName>links</urlName>
              <position>4</position>
              <subNavs>
                <nav>
                  <name>iamapx.com</name>
                  <urlName>iamapx</urlName>
                  <position>1</position>
                  <defaultaction>http://www.iamapx.com</defaultaction>
                  <subNavs/>
                </nav>
                <nav>
                  <name>apxgivesback.com</name>
                  <urlName>agb</urlName>
                  <position>2</position>
                  <defaultaction>http://www.apxgivesback.com</defaultaction>
                  <subNavs/>
                </nav>
              </subNavs>
            </nav>
            <nav>
              <name>Newsletter</name>
              <urlName>newsletter</urlName>
              <position>3</position>
              <defaultaction>37</defaultaction>
              <subNavs/>
            </nav>
          </navs>
        </section>
        <section>
        </section>
        <section>
        </section>
        <section>
        </section>
        <section>
        </section>
        <section>
        </section>
      </sections>
    </siteMap>
    i need the name tags in the xml to be displayed in the tree component....
    again thank you soo much in advace for your help!!

    thank you soo much for your quick responce alex!!
    the toXMLString is exactly like the xml
    <siteMap>
      <sections>
        <section>
          <name>About APX</name>
          <urlName>about</urlName>
          <position>1</position>
          <defaultaction>/about/mission</defaultaction>
          <navs>
            <nav>
              <name>Our Mission</name>
              <urlName>mission</urlName>
              <position>1</position>
              <defaultaction>13</defaultaction>
              <subNavs/>
            </nav>
            <nav>
              <name>Links</name>
              <urlName>links</urlName>
              <position>4</position>
              <subNavs>
                <nav>
                  <name>iamapx.com</name>
                  <urlName>iamapx</urlName>
                  <position>1</position>
                  <defaultaction>http://www.iamapx.com</defaultaction>
                  <subNavs/>
                </nav>
                <nav>
                  <name>apxgivesback.com</name>
                  <urlName>agb</urlName>
                  <position>2</position>
                  <defaultaction>http://www.apxgivesback.com</defaultaction>
                  <subNavs/>
                </nav>
              </subNavs>
            </nav>
            <nav>
              <name>Newsletter</name>
              <urlName>newsletter</urlName>
              <position>3</position>
              <defaultaction>37</defaultaction>
              <subNavs/>
            </nav>
          </navs>
        </section>
        <section>
          <name>APX Security Systems</name>
          <urlName>apxsystems</urlName>
          <position>2</position>
          <defaultaction>/apxsystems/systems/products</defaultaction>
          <navs>
            <nav>
              <name>Service Areas</name>
              <urlName>serviceareas</urlName>
              <position>1</position>
              <defaultaction>25</defaultaction>
              <subNavs/>
            </nav>
            <nav>
              <name>Systems</name>
              <urlName>systems</urlName>
              <position>2</position>
              <defaultaction>27</defaultaction>
              <subNavs>
                <nav>
                  <name>Get A System</name>
                  <urlName>get</urlName>
                  <position>2</position>
                  <defaultaction>27</defaultaction>
                  <subNavs/>
                </nav>
                <nav>
                  <name>Browse Products</name>
                  <urlName>products</urlName>
                  <position>1</position>
                  <defaultaction>28</defaultaction>
                  <subNavs/>
                </nav>
                <nav>
                  <name>Refer A Friend</name>
                  <urlName>refer</urlName>
                  <position>3</position>
                  <defaultaction>38</defaultaction>
                  <subNavs/>
                </nav>
              </subNavs>
            </nav>
          </navs>
        </section>
        <section>
          <name>Customer Support</name>
          <urlName>support</urlName>
          <position>3</position>
          <defaultaction>/support/specialist</defaultaction>
          <navs>
            <nav>
              <name>Technical Support</name>
              <urlName>tech</urlName>
              <position>2</position>
              <defaultaction>32</defaultaction>
              <subNavs>
                <nav>
                  <name>Troubleshooting</name>
                  <urlName>troubleshooting</urlName>
                  <position>2</position>
                  <defaultaction>32</defaultaction>
                  <subNavs/>
                </nav>
              </subNavs>
            </nav>
            <nav>
              <name>Speak To A Specialist</name>
              <urlName>specialist</urlName>
              <position>1</position>
              <defaultaction>30</defaultaction>
              <subNavs/>
            </nav>
            <nav>
              <name>Move Options</name>
              <urlName>moves</urlName>
              <position>3</position>
              <defaultaction>35</defaultaction>
              <subNavs/>
            </nav>
          </navs>
        </section>
        <section>
          <name>Home Safety</name>
          <urlName>safety</urlName>
          <position>4</position>
          <defaultaction>/safety/outside</defaultaction>
          <navs>
            <nav>
              <name>Indoor Tips</name>
              <urlName>inside</urlName>
              <position>1</position>
              <defaultaction>17</defaultaction>
              <subNavs/>
            </nav>
            <nav>
              <name>Outdoor Tips</name>
              <urlName>outside</urlName>
              <position>2</position>
              <defaultaction>18</defaultaction>
              <subNavs/>
            </nav>
          </navs>
        </section>
        <section>
          <name>Customer Stories</name>
          <urlName>stories</urlName>
          <position>5</position>
          <defaultaction>/stories/videos</defaultaction>
          <navs>
            <nav>
              <name>Videos</name>
              <urlName>videos</urlName>
              <position>3</position>
              <defaultaction>15</defaultaction>
              <subNavs/>
            </nav>
            <nav>
              <name>Read Stories</name>
              <urlName>read</urlName>
              <position>1</position>
              <defaultaction>19</defaultaction>
              <subNavs/>
            </nav>
            <nav>
              <name>Tell Your Story</name>
              <urlName>tell</urlName>
              <position>2</position>
              <defaultaction>20</defaultaction>
              <subNavs/>
            </nav>
          </navs>
        </section>
        <section>
          <name>Newsroom</name>
          <urlName>press</urlName>
          <position>6</position>
          <defaultaction>/press/compprofile</defaultaction>
          <navs>
            <nav>
              <name>Press Releases</name>
              <urlName>pr</urlName>
              <position>2</position>
              <defaultaction>21</defaultaction>
              <subNavs/>
            </nav>
            <nav>
              <name>Media Kit</name>
              <urlName>media</urlName>
              <position>3</position>
              <defaultaction>22</defaultaction>
              <subNavs/>
            </nav>
            <nav>
              <name>Company Profile</name>
              <urlName>compprofile</urlName>
              <position>1</position>
              <defaultaction>34</defaultaction>
              <subNavs/>
            </nav>
            <nav>
              <name>Contact Us</name>
              <urlName>contact</urlName>
              <position>4</position>
              <defaultaction>39</defaultaction>
              <subNavs/>
            </nav>
          </navs>
        </section>
      </sections>
    </siteMap>
    i need to subNavs to be available within the tree dropdown...

  • Need help displaying data in text field... Help?

    i have this code:
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    import flash.events.Event;
    import com.adobe.serialization.json.JSON;
    var loader:URLLoader = new URLLoader(new URLRequest("https://api.twitter.com/1/statuses/user_timeline.json?screen_name=ScottMitchell"));
    loader.addEventListener(Event.COMPLETE, loadComplete);
    function loadComplete(e:Event):void {
        processData(e.target.data);
    function processData(data:String):void {
        var tweets:Array = JSON.decode(data) as Array;
        trace(tweets[0].text);
    It works, in the output it tells me the tweets.
    but i need it to be displyed on the app, i need to no how to do this, someone pointed me in the direction of using a item renderer extended from sprite?
    But really all i need to do is display it in a text field, all i want to do is display the data.
    Can anyone help???
    I know this is probably simple and i did try to figure this out on my own, but had no luck.
    All help is appreciated.
    Many thanks in advance.

    you can always use an array if there's no pattern to your positions:
    var positionA:Array=[ [100,20], [2,222], [55,2], [201,111], [78,23] ];
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    import flash.events.Event;
    import com.adobe.serialization.json.JSON;
    var loader:URLLoader = new URLLoader(new URLRequest("https://api.twitter.com/1/statuses/user_timeline.json?screen_name=ScottMitchell"));
    loader.addEventListener(Event.COMPLETE, loadComplete);
    function loadComplete(e:Event):void {
        processData(e.target.data);
    function processData(data:String):void {
        var tweets:Array = JSON.decode(data) as Array;
    for(var i:int=0;i<5;i++){
    var tf:TextField=new TextField();
    addChild(tf);
    tf.multiline=true;
    tf.width=300;
    tf.text =   tweets[i].text;
    tf.autoSize="left";
    tf.x=positionA[i][0];
    tf.y=positionA[i][1];
    nextY+=tf.height;

  • Need Help Displaying Query

    I am having problems with this, I need to re-write this into
    3 different routes the CFIF can take. Currently this works because
    the query only returns 9 records, they are being displayed as 3
    rows with 3 columns. I need to re-write and have it where if the
    record count is LT9 to only have the output be on 2 columns with 3
    rows....and if the count is LT6 then i only want 1 row with 3
    columns. I am having problems figuring out how to modify this code
    to accomplish this task. Any help would be greeeeeeeeeeeeat.
    <cfif alsobought_counter LTE 9>
    <cfif (prodCount+(detailsColCount-1)) MOD detailsColCount
    EQ 0><div class="clearfix"></cfif>
    <div class="productThumbCont">
    <cfset product_link = link("product",
    alsoBought_product_id, product_title)>
    <div class="productThumbImg">
    <a href="#product_link#" class="picksLink"
    title="#linktitle#"><img
    src="#cfimage[alsobought_counter].thumb.path#" alt="" border="0"
    tooltip="#alsoBought_product_id#" />
    <cfif len(trim(qryAlso_Bought.is_ondemand)) and
    qryrelated_products.is_ondemand EQ 1 AND qryAlso_Bought.is_disabled
    NEQ 1 AND request.allowVOD eq 1><div
    class="on-demand-call-out"
    style="cursor:pointer;margin-top:-22px;margin-top:-25/**/px;margin-left:21px;background:
    url(../skins/graphics/btns/ondemand-overlay.gif) 0 0
    no-repeat;width:79px;height:22px;filter:alpha(opacity=80);-moz-opacity:.80;opacity:.80;">< /div></cfif></a>
    </div>
    <div class="productThumbTitle">
    <a href="#product_link#" class="picksLink"
    title="#linktitle#">#product_title#<cfif
    len(trim(extendedTitle))>
    (#extendedTitle#)</cfif></a>
    <!--- <cfif len(trim(qryAlso_Bought.hotmovies_id)) AND
    qryAlso_Bought.is_disabled NEQ 1 AND request.allowVOD eq
    1><div
    style="padding-top:5px;"><img
    src="../skins/graphics/btns/ondemand.gif" alt="Available
    On-Demand"
    border="0" /></div></cfif> --->
    </div>
    </div>
    <cfif prodCount MOD detailsColCount EQ
    0></div></cfif>
    <cfset prodCount = IncrementValue(prodCount)>
    <cfset alsobought_counter =
    IncrementValue(alsobought_counter)>
    </cfif>
    </cfoutput>
    <cfif (prodCount-1) MOD detailsColCount NEQ
    0></div></cfif>
    </div>
    Text

    After you run your query, look at the record count. Run all
    the if/else logic you have to to determine the number of columns
    you want. Don't worry about the number of rows, that will take care
    of itself.
    Once you have the number of columns figured out, output your
    data as simply as possible, no style tags, no links, just data. Use
    the modulus operator to decide when to start a new row.
    Once you've accomplished that, start adding the rest of your
    stuff.

  • Need Help Displaying Results

    hi
    our class group is making a program which a user enters the names, ids, final exam grade and midterm grade of up to 50 students. and at the end we just want to display all the results
    now my question is that we currently have this as our output
    else if (evt.getActionCommand ().equals("Display")) {  // Display button pressed
    if (counterOfStudents > 0) {
    for (int count = 0; count < counterOfStudents; count ++)
    result = result + studentList [count].name + ": " + studentList [count].ID + "\n";
    JOptionPane.showMessageDialog (null, result, "Student List", JOptionPane.INFORMATION_MESSAGE); // display pop-up message dialog box
    // displayButton.setEnabled (false);
    now i really want to makes this look really better than just a simple popup. is there any way you can help me please?
    i want something that looks better.
    thanks a bunch

    Presumably you're using swing for this? (ie are you importing javax.swing.*?)
    If so then why not use a JList or JTable to display the results?
    The code below creates a JList in a JFrame. You pass your array of student records (I don't know what you've called it so you'll need to change the constructor slightly) when you create it.
    Call new ListDisplay(studentList) to have a (very) basic JList containing your student data. You will need to override the toString() method of your student type class so that it outputs the right data, ie:
    public void toString(){
         return this.name+" "+this.ID;
    should do it. email me on [email protected] if you're stuck, or try my MSN Messenger(same address).
    <pre>
    class ListDisplay extends JFrame{
    public ListDisplay(studentData students[]){
    super("records test");
    JList jl = new JList();
    Container c = this.getContentPane();
    this.setSize(400,400);
    c.add(jl);
    jl.setListData(students);
    this.setVisible(true);
    </pre>

  • Need help displaying HTML files stored in content repository

    I have a very simple HTML file stored in a binary attribute (so the file could
    be uploaded through the Admin Portal) named "html" in the BEA Repository (8.1sp2)
    and would like to display it in a JSP. Here's a snippet from that JSP:
    <cm:getNode path="<%=myNodePath%>" id="myNode"/>
    <cm:getProperty node="<%=myNode%>" name="html" conversionType="html"/>
    I expected the getProperty tag to fetch the HTML file and render it inline, but
    I guess that's wishful thinking. Am I missing something?
    Thanks for any help!

    I added transactionTimeout="30" to the tag shown below. That did the trick, as
    long as I avoided certain combinations of tag attributes. Guess this one's a little
    moody.
    Thanks, Greg.
    Gregory Smith <[email protected]> wrote:
    Try setting the transactionTimeout to something greater than 0 on the
    <cm:getProperty> tag.
    Greg
    Marc N wrote:
    I have a very simple HTML file stored in a binary attribute (so thefile could
    be uploaded through the Admin Portal) named "html" in the BEA Repository(8.1sp2)
    and would like to display it in a JSP. Here's a snippet from that JSP:
    <cm:getNode path="<%=myNodePath%>" id="myNode"/>
    <cm:getProperty node="<%=myNode%>" name="html" conversionType="html"/>
    I expected the getProperty tag to fetch the HTML file and render itinline, but
    I guess that's wishful thinking. Am I missing something?
    Thanks for any help!

  • (Need Help) Display pictures can't update on my bbm

    I have upgrade my bbm to a new version. But I have trouble here. My display picture can't update, so all my friends can't see my picture (just blank like no photos). Any solution? Please help me to solve this problem.
    Information :
    I use blackberry bold 9900 with OS 7.1
    Thank you.

    More information :
    I use blackberry bold 9900 with OS 7.1
    Country Indonesian
    BBM also can't connect to BBM connect like facebook, etc. It must failed when step 2 verifying to bbm. Please help me to solve this problem.
    Thank you

  • Need help displaying image on canvas  :((

    can anybody help me with my coding. my problem is, i cannot display an image on my canvas. plz..someone help me to solve my problem..
    Here's my coding...
    import javax.microedition.lcdui.*;
    import javax.microedition.io.*;
    import java.io.*;
    import java.util.*;
    public class ImageMidletServlet
        Display display = null;
        //Form f = null;
        String url = "http://localhost:8080/banner/hp0.gif";
        String url2 = "http://localhost:8080/banner/rotateNumber";      
        //String url = "http://localhost:8080/banner/banner";
        Command backCommand = new Command("Back", Command.BACK, 0);
        Command submitCommand = new Command("Submit", Command.OK, 2);
        Command exitCommand = new Command("Exit", Command.STOP, 3);
        private Test test;  
        private StringItem stringItem2;
        private TextField txtField;
        private Timer tm;          // Timer
        private load load;       // Task
        private int id = 0;
        Image img = null;
        //String id;
        public ImageMidletServlet(Display display)
            this.display=display;  
            loadimage();
        public void loadimage()
            tm = new Timer();
            load = new load();
            tm.schedule(load,0,6000);
         class Test extends Canvas implements Runnable, CommandListener
            private Canvas canvas;
            public Test(Canvas canvas)
                this.canvas=canvas;
                setCommandListener(this);
            public void start()
                Thread t = new Thread(this);
                t.start();
            public void run ()
                DataInputStream is = null;
                DataInputStream is2 = null;
                StringBuffer sb = new StringBuffer();
                Image img= null;
                TextBox txtBox = null;
                StringBuffer b = new StringBuffer();
                HttpConnection c2 = null;
                OutputStream os = null;           
                ++ id;
                try
                    c2 = (HttpConnection)Connector.open(url2+ "?bannerid="+id);
                    os = c2.openOutputStream();
                    os.write(("bannerid="+id).getBytes());              
                    os.flush();
                    //HttpConnection c = (HttpConnection) Connector.open(url+ "?bannerid="+id);
                    HttpConnection c = (HttpConnection) Connector.open(url);
                    int len = (int)c.getLength();
                    if (len > 0)
                        is = c.openDataInputStream();
                        byte[] data = new byte[len];
                        is.readFully(data);
                        is2 = c2.openDataInputStream();
                        int ch;
                        while ((ch = is2.read()) != -1) {
                        b.append((char) ch);
                        System.out.print((char)ch);
                        try {
                        //img = Image.createImage(data, 0, len);
                        img = Image.createImage("/images/splash.png");
                        Graphics graphics = img.getGraphics();                   
                        catch (Exception e)
                        if(img==null)
                        System.out.print("no image");
                        else {System.out.print("got image");}
                    else
                        showAlert("length is null");;
                    is.close();
                    c.close();
                    c2.close();
                   // repaint();
                catch (Exception e)
                    e.printStackTrace();
                    showAlert(e.getMessage());
            /* Display Error On screen*/
            private void showAlert(String err)
                Alert a = new Alert("");
                a.setString(err);
                a.setTimeout(Alert.FOREVER);
                display.setCurrent(a);
             public void commandAction(Command c, Displayable d)
            if (c == exitCommand)
                //destroyApp(true);
                //notifyDestroyed();
            else if (c == backCommand)
                //display.setCurrent(f);
            else if (c == submitCommand)
                /*test  = new Test(this);
                test.start();*/
             protected void paint(Graphics graphics)
             if (img != null)
                graphics.setColor(0x000000);  
                graphics.drawImage(img, 0, 0, Graphics.TOP | Graphics.HCENTER);
             else
             {System.out.print("no drawing");}
        class load extends TimerTask
        private Test canvas;
           public final void run()
          this.canvas = canvas;
          test  = new Test(canvas);
          //test();
          test.start();
    }

    Hi
    I would do like this: take the code that draws the image an put it into a separate class (which will extend the Canvas class) which will take as a parameter to its constructor either an array of bytes or an Image object (it's up to you) and call this class after you have downloaded all the bytes from the input stream. I presume that you get the "no drawing" message..
    Mihai

  • New User need help - display

    Okay I need some help, there's this see through menu that drops down from the top of the screen. What is it called and can I stop it from coming down. 

    Sounds like you got a program minimized at the top of your screen.  Usually if you place your mouse on the top part of the screen and right click you can drag it down..

  • NEED HELP, display driver stopped working, macbook pro late 2013 13,3 inc

    Hi, guys
    I have the problem "display driver stopped responding and has recovered" on my macbook pro late 2013 with windows system. it crashes constantly. I tried to update driver, but it was not resolved. someone can help me? thanks

    Process:         LeagueofLegends [298]
    Path:            /Applications/League of Legends.app/Contents/LoL/RADS/solutions/lol_game_client_sln/releases/0.0.0.85/d eploy/LeagueOfLegends.app/Contents/MacOS/LeagueofLegends
    Identifier:      com.riotgames.LeagueofLegends.GameClient
    Version:         1.0 (1)
    Code Type:       X86 (Native)
    Parent Process:  LoLLauncher [293]
    Responsible:     LeagueofLegends [298]
    User ID:         501
    Date/Time:       2014-02-16 16:40:54.083 +0100
    OS Version:      Mac OS X 10.9.1 (13B3116)
    Report Version:  11
    Anonymous UUID:  400D595C-1A42-9927-5A47-B265F4EC40B0
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    abort() called
    Application Specific Signatures:
    Graphics hardware encountered an error and was reset: 0x00000000
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x976d3952 __pthread_kill + 10
    1   libsystem_pthread.dylib                 0x90109167 pthread_kill + 101
    2   libsystem_c.dylib                       0x9b2d8340 abort + 155
    3   libGPUSupportMercury.dylib              0x9b462005 gpusKillClient + 137
    4   libGPUSupportMercury.dylib              0x9b4634dc gpusSubmitDataBuffers + 454
    5   com.apple.driver.AppleIntelHD5000GraphicsGLDriver          0x40345b05 IntelCommandBuffer::getNew(GLDContextRec*) + 43
    6   com.apple.driver.AppleIntelHD5000GraphicsGLDriver          0x40341e86 GenContext::prepareCommandBuffer() + 32
    7   com.apple.driver.AppleIntelHD5000GraphicsGLDriver          0x40345969 intelSubmitCommands + 216
    8   com.apple.driver.AppleIntelHD5000GraphicsGLDriver          0x40346d41 gldPresentFramebufferData + 152
    9   GLEngine                                0x97777c20 glSwap_Exec + 96
    10  com.apple.opengl                        0x9ad6d3fb CGLFlushDrawable + 67
    11  com.apple.AppKit                        0x9920bf61 -[NSOpenGLContext flushBuffer] + 24
    12  com.riotgames.LeagueofLegends.GameClient          0x006a7c94 0x1000 + 6974612
    13  com.riotgames.LeagueofLegends.GameClient          0x006c31ae 0x1000 + 7086510
    14  com.riotgames.LeagueofLegends.GameClient          0x0073054b 0x1000 + 7533899
    15  com.riotgames.LeagueofLegends.GameClient          0x0025ac63 0x1000 + 2464867
    16  com.riotgames.LeagueofLegends.GameClient          0x0025e83e 0x1000 + 2480190
    17  com.riotgames.LeagueofLegends.GameClient          0x0026436d 0x1000 + 2503533
    18  com.riotgames.LeagueofLegends.GameClient          0x00266509 0x1000 + 2512137
    19  com.riotgames.LeagueofLegends.GameClient          0x0026677e 0x1000 + 2512766
    20  com.riotgames.LeagueofLegends.GameClient          0x006a8502 0x1000 + 6976770
    21  com.apple.Foundation                    0x93495692 __57-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke + 49
    22  com.apple.CoreFoundation                0x9aa527e4 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 20
    23  com.apple.CoreFoundation                0x9a9343fb _CFXNotificationPost + 3435
    24  com.apple.Foundation                    0x93483ebf -[NSNotificationCenter postNotificationName:object:userInfo:] + 92
    25  com.apple.AppKit                        0x98bde7d5 -[NSApplication _postDidFinishNotification] + 367
    26  com.apple.AppKit                        0x98bde475 -[NSApplication _sendFinishLaunchingNotification] + 239
    27  com.apple.AppKit                        0x98bdada4 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 840
    28  com.apple.AppKit                        0x98bda691 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 277
    29  libobjc.A.dylib                         0x9253e304 -[NSObject performSelector:withObject:withObject:] + 77
    30  com.apple.Foundation                    0x934a43fa __76-[NSAppleEventManager setEventHandler:andSelector:forEventClass:andEventID:]_block_invoke + 121
    31  com.apple.Foundation                    0x934a3f31 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 430
    32  com.apple.Foundation                    0x934a3d3b _NSAppleEventManagerGenericHandler + 218
    33  com.apple.AE                            0x93821b15 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 387
    34  com.apple.AE                            0x937f0ed6 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 44
    35  com.apple.AE                            0x937f0dce aeProcessAppleEvent + 318
    36  com.apple.HIToolbox                     0x968de7c1 AEProcessAppleEvent + 55
    37  com.apple.AppKit                        0x98bd63a8 _DPSNextEvent + 1089
    38  com.apple.AppKit                        0x98bd5ad0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    39  com.apple.AppKit                        0x98bc835c -[NSApplication run] + 727
    40  com.apple.AppKit                        0x98bb11f8 NSApplicationMain + 1165
    41  com.riotgames.LeagueofLegends.GameClient          0x00007ab5 0x1000 + 27317
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x976d4992 kevent64 + 10
    1   libdispatch.dylib                       0x9b1d18bd _dispatch_mgr_invoke + 238
    2   libdispatch.dylib                       0x9b1d1556 _dispatch_mgr_thread + 52
    Thread 2:: LoadableRead
    0   libsystem_kernel.dylib                  0x976d37ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x9010ad1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x9010cbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.riotgames.LeagueofLegends.GameClient          0x005fa562 0x1000 + 6264162
    4   com.riotgames.LeagueofLegends.GameClient          0x0061a30b 0x1000 + 6394635
    5   com.riotgames.LeagueofLegends.GameClient          0x005fd53c 0x1000 + 6276412
    6   libsystem_pthread.dylib                 0x901085fb _pthread_body + 144
    7   libsystem_pthread.dylib                 0x90108485 _pthread_start + 130
    8   libsystem_pthread.dylib                 0x9010dcf2 thread_start + 34
    Thread 3:: LoadableDecmp
    0   libsystem_kernel.dylib                  0x976d37ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x9010ad1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x9010cbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.riotgames.LeagueofLegends.GameClient          0x005fa562 0x1000 + 6264162
    4   com.riotgames.LeagueofLegends.GameClient          0x0061a80e 0x1000 + 6395918
    5   com.riotgames.LeagueofLegends.GameClient          0x005fd53c 0x1000 + 6276412
    6   libsystem_pthread.dylib                 0x901085fb _pthread_body + 144
    7   libsystem_pthread.dylib                 0x90108485 _pthread_start + 130
    8   libsystem_pthread.dylib                 0x9010dcf2 thread_start + 34
    Thread 4:: MaestroAgent
    0   libsystem_kernel.dylib                  0x976d4dba __read + 10
    1   libRiotLauncher.dylib                   0x03168ed1 0x3128000 + 265937
    2   libRiotLauncher.dylib                   0x031352af 0x3128000 + 53935
    3   libRiotLauncher.dylib                   0x0312e754 0x3128000 + 26452
    4   libRiotLauncher.dylib                   0x0317406c 0x3128000 + 311404
    5   libsystem_pthread.dylib                 0x901085fb _pthread_body + 144
    6   libsystem_pthread.dylib                 0x90108485 _pthread_start + 130
    7   libsystem_pthread.dylib                 0x9010dcf2 thread_start + 34
    Thread 5:: MaestroHeartBt
    0   libsystem_kernel.dylib                  0x976d3b76 __semwait_signal + 10
    1   libsystem_c.dylib                       0x9b2f705b nanosleep$UNIX2003 + 219
    2   libsystem_c.dylib                       0x9b2f6f06 usleep$UNIX2003 + 60
    3   libRiotLauncher.dylib                   0x03145e85 0x3128000 + 122501
    4   libRiotLauncher.dylib                   0x0312eacc 0x3128000 + 27340
    5   libRiotLauncher.dylib                   0x0317406c 0x3128000 + 311404
    6   libsystem_pthread.dylib                 0x901085fb _pthread_body + 144
    7   libsystem_pthread.dylib                 0x90108485 _pthread_start + 130
    8   libsystem_pthread.dylib                 0x9010dcf2 thread_start + 34
    Thread 6:: NetMain2
    0   libsystem_kernel.dylib                  0x976d3ace __select + 10
    1   com.riotgames.LeagueofLegends.GameClient          0x00637351 0x1000 + 6513489
    2   com.riotgames.LeagueofLegends.GameClient          0x00631778 0x1000 + 6489976
    3   com.riotgames.LeagueofLegends.GameClient          0x0062fa9b 0x1000 + 6482587
    4   com.riotgames.LeagueofLegends.GameClient          0x00631906 0x1000 + 6490374
    5   com.riotgames.LeagueofLegends.GameClient          0x0062be14 0x1000 + 6467092
    6   com.riotgames.LeagueofLegends.GameClient          0x0063cc07 0x1000 + 6536199
    7   com.riotgames.LeagueofLegends.GameClient          0x005fd53c 0x1000 + 6276412
    8   libsystem_pthread.dylib                 0x901085fb _pthread_body + 144
    9   libsystem_pthread.dylib                 0x90108485 _pthread_start + 130
    10  libsystem_pthread.dylib                 0x9010dcf2 thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x976cef7a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x976ce16c mach_msg + 68
    2   com.apple.CoreFoundation                0x9a99af69 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation                0x9a99a541 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation                0x9a999d5a CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation                0x9a999bbb CFRunLoopRunInMode + 123
    6   com.apple.AppKit                        0x98d7ff18 _NSEventThread + 283
    7   libsystem_pthread.dylib                 0x901085fb _pthread_body + 144
    8   libsystem_pthread.dylib                 0x90108485 _pthread_start + 130
    9   libsystem_pthread.dylib                 0x9010dcf2 thread_start + 34
    Thread 8:: PartclSimulate
    0   libsystem_kernel.dylib                  0x976d37ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x9010ad1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x9010cbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.riotgames.LeagueofLegends.GameClient          0x005fa562 0x1000 + 6264162
    4   com.riotgames.LeagueofLegends.GameClient          0x007d0f25 0x1000 + 8191781
    5   com.riotgames.LeagueofLegends.GameClient          0x005fd53c 0x1000 + 6276412
    6   libsystem_pthread.dylib                 0x901085fb _pthread_body + 144
    7   libsystem_pthread.dylib                 0x90108485 _pthread_start + 130
    8   libsystem_pthread.dylib                 0x9010dcf2 thread_start + 34
    Thread 9:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib                  0x976cef7a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x976ce16c mach_msg + 68
    2   com.apple.audio.CoreAudio               0x99e29e9a HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned long, unsigned long, mach_msg_header_t*, bool, unsigned int) + 138
    3   com.apple.audio.CoreAudio               0x99e2434e HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 68
    4   com.apple.audio.CoreAudio               0x99e22b27 HALC_ProxyIOContext::IOWorkLoop() + 1111
    5   com.apple.audio.CoreAudio               0x99e225ff HALC_ProxyIOContext::IOThreadEntry(void*) + 167
    6   com.apple.audio.CoreAudio               0x99e2cf52 ___ZN19HALC_ProxyIOContextC2Emj_block_invoke + 20
    7   com.apple.audio.CoreAudio               0x99e224fb HALB_IOThread::Entry(void*) + 69
    8   libsystem_pthread.dylib                 0x901085fb _pthread_body + 144
    9   libsystem_pthread.dylib                 0x90108485 _pthread_start + 130
    10  libsystem_pthread.dylib                 0x9010dcf2 thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x976cf0a6 mach_wait_until + 10
    1   libsystem_c.dylib                       0x9b2fdcee nanosleep + 366
    2   libsystem_c.dylib                       0x9b2fdb21 usleep + 60
    3   libfmodex.dylib                         0x031ed8fa 0x31eb000 + 10490
    4   libfmodex.dylib                         0x0327cca6 0x31eb000 + 597158
    5   libsystem_pthread.dylib                 0x901085fb _pthread_body + 144
    6   libsystem_pthread.dylib                 0x90108485 _pthread_start + 130
    7   libsystem_pthread.dylib                 0x9010dcf2 thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x976cefb6 semaphore_wait_trap + 10
    1   libfmodex.dylib                         0x031ed574 0x31eb000 + 9588
    2   libfmodex.dylib                         0x0327cc6c 0x31eb000 + 597100
    3   libsystem_pthread.dylib                 0x901085fb _pthread_body + 144
    4   libsystem_pthread.dylib                 0x90108485 _pthread_start + 130
    5   libsystem_pthread.dylib                 0x9010dcf2 thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x976d4046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x90109dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x9010dcce start_wqthread + 30
    Thread 13:
    0   libsystem_kernel.dylib                  0x976d4046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x90109dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x9010dcce start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x0495ea00  ecx: 0xbfffd98c  edx: 0x976d3952
      edi: 0xa038b1a8  esi: 0x00000006  ebp: 0xbfffd9a8  esp: 0xbfffd98c
       ss: 0x00000023  efl: 0x00000206  eip: 0x976d3952   cs: 0x0000000b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x18b0e000
    Logical CPU:     0
    Error Code:      0x00080148
    Trap Number:     132
    Binary Images:
        0x1000 -  0x1574fdf +com.riotgames.LeagueofLegends.GameClient (1.0 - 1) <4A531F5F-9DFE-3D73-A7BA-A28F76211C17> /Applications/League of Legends.app/Contents/LoL/RADS/solutions/lol_game_client_sln/releases/0.0.0.85/d eploy/LeagueOfLegends.app/Contents/MacOS/LeagueofLegends
    0x3128000 -  0x31d6fff +libRiotLauncher.dylib (0) <0E964681-9436-3C6C-9A36-F9799F4DE729> /Applications/League of Legends.app/Contents/LoL/RADS/solutions/lol_game_client_sln/releases/0.0.0.85/d eploy/LeagueOfLegends.app/Contents/MacOS/libRiotLauncher.dylib
    0x31eb000 -  0x32baff7 +libfmodex.dylib (1) <6E4FA8F2-EDB4-3894-9979-0301040E591F> /Applications/League of Legends.app/Contents/LoL/RADS/solutions/lol_game_client_sln/releases/0.0.0.85/d eploy/LeagueOfLegends.app/Contents/MacOS/libfmodex.dylib
    0x330e000 -  0x3350ff6 +libfmodevent.dylib (1) <E0AE6AEC-8806-3227-A942-5D7F6DEFAF74> /Applications/League of Legends.app/Contents/LoL/RADS/solutions/lol_game_client_sln/releases/0.0.0.85/d eploy/LeagueOfLegends.app/Contents/MacOS/libfmodevent.dylib
    0x335f000 -  0x33a8fff +libfmodeventnet.dylib (1) <FEA48BE5-A9BF-38FC-A31C-14807529A814> /Applications/League of Legends.app/Contents/LoL/RADS/solutions/lol_game_client_sln/releases/0.0.0.85/d eploy/LeagueOfLegends.app/Contents/MacOS/libfmodeventnet.dylib
    0x33b9000 -  0x38d9fe7 +Cg (0) /Applications/League of Legends.app/Contents/LoL/RADS/solutions/lol_game_client_sln/releases/0.0.0.85/d eploy/LeagueOfLegends.app/Contents/Frameworks/Cg.framework/Cg
    0x3d46000 -  0x3d47ffd +com.bugsplatsoftware.bugsplatframework (1.0) <7A6DD01C-D660-69C5-33E5-C65723B93FB7> /Applications/League of Legends.app/Contents/LoL/RADS/solutions/lol_game_client_sln/releases/0.0.0.85/d eploy/LeagueOfLegends.app/Contents/Frameworks/BugSplat.framework/Versions/A/BugS plat
    0x3dd1000 -  0x3ddffff  libSimplifiedChineseConverter.dylib (61) <6E42E198-9C8D-3F0F-9660-6D9975C2461E> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x5200000 -  0x5258ff3 +libRiotRadsIO.dylib (0) <F34ED042-CF11-3345-AF9E-0A0F8AA3E669> /Applications/League of Legends.app/Contents/LoL/RADS/libRiotRadsIO.dylib
    0x5780000 -  0x578bffa  com.apple.CommerceCore (1.0 - 42) <FB799100-F7E7-3515-AB46-C09E1A85C3E6> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x57c4000 -  0x57c8ffd  com.apple.audio.AppleHDAHALPlugIn (2.5.8 - 2.5.8fc1) <A70D7ECC-2D6F-35D7-B82B-A7BBE05A0F3E> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x10775000 - 0x1079aff9  com.apple.framework.familycontrols (4.1 - 410) <1C51C102-191C-3EE5-BC56-24B7DE55B885> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x1cbae000 - 0x1cdaeffd  com.apple.audio.units.Components (1.9 - 1.9) <973BA48C-DDDF-362F-A862-620168BA8E9C> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x40000000 - 0x4045eff7  com.apple.driver.AppleIntelHD5000GraphicsGLDriver (8.20.29 - 8.2.0) <A2D91778-98F0-31EC-AB19-F9678155E749> /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD5000GraphicsGLDriver
    0x8fe5d000 - 0x8fe8f417  dyld (239.3) <4B280BB1-55F8-313F-86A6-8ADD644ED69E> /usr/lib/dyld
    0x90008000 - 0x90010ff7  libCGCMS.A.dylib (599.7) <A7404924-9A2B-3324-A934-BD08953E7098> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
    0x9007b000 - 0x900e6ff9  com.apple.Heimdal (4.0 - 2.0) <0DC5A0C2-D664-3B18-B4FD-DD027D62DE8A> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x90105000 - 0x90106fff  libsystem_blocks.dylib (63) <2AC67D5E-ECD4-3644-A53C-9684F9B7AA33> /usr/lib/system/libsystem_blocks.dylib
    0x90107000 - 0x9010effb  libsystem_pthread.dylib (53.1.4) <AD357A6E-6746-3FB2-B6F5-8101E9DE7671> /usr/lib/system/libsystem_pthread.dylib
    0x90fb9000 - 0x90fbfffb  libunwind.dylib (35.3) <316039E0-FB7A-35DA-89BE-C461213D6BDE> /usr/lib/system/libunwind.dylib
    0x90fc0000 - 0x91087ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <149C7C83-4260-39E9-9258-3B43CB3962EA> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x91416000 - 0x9144eff7  com.apple.MediaKit (15 - 709) <9B0484C2-953C-34EB-BFAB-1190F55BB632> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x9144f000 - 0x91455ff7  com.apple.AOSNotification (1.7.0 - 760.3) <6F809FD3-4DE6-32C4-9E8A-5CBCAE3A73C9> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x91456000 - 0x914a2ff7  libcups.2.dylib (372) <75C1C149-4054-3060-97AE-AFC1ACCA793F> /usr/lib/libcups.2.dylib
    0x914a3000 - 0x91615ffb  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <BA08CB4B-B6DA-31BE-BCE9-A738CB25A48A> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x91616000 - 0x9161fffa  com.apple.CommonAuth (4.0 - 2.0) <6CB82D57-3C55-39E5-9036-8047DF3E6F57> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x91752000 - 0x91779fff  com.apple.CoreVideo (1.8 - 117.2) <4FDBE865-4A94-39B7-B9F4-44055EC988C3> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9177a000 - 0x917b2fff  com.apple.LDAPFramework (2.4.28 - 194.5) <77DAAC92-8442-3BBD-9782-A7D48BC74BE3> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x917b3000 - 0x917dfff7  GLRendererFloat (9.3.1) <410EC313-AEF2-3DE1-B5DD-91B9EC587D2A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x917e0000 - 0x917e9fff  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <E2A5F1E3-2B8A-3E85-8559-18B1A29AE271> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x917ea000 - 0x917eafff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <DDAC0B59-F886-3AB1-98E8-C71FFF161CD4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x917eb000 - 0x917fdfff  libsystem_asl.dylib (217.1.4) <F4B8D4CC-71BC-3C45-8669-91747B456739> /usr/lib/system/libsystem_asl.dylib
    0x917fe000 - 0x91801ffe  com.apple.LoginUICore (3.0 - 3.0) <6FE961A4-3C17-3004-B50B-FD78FDC28350> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
    0x91802000 - 0x91806ff7  libmacho.dylib (845) <AAB35F2B-B515-37CD-A637-A2E88DFE4080> /usr/lib/system/libmacho.dylib
    0x91826000 - 0x91840ff7  com.apple.GenerationalStorage (2.0 - 160.2) <D6235DD6-3039-383F-9378-294A2EC11E50> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x91841000 - 0x91869fff  libsystem_info.dylib (449.1.3) <3FE52670-FFEE-3D04-ADE7-EA69BC00B066> /usr/lib/system/libsystem_info.dylib
    0x9186a000 - 0x9186afff  com.apple.Cocoa (6.8 - 20) <63DA3D59-5D81-3340-A985-A11CE4A3E83F> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9186d000 - 0x91ca1ff7  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <557A6F7A-4A24-32B0-A1FD-4B0E27912648> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x91ca2000 - 0x91cb5fff  com.apple.ImageCapture (9.0 - 9.0) <2128121D-9069-3BF2-BE7D-D6CD7B9C6630> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92482000 - 0x92486ffa  libGIF.dylib (1038) <1108B78D-2B39-3823-8FF8-6A9FDC31AC4E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x924f2000 - 0x924f3fff  libDiagnosticMessagesClient.dylib (100) <B936B1D4-90BB-395D-8EA9-E1237608E7D0> /usr/lib/libDiagnosticMessagesClient.dylib
    0x92524000 - 0x926cc4af  libobjc.A.dylib (551.1) <18361D2F-0405-39B0-8354-2D865703118D> /usr/lib/libobjc.A.dylib
    0x926cd000 - 0x929ceff7  com.apple.CoreServices.CarbonCore (1077.14 - 1077.14) <42E10BD1-995B-3FB4-8A6D-5FD071FB8BD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x929cf000 - 0x929d2ffb  libutil.dylib (34) <B496031E-E763-3DEB-84D2-85C0F3DF2012> /usr/lib/libutil.dylib
    0x92c50000 - 0x92c73ff7  libc++abi.dylib (48) <5367BE5A-D475-3FB4-972D-E1DC999A709A> /usr/lib/libc++abi.dylib
    0x92c7c000 - 0x92c87ff6  com.apple.NetAuth (5.0 - 5.0) <3B2E9615-EE12-38FC-BDCF-09529FF9464B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x92c88000 - 0x92c96ff7  com.apple.Sharing (132.2 - 132.2) <2BE8E58B-3C0D-35E4-8B00-6BE89821E757> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x92cfa000 - 0x92d96fff  com.apple.QD (3.50 - 298) <39109A21-3337-3F6D-B33B-53737C2187E5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x92d97000 - 0x92da7ff5  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8106E9A2-F2A7-392C-B404-E88A20843F0C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x92da8000 - 0x92f6effb  libicucore.A.dylib (511.27) <653147E9-7326-337A-99E1-B42E4D801E53> /usr/lib/libicucore.A.dylib
    0x92f6f000 - 0x92f93fff  libxpc.dylib (300.1.17) <9115C2E7-FA58-3D25-8676-6360C7CF8E13> /usr/lib/system/libxpc.dylib
    0x933ba000 - 0x933ebffd  com.apple.GSS (4.0 - 2.0) <FB94C6FD-E9AE-3B26-9242-E3298EF1BA69> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x933ec000 - 0x933eeffb  libRadiance.dylib (1038) <B3B8CD5D-74C8-3D73-BC98-21F7B18E77C1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x933f6000 - 0x93411ff5  com.apple.openscripting (1.4 - 157) <5C161A52-8D2F-3D56-A988-05727BED7A59> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93412000 - 0x93416ffc  com.apple.IOSurface (91 - 91) <B337413D-F2D6-3272-B74A-9E1392ED5756> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x93417000 - 0x93480fff  com.apple.datadetectorscore (5.0 - 354.0) <CEE08580-8FFC-3241-9E7D-851908179FB2> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x93481000 - 0x937acff6  com.apple.Foundation (6.9 - 1056) <B30A8E0D-B36F-37D9-AA80-E4E02D6EE192> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x937ad000 - 0x937d8ff7  libsystem_network.dylib (241.3) <FA1F2F7B-93B9-37FD-8070-A60725749A1F> /usr/lib/system/libsystem_network.dylib
    0x937d9000 - 0x937e5ffe  libkxld.dylib (2422.75.4) <E33644D0-8809-356F-8144-67CC09052E9B> /usr/lib/system/libkxld.dylib
    0x937e6000 - 0x93844ffd  com.apple.AE (665.5 - 665.5) <58CF4AC0-2F2E-3C4F-8075-636CD45A6130> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x93845000 - 0x93c0aff6  libLAPACK.dylib (1094.5) <E6286E68-3501-31AC-813E-75B3B3968011> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x93c0b000 - 0x93c0dfff  com.apple.securityhi (9.0 - 55005) <51765C73-80D1-33E3-9589-3E88380CE007> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93c0e000 - 0x93c84ff3  com.apple.securityfoundation (6.0 - 55122) <25149798-A37E-316F-84AB-93029EAF33D8> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x93c85000 - 0x93d0efff  com.apple.CoreSymbolication (3.0 - 141) <3A521E7C-37B6-3ED1-863C-8CB5E2DEAC08> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x93d0f000 - 0x93d27ff7  libsystem_malloc.dylib (23.1.10) <689AB95D-FF71-364E-B6C7-7EFD1E4CB7E6> /usr/lib/system/libsystem_malloc.dylib
    0x93d28000 - 0x93ed4ff1  com.apple.QuartzCore (1.8 - 332.0) <C8467E02-1AC0-333E-890E-9AAD65FAEC0E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x93fe3000 - 0x93ff7ff9  com.apple.MultitouchSupport.framework (245.13 - 245.13) <6860A0D0-3654-3B02-B2E9-C4D2637167B8> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x94000000 - 0x940e6ff7  com.apple.coreui (2.1 - 231) <AE791086-2144-30F8-A943-BFF90C6B9D6A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x940e7000 - 0x94186ff7  libCoreStorage.dylib (380) <CACC6518-AAF8-3D3F-88D9-D41E44639F82> /usr/lib/libCoreStorage.dylib
    0x94187000 - 0x941bcffd  libssl.0.9.8.dylib (50) <F3BEA2DF-DB84-37F0-B4C7-97C0A4DF19C9> /usr/lib/libssl.0.9.8.dylib
    0x941be000 - 0x944b0ff8  com.apple.CoreImage (9.0.54) <52994AA9-1B03-3720-B02D-6E888D2A23E4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x944b1000 - 0x944bbff7  com.apple.DirectoryService.Framework (10.9 - 173.1.1) <D6735614-EF4B-389F-BF99-7D8416A504BA> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x94512000 - 0x94610fff  libJP2.dylib (1038) <E5860548-4C4F-3C4D-948E-1A25EF5ADA71> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x949d2000 - 0x94cbcfd2  com.apple.vImage (7.0 - 7.0) <D94F266B-B1E3-3734-8C6C-CB4EF655F411> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x94cbd000 - 0x94d10fff  com.apple.htmlrendering (77 - 1.1.4) <E4988ECB-285F-3FC0-A8EC-48A1260A96C7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x94d11000 - 0x94d11fff  com.apple.CoreServices (59 - 59) <BF15253B-242B-378A-8546-8F7619764AAC> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x94d12000 - 0x94d4eff4  com.apple.RemoteViewServices (2.0 - 94) <C08AC054-A318-3BC8-9634-510B39493C52> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x94d4f000 - 0x94d7aff5  com.apple.ChunkingLibrary (2.0 - 155.1) <87D1076A-1EC8-3C26-93DB-E4AD394A45AF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x94d7b000 - 0x94d80ff6  libcompiler_rt.dylib (35) <B838D63E-59DD-3C07-A17F-F90906F3FB09> /usr/lib/system/libcompiler_rt.dylib
    0x94dac000 - 0x94e6fff1  com.apple.CoreText (352.0 - 367.15) <8C486246-B12A-39E1-9B35-DE9451FDCF4B> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x94e70000 - 0x94e9cff7  com.apple.DictionaryServices (1.2 - 208) <59E9F98C-9C58-34C6-9D78-1FD4649DCBC5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x94ebd000 - 0x94ebefff  liblangid.dylib (117) <F18F76C6-7E4B-34AD-AE81-C1C031BF2F7D> /usr/lib/liblangid.dylib
    0x957e6000 - 0x9580afff  libJPEG.dylib (1038) <1154DC9B-6E0C-3EED-9C39-E382474B5FC1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9580b000 - 0x9589cfff  com.apple.ColorSync (4.9.0 - 4.9.0) <10317959-1392-3689-B3F6-F8E2D84931BF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9589d000 - 0x958a1ffa  libcache.dylib (62) <F69AA956-EA55-3562-8A8E-C6393662B1D6> /usr/lib/system/libcache.dylib
    0x958a2000 - 0x958f0ff9  com.apple.HIServices (1.22 - 466) <30636237-408A-3552-90C1-1279348DF7CB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x958f1000 - 0x958f1fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <E8443BE8-482C-300A-BEDA-EDB07242A64B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x958f2000 - 0x958f2fff  com.apple.ApplicationServices (48 - 48) <6766DF5C-6A98-3AAF-A222-D99599BB5A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x958f3000 - 0x95944ff1  libstdc++.6.dylib (60) <354F284B-2343-3810-9CA2-E28038824F6E> /usr/lib/libstdc++.6.dylib
    0x95ac8000 - 0x95ac9fff  libremovefile.dylib (33) <E6B6F0CD-1700-31DC-93DB-3D33EC85DA0C> /usr/lib/system/libremovefile.dylib
    0x95aca000 - 0x95bbefff  libFontParser.dylib (111.1) <D8F9B2A4-41A6-3407-8D80-13A841F97BE5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x95c2e000 - 0x95d11ff7  libcrypto.0.9.8.dylib (50) <F24D0250-CD74-3955-9E67-109765B882C1> /usr/lib/libcrypto.0.9.8.dylib
    0x966f5000 - 0x966f9fff  com.apple.CommonPanels (1.2.6 - 96) <CDB85D69-FF93-31CF-B530-5DA366C9288C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x96711000 - 0x9671fff7  libz.1.dylib (53) <3D1E738F-D26C-3721-8E16-52473B560A8F> /usr/lib/libz.1.dylib
    0x96726000 - 0x968a4ff8  libGLProgrammability.dylib (9.3.1) <FBB14DDE-6A3B-30BB-81F9-088B3AF555A5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x968a5000 - 0x96c1aff9  com.apple.HIToolbox (2.1 - 696) <43CB31D6-4C2B-30FA-A374-DB7C5728E7AD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x96c1b000 - 0x96c1bffd  libOpenScriptingUtil.dylib (157) <4D06E8ED-D312-34EA-A448-DFF45ADC3CE5> /usr/lib/libOpenScriptingUtil.dylib
    0x970c4000 - 0x97106fff  libGLU.dylib (9.3.1) <F15F3C93-3B42-35AF-8417-B2F79FDE1B70> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9710a000 - 0x971faffb  libiconv.2.dylib (41) <848FEBA7-2E3E-3ECB-BD59-007F32468787> /usr/lib/libiconv.2.dylib
    0x97340000 - 0x9737eff7  com.apple.NavigationServices (3.8 - 215) <196E21DC-C420-33B2-AC5C-CC35264C5E58> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x976bc000 - 0x976d9ff4  libsystem_kernel.dylib (2422.75.4) <1FB471BD-92E5-314E-9C2B-154B117C06E8> /usr/lib/system/libsystem_kernel.dylib
    0x976dc000 - 0x97719ffb  libGLImage.dylib (9.3.1) <26AB4352-1F99-3170-B5E0-459F561233D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9771a000 - 0x9771cfff  libsystem_configuration.dylib (596.12) <DE9038BB-0403-3263-885F-D949F8FBAFE7> /usr/lib/system/libsystem_configuration.dylib
    0x9771d000 - 0x97725fff  libsystem_dnssd.dylib (522.1.11) <AFF243AD-A0AF-3D7B-9E56-7B5BE81FC08C> /usr/lib/system/libsystem_dnssd.dylib
    0x97730000 - 0x97761ffa  libsystem_m.dylib (3047.16) <7BF40745-1A2D-3DB2-8D49-3F149851AE15> /usr/lib/system/libsystem_m.dylib
    0x97762000 - 0x978f2ff0  GLEngine (9.3.1) <B8ACEE86-BEAE-3B9D-A780-74B674C58203> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundl e/GLEngine
    0x978f3000 - 0x97939ff7  libFontRegistry.dylib (127) <BB1B8711-BEC9-3D0B-8C8D-9697039EE033> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x97c8e000 - 0x98086ffe  com.apple.CoreGraphics (1.600.0 - 599.7) <A98A8C69-9394-301F-9504-0728EFFC9854> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x98087000 - 0x980c6ff7  com.apple.bom (12.0 - 192) <B5E5E554-BFBD-3CB7-A43B-92F51F596FB4> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x980c7000 - 0x9811dff6  com.apple.ScalableUserInterface (1.0 - 1) <30203384-7230-356E-BF47-76307CD21148> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x98122000 - 0x9838fff6  com.apple.security (7.0 - 55471) <5FCF76B2-92C6-3404-87D3-91B3F6E203AA> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9862b000 - 0x98706ff7  com.apple.LaunchServices (572.23 - 572.23) <7E52FB5C-9ECF-3CB9-BF18-6652B8D8CDE0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x98707000 - 0x98710fff  com.apple.audio.SoundManager (4.1 - 4.1) <7E80241B-435E-340E-8E03-BDFF7763B77F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x98711000 - 0x98712ffd  libunc.dylib (28) <74F7C952-F254-3E55-9C00-780DCEF3F410> /usr/lib/system/libunc.dylib
    0x98713000 - 0x98717ffc  libpam.2.dylib (20) <763AC655-931B-3891-AB6A-F2CD4A21F906> /usr/lib/libpam.2.dylib
    0x98718000 - 0x9882affc  libsqlite3.dylib (158) <A1CDF363-AB65-3D3F-B62C-171C01DEE337> /usr/lib/libsqlite3.dylib
    0x9882b000 - 0x9882eff7  com.apple.help (1.3.3 - 46) <616B1C40-AAB2-3041-9CBE-A7058E4285B5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x988d0000 - 0x988e2fff  libbsm.0.dylib (33) <1BE92DB5-0D2F-3BB5-BCC6-8A71EF2A3450> /usr/lib/libbsm.0.dylib
    0x9890d000 - 0x98935ff7  libRIP.A.dylib (599.7) <B109DD2D-A235-3C4C-B67C-E83F1B4E57A1> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
    0x98936000 - 0x98938fff  libquarantine.dylib (71) <39FC7A3E-9508-3C82-9945-4E4229742FEC> /usr/lib/system/libquarantine.dylib
    0x98939000 - 0x9893dfff  com.apple.IOAccelerator (98.9 - 98.9) <E78C32A4-9214-3974-BA21-3B981DE1C8F7> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelera tor
    0x9893e000 - 0x9894eff7  libsasl2.2.dylib (170) <CA1C07F6-8E17-315E-AE49-AB696DDE6707> /usr/lib/libsasl2.2.dylib
    0x9894f000 - 0x989e6ff7  com.apple.ink.framework (10.9 - 207) <710EF47E-89F1-317F-AEAB-A42FE0E40B92> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x98baf000 - 0x997caff3  com.apple.AppKit (6.9 - 1265) <AE258D94-0272-394F-BBB7-9B5C165A4A78> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x997cb000 - 0x997d5fff  com.apple.bsd.ServiceManagement (2.0 - 2.0) <907F726B-BA7D-360C-8E46-02DB99DD903A> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x997d6000 - 0x997ddff2  com.apple.NetFS (6.0 - 4.0) <D295AB6B-CB1D-39E3-9D2F-42273D928D70> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x997de000 - 0x9983affa  com.apple.print.framework.PrintCore (9.0 - 428) <68C13032-D1B7-31C7-968B-E4C6325A0DA7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x99855000 - 0x99860ffb  libcommonCrypto.dylib (60049) <7C884189-8A58-3D10-9164-571DAABB7D58> /usr/lib/system/libcommonCrypto.dylib
    0x99875000 - 0x99876ffa  libsystem_sandbox.dylib (278.10) <31C77DCA-F6CA-33F7-BE57-500932EA8494> /usr/lib/system/libsystem_sandbox.dylib
    0x99918000 - 0x99934fff  libCRFSuite.dylib (34) <FFF76EBA-DF35-3A5F-857F-3F4B1C9F4C77> /usr/lib/libCRFSuite.dylib
    0x99935000 - 0x99951ff9  com.apple.Ubiquity (1.3 - 289) <64DEF1B4-F874-3DF2-9D58-ABBF0A15C5BB> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x99952000 - 0x99ab4ff3  com.apple.CFNetwork (673.0.3 - 673.0.3) <5E0E9AE8-073B-3F2B-B0C7-A0129DE787F6> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x99ab5000 - 0x99abfff7  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <16E20DCD-89F4-3C8E-9DBA-EED359807038> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x99ac0000 - 0x99babff4  com.apple.DiskImagesFramework (10.9 - 371.1) <FC13BD5A-0FB7-35D5-A8DF-0510CFA996FE> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x99bac000 - 0x99e10fff  com.apple.CoreData (107 - 481) <EF1D2394-41E0-356F-B8F8-3E60151EC441> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x99e11000 - 0x99e66ff7  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <A20E9FFF-79AE-30CD-8377-AA939EEDCE3F> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x99e67000 - 0x99e69ffe  libCVMSPluginSupport.dylib (9.3.1) <771F15D1-AB7E-32ED-98F1-8335EF1F9E5C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x99e6a000 - 0x99e72fee  libcldcpuengine.dylib (2.3.58) <D68C7948-9A1F-3505-9B32-C007AD6A793D> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x99e73000 - 0x99f0bff7  com.apple.Metadata (10.7.0 - 800.12.2) <5E9EA0AC-EE9E-362E-9DAC-9B7D21A53A2A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x99fe6000 - 0x9a0f2fff  com.apple.ImageIO.framework (3.3.0 - 1038) <4776FAFD-F80F-3BDE-A396-80D988BE8EC1> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x9a0f3000 - 0x9a143ff7  libcorecrypto.dylib (161.1) <135FD99E-2211-3DF4-825C-C9F816107F0C> /usr/lib/system/libcorecrypto.dylib
    0x9a144000 - 0x9a15cfff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <630A5CCF-8FC3-379D-B0BD-41DCE1F0B624> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x9a15d000 - 0x9a166fff  com.apple.DiskArbitration (2.6 - 2.6) <53700F94-766F-3DA0-A9DF-DE2F8FF84CB3> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9a167000 - 0x9a1dcff1  com.apple.ApplicationServices.ATS (360 - 363.1) <6947C85B-3CAB-3FD1-86FD-B14FE212735C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9a1dd000 - 0x9a1e0ff9  com.apple.TCC (1.0 - 1) <DE9FBF11-4ABB-317F-A3F8-4D26A98A5AEF> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x9a2bc000 - 0x9a30bfff  com.apple.opencl (2.3.58 - 2.3.58) <82A383B9-EFE6-38D0-8465-CFB8F9367834> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9a338000 - 0x9a343fff  com.apple.CrashReporterSupport (10.9 - 538) <16850C12-BBC7-3F02-AA33-A0BFE5FAD6FE> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x9a5f5000 - 0x9a61ffff  libxslt.1.dylib (13) <249D54AB-1D82-38FE-ABEC-0D575450C73B> /usr/lib/libxslt.1.dylib
    0x9a620000 - 0x9a63bff6  libPng.dylib (1038) <97F26689-9706-348E-A07D-5A332B17750A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9a63c000 - 0x9a6bcff7  com.apple.CoreServices.OSServices (600.4 - 600.4) <21FF2945-32B7-3ABD-ACBB-5533241999D8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9a6bd000 - 0x9a6bfff2  com.apple.EFILogin (2.0 - 2) <A884A315-7857-3BF8-97FA-1EB4A61C97F8> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x9a6c8000 - 0x9a731fff  com.apple.SystemConfiguration (1.13 - 1.13) <542075CD-9085-3F30-B84B-DD0277D6A40E> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9a732000 - 0x9a73afff  libcopyfile.dylib (103) <3442BBA3-ABB7-3A7D-9F8A-DB55A3CA2151> /usr/lib/system/libcopyfile.dylib
    0x9a853000 - 0x9a923fef  libvDSP.dylib (423.32) <E2FA7230-A001-3F6B-9ACF-6998C51AD7DC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9a924000 - 0x9ab26ff7  com.apple.CoreFoundation (6.9 - 855.11) <21BA3E03-EA00-3AC4-8B31-806779114FE8> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9ab27000 - 0x9ab64ff7  libauto.dylib (185.5) <CD008E66-4A0C-35F5-8D72-80D76A716A03> /usr/lib/libauto.dylib
    0x9abc4000 - 0x9abcdfff  libsystem_notify.dylib (121) <C52DC28B-66DF-3F1C-8A2B-4D1F41DEB168> /usr/lib/system/libsystem_notify.dylib
    0x9abce000 - 0x9abd3ff3  libsystem_platform.dylib (24.1.4) <03238EB4-2C7C-3D55-8FA4-12F697B88878> /usr/lib/system/libsystem_platform.dylib
    0x9abd4000 - 0x9abe3fff  libGL.dylib (9.3.1) <32F61D19-8636-3B3F-94A2-AB2C4367B82A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9abe4000 - 0x9abf0ffc  libbz2.1.0.dylib (29) <3CEF1E92-BA42-3F8A-8E8D-9E1F7658E5C7> /usr/lib/libbz2.1.0.dylib
    0x9abf1000 - 0x9acbeff7  com.apple.backup.framework (1.5.1 - 1.5.1) <DDA29C05-3FBA-3E8C-9EB7-97D5871C9257> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9acbf000 - 0x9ad18ffa  libTIFF.dylib (1038) <4204CF01-2B19-3846-ADA4-2E3F3BCAD117> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9ad19000 - 0x9ad5ffff  libcurl.4.dylib (78) <533695E9-C1F9-368D-8F8E-9C35993791AF> /usr/lib/libcurl.4.dylib
    0x9ad60000 - 0x9ad6eff3  com.apple.opengl (9.3.1 - 9.3.1) <8E5EB187-90D0-31BE-BF14-A1D9B402AA0C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9ae3b000 - 0x9af91ff0  libBLAS.dylib (1094.5) <5A53FE27-32DE-322C-BAB3-E03B93D37F88> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9af92000 - 0x9b005fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B07169DD-5577-3898-8146-0E63A5FD31DF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9b177000 - 0x9b1bffff  com.apple.PerformanceAnalysis (1.47 - 47) <48BE84A9-3753-3CDA-A092-2F8CA36C731C> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x9b1c0000 - 0x9b1cdff7  com.apple.AppleFSCompression (56 - 1.0) <32474B4B-209F-3A35-A66D-53B90879F02B> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x9b1ce000 - 0x9b1e6ffd  libdispatch.dylib (339.1.9) <4A985218-0898-3554-8DB1-BCA0B676B9A6> /usr/lib/system/libdispatch.dylib
    0x9b1e7000 - 0x9b25cffb  com.apple.framework.IOKit (2.0.1 - 907.1.13) <86D72735-9DFB-35C8-83F7-CE0DCF17D354> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9b25d000 - 0x9b27affb  libresolv.9.dylib (54) <3EC12A7F-6BA1-3976-9F1F-6A4B76303028> /usr/lib/libresolv.9.dylib
    0x9b27b000 - 0x9b30dffe  libsystem_c.dylib (997.1.1) <8288A730-B230-34E2-8C4B-6A1FBD12C023> /usr/lib/system/libsystem_c.dylib
    0x9b30e000 - 0x9b31bfff  com.apple.Librarian (1.2 - 1) <AA456CBE-F102-3FC5-8980-E4C0ED6DEA3B> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x9b31c000 - 0x9b335fff  com.apple.Kerberos (3.0 - 1) <B5231442-5643-3605-8464-8F654A4C5019> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9b367000 - 0x9b368ffc  com.apple.TrustEvaluationAgent (2.0 - 25) <064B485D-56E0-3DD7-BBE2-E08A5BFFF8B3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x9b369000 - 0x9b36cffa  libCGXType.A.dylib (599.7) <2738FF52-4B47-31AD-B7E5-412F6AFACC2A> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
    0x9b422000 - 0x9b427ff7  com.apple.print.framework.Print (9.0 - 260) <6875EC0C-7DD0-3660-AFD6-25E407F49E0D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9b428000 - 0x9b45efff  com.apple.IconServices (25 - 25.17) <05C87A32-3E0F-3EE7-8CE5-DB6463369FFA> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0x9b460000 - 0x9b46bfff  libGPUSupportMercury.dylib (9.3.1) <75FF69D5-0D1F-3495-9EBE-85F0BF687AC6> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupportMercury.dylib
    0x9b46c000 - 0x9b474fff  liblaunch.dylib (842.1.4) <3E946C2F-76B5-3980-BC07-30D78BBD3279> /usr/lib/system/liblaunch.dylib
    0x9b475000 - 0x9b483fff  libxar.1.dylib (202) <B73748D4-F830-3C71-98B3-7A3ABF5136FD> /usr/lib/libxar.1.dylib
    0x9b703000 - 0x9b764ff7  com.apple.Symbolication (1.4 - 129) <E5948C08-6ADF-3D86-9134-6AE49CF1DA0F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x9b765000 - 0x9b793ff3  com.apple.DebugSymbols (106 - 106) <37B107F9-4AA0-39FF-9602-A27811C8DC96> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x9b794000 - 0x9b794fff  com.apple.Carbon (154 - 157) <33457512-4EA2-373B-BB04-A6A7B6D4E54A> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9b7fd000 - 0x9b801ffe  libCoreVMClient.dylib (58.1) <0EB8FFD7-AFED-3A63-810E-29629831D43D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x9b802000 - 0x9b8aeffb  libvMisc.dylib (423.32) <43873EFF-FB43-3301-BEE8-F2C3A046D7A6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9b8af000 - 0x9b8afffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <F43CF0ED-A017-35EE-813D-37D08A60A74B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9b8b0000 - 0x9b99cff7  libxml2.2.dylib (26) <32040145-6FD6-3AD2-B98B-39F73BF9AC47> /usr/lib/libxml2.2.dylib
    0x9b9d0000 - 0x9b9d8ffe  libGFXShared.dylib (9.3.1) <1EF75B97-012E-3730-8017-5E832946B83D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x9ba2f000 - 0x9ba5fff7  com.apple.CoreServicesInternal (184.8 - 184.8) <2AA649CA-CBEC-31D4-9A57-BB3471D04157> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x9bab6000 - 0x9bbedff3  com.apple.desktopservices (1.8 - 1.8) <1CA936E2-C5DB-32BF-AFD0-E8FF97A462A5> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9bc21000 - 0x9bc24fff  libdyld.dylib (239.3) <ED3D413D-D8FE-39A3-ADF4-00B4E7244A67> /usr/lib/system/libdyld.dylib
    0x9bc25000 - 0x9bc25fff  libkeymgr.dylib (28) <43297D93-111A-3880-AE0D-55C7404C52DC> /usr/lib/system/libkeymgr.dylib
    0x9bc26000 - 0x9bc32ff7  com.apple.OpenDirectory (10.9 - 173.1.1) <2AA24814-2DC6-3E28-B71B-186B686F0F19> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9bc33000 - 0x9bc62fff  com.apple.framework.SystemAdministration (1.0 - 1.0) <B3E7E274-86D7-3AFC-9FA4-0B01D3EB152E> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
    0x9bd91000 - 0x9bd93fff  com.apple.ExceptionHandling (1.5 - 10) <EE0EB4CB-9EE9-33EC-94F0-7598A7D06CAC> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x9bd94000 - 0x9bd94fff  libodfde.dylib (20) <81CF558D-5757-33B9-A5E4-5A6D237A80CE> /usr/lib/libodfde.dylib
    0x9bd95000 - 0x9bdeafff  libc++.1.dylib (120) <AE695E83-E3C6-3F13-BFC2-A2945AEAB0AC> /usr/lib/libc++.1.dylib
    0x9bdeb000 - 0x9bdecfff  libSystem.B.dylib (1197.1.1) <5A9C548E-A852-35B3-B9AB-DF658EF75242> /usr/lib/libSystem.B.dylib
    0x9c35b000 - 0x9c35ffff  libheimdal-asn1.dylib (323.12) <9EA2A221-301B-3B9A-BBF2-38134145B5A8> /usr/lib/libheimdal-asn1.dylib
    0x9c360000 - 0x9c36bfff  libcsfde.dylib (380) <9BF88593-920A-3BC3-AD21-71EA8AE48500> /usr/lib/libcsfde.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 1
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 724
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=179.4M resident=81.1M(45%) swapped_out_or_unallocated=98.3M(55%)
    Writable regions: Total=941.8M written=345.7M(37%) resident=692.7M(74%) swapped_out=0K(0%) unallocated=249.1M(26%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG backing stores                   236K
    CG image                             48K
    CG shared images                    180K
    IOKit                             209.3M
    Kernel Alloc Once                     4K
    MALLOC                            601.7M
    MALLOC (admin)                       48K
    Memory Tag 242                       12K
    OpenGL GLSL                        1280K
    Stack                              70.2M
    VM_ALLOCATE                        92.0M
    VM_ALLOCATE (reserved)              148K        reserved VM address space (unallocated)
    __DATA                             43.1M
    __IMAGE                             528K
    __IMPORT                             12K
    __LINKEDIT                         48.7M
    __OBJC                             1856K
    __PAGEZERO                            4K
    __TEXT                            130.8M
    __UNICODE                           544K
    mapped file                       149.9M
    shared memory                         4K
    ===========                      =======
    TOTAL                               1.3G
    TOTAL, minus reserved VM space      1.3G
    Model: MacBookPro11,1, BootROM MBP111.0138.B03, 2 processors, Intel Core i5, 2.4 GHz, 8 GB, SMC 2.16f58
    Graphics: Intel Iris, Intel Iris, Built-In, 1024 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x02FE, 0x000000000000000000000000000000000000
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x02FE, 0x000000000000000000000000000000000000
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x112), Broadcom BCM43xx 1.0 (6.30.223.154.49)
    Bluetooth: Version 4.2.1f2 12982, 3 services, 15 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en0
    Serial ATA Device: APPLE SSD SM0256F, 251 GB
    USB Device: Internal Memory Card Reader
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: USB Laser Mouse
    Thunderbolt Bus: MacBook Pro, Apple Inc., 17.2

  • Need Help Displaying Code128 Bar Code

    I have an ASP classic page were I can render a 3of9 bar code using Javascript where the bar code is rendered as an image.  I need to do the same thing using code128 but can't find a suitable script.  Does anyone have one they are willing to share?  I have Googled this to death!  Thanks in advance for any help!

    From CPAN FAQs:
    Barcode::Code128 generates bar codes using the CODE 128 symbology. It can generate images in PNG or GIF format using the GD package, or it can generate a text string representing the barcode that you can render using some other technology if desired.
    The intended use of this module is to create a web page with a bar code on it, which can then be printed out and faxed or mailed to someone who will scan the bar code. The application which spurred its creation was an expense report tool, where the employee submitting the report would print out the web page and staple the receipts to it, and the Accounts Payable clerk would scan the bar code to indicate that the receipts were received.
    The default settings for this module produce a large image that can safely be FAXed several times and still scanned easily. If this requirement is not important you can generate smaller image using optional parameters, described below.
    If you wish to generate images with this module you must also have the GD module (written by Lincoln Stein, and available from CPAN) installed. Using the libgd library, GD can generate files in PNG (Portable Network Graphics) or GIF (Graphic Interchange Format) formats.
    Starting with version 1.20, and ending with 2.0.28 (released July 21st, 2004), GD and the underlying libgd library could not generate GIF files due to patent issues, but any modern version of libgd (since 2004) can do GIF as the patent has expired. Most browsers have no trouble with PNG files.
    In order to ensure you have a sufficiently modern installation of the GD module to do both GIF and PNG formats, we require version 2.18 of GD (which in turn requires libgd 2.0.28) or higher.
    If the GD module is not present, you can still use the module, but you will not be able to use its functions for generating images. You can use the barcode() method to get a string of "#" and " " (hash and space) characters, and use your own image-generating routine with that as input.
    To use the the GD module, you will need to install it along with this module. You can obtain it from the CPAN (Comprehensive Perl Archive Network) repository of your choice under the directory authors/id/LDS. Visit http://www.cpan.org/ for more information about CPAN. The GD home page is: http://stein.cshl.org/WWW/software/GD/GD.html
    I believe that is EXACTLY what you're looking for.

Maybe you are looking for

  • How can i check cpu count in my server?

    Hi, Can anybody help me how to find the number of CPUs in my server? Thanks a lot for ur help santhosh

  • Payment scheduling?

    How to make a payment if you missed the initial date?

  • AE CS5 - AIFF errors

    Had a crazy weekend trying to figure out why my trimmed .aif files wouldn't properly playback or render. Half the time they'd start at the beginning no matter where the cti was cued, half the time they'd just sound like my speakers were underwater. I

  • Creative Cloud won't download apps

    I downloaded the creative cloud app and launched it.  It loads, but never shows any apps to download.  It's just a white application box with no content.  I went to my account through Adobe, clicked on Desktop and selected download for Photoshop from

  • C7, how to put a wallpaper on lockscreen(belle)

    hi, i just want to ask regarding how to put a background wallpaper on the phone's lockscreen, i have been reading symbian belle's features, and it says that there is one like that, but i cant seem to know/find how to do it..also the lockscreen notifi