Who is smart enough to make...

Who is smart enough to make NAMES OF PALETTE IN ALL CAPS CASE?
It's new word in interface design or something?

You can fix it in InDesign:
http://indesignsecrets.com/dont-like-all-caps-in-the-interface-try-this-for-some-relief.ph p
Bob

Similar Messages

  • Who's Idea was to make the make Command-D duplicate not Deselect?

    O my goodness who's Idea was to make the make Command-D duplicate not Deselect?  Truly an aggravation for Mac Keyboard Shortcut lovers.
    Especially if you have used Command-D a Mac with all other programs for years.
    Is some one trying to make my Mac Crash?
    How about a Keyboard shortcut and menu like photoshop CS2 option?

    It is already a feature request and a promise for the future to have the Bridge have both keyboard shortcuts customizable and to have the Bridge in general more customizable.

  • Suddenly i got a white screen on my ipod. cannot be restored, doesnt open. warranty pased 40 days ago and i was not smart enough to go before (i didnt know).

    suddenly i got a white screen on my ipod. cannot be restored, doesnt open. warranty pased 40 days ago and i was not smart enough to go before (i didnt know).
    can this be resolved?

    Let the battery fully drain. After charging for an hlour try the reset and restore via iTunes.

  • Who's smarter then me?!

    I really hope there are people smarter with computers then me, no doubt there are tons .  i did my first real build last night and i am experiencing some problems listed below. any and all help would be very greatly appreciated!
    1 - INTERNET: last night built and then installed OS (windows xp with SP2). everything seemed fine, used internet to update drivers, download new programs as needed. left computer on overnight. this morning i try to use computer and its so slow makes me cry. 3minutes to load a webpage. its just so slow downloading the icons / buttons on webpages that its unusable. i rebooted, reset the internet connection...problem still persists.
    2 - QUICKLAUCH TOOLBAR - i use the quicklauch toolbar, great way to keep a desktop clean and no need to double click  . it seems that when i click an item in my quicklauch toolbar it launches 2 instances of the program. this is problematic as in combo with the above problem(slow internet loading) it bascially makes the program "not responding" and i have to taskmanager kill it.
    3 - MOUSE - i use a normal mouse connection to the back of the computer (the round input cable thing i can't think of the name right now). and i use a USB connection keyboard. the keyboard works great, however the mouse will only work EVERY OTHER RESTART. basically everytime i reboot to update stuff or turn off the computer, i have to restart it again right away for the mouse to function. seems a very weird problem but its consistant. always works every 2nd restart / reboot.
    Thank you for reading. i hope some people can lend a hand to fixing these problems as this is my first computer build and i am now stumpd.
    AMD Athlon 64 3200+ (754)
    MSI K8neo Platinum (754)
    Muskin 512mb pc3200 basic (1stick in dimm1)
    NEC 16x dvd +-RW
    Seagate 8mb 7200rpm 120gb (windows xp reads it as 114gb ??)
    nvidia 6600GT 128mb AGP8x
    Aspire 500w PSU (12v@34A)
    Windows XP pro w/ SP2
    thanks again folks for the help

    thanks for the help folks, back to give the polite update and say my thank you's!
    Problem of quicklauch double opening programs - FIXED
    i don't know why this was going on, but i deleted all the shortcuts in there, and redid them..and have had no problems since last night.
    Problem of laggy as hell internet, 3min opening a page - FIXED
    it was my internet service provider afterall.. when i called the first time they told me there was no problems in the area, everything was fine. when i called them later in the day they said they was having problems..  as of last night late everythign was running fast as can be with no dealy in opening pages.
    Problem of mouse only functioning every 2nd boot (every other time).. - HELP
    i have not been able to fix the problem of mouse functioning. it still only works every other boot. i recheckd my drivers for bios and they are up to date with the webpage version. keyboard in USB connection works perfectly, but the ps/2 mouse is screwy.
    so, any more ideas besides checking for updated bios drivers as to fix my no functioning 1/2 the time mouse?
    thanks again for the people that responded trying to help. i leared from it and appreciate your time you spent considering my problem.
    ~K

  • Anyone smart enough?

    My program does not have any errors until compiling where it states:
    java.lang.NullPointerException
         at project2.Collection.getNum(OrderProcessing.java:171)
         at project2.OrderProcessing.main(OrderProcessing.java:240)
    so basically it doesn't like my print statement:
    System.out.println("Student Num: "+ access2.getNum(counter));
    It also points to my collection class (access2 is collection class) to the getNum method. Does anyone know what I'm doing wrong? Here's the full code:
    abstract class Student {
    protected double Id;
    protected String Name;
    protected int grade1, grade2, grade3;
    public Student(double i, String n, int g1, int g2, int g3) {
    Id = i;
    Name = new String(n);
    grade1 = g1;
    grade2 = g2;
    grade3 = g3;
    public abstract String calcGrade(double avg);
    public abstract double getNum();
    public abstract String getName();
    public abstract int getG1();
    public abstract int getG2();
    public abstract int getG3();
    class UnderGrad extends Student {
    public UnderGrad(double i, String n, int g1, int g2, int g3) {
    super(i, n, g1, g2, g3);
    public String calcGrade(double avg) {
    if (avg >= 90.00)
    return "A";
    else if (avg >= 80.00)
    return "B";
    else if (avg >= 70.00)
    return "C";
    else
    return "F";
    public double getNum()
    { return Id; }
    public String getName()
    { return Name; }
    public int getG1()
    { return grade1; }
    public int getG2()
    { return grade2; }
    public int getG3()
    { return grade3; }
    class Grad extends Student {
    public Grad(double i, String n, int g1, int g2, int g3) {
    super(i, n, g1, g2, g3);
    public String calcGrade(double avg) {
    if (avg >= 90.00)
    return "A";
    else if (avg >= 80.00)
    return "B";
    else
    return "F";
    public double getNum()
    { return Id; }
    public String getName()
    { return Name; }
    public int getG1()
    { return grade1; }
    public int getG2()
    { return grade2; }
    public int getG3()
    { return grade3; }
    class Audit extends Student {
    public Audit(double i, String n, int g1, int g2, int g3) {
    super(i, n, g1, g2, g3);
    public String calcGrade(double avg) {
    if (avg >= 50.00)
    return "U";
    else
    return "F";
    public double getNum()
    { return Id; }
    public String getName()
    { return Name; }
    public int getG1()
    { return grade1; }
    public int getG2()
    { return grade2; }
    public int getG3()
    { return grade3; }
    class Collection {
    protected Student myArray[];
    private int num = 0;
    private int g1, g2, g3;
    protected String studentType;
    private double avg;
    public Collection()
    myArray = new Student[40];
    void addCase(int studentType, double i, String n, int g1, int g2, int g3) {
    switch (studentType)
    case 0:
    myArray[num] = new UnderGrad(i, n, g1, g2, g3);
    num++;
    break;
    case 1:
    myArray[num] = new Grad(i, n, g1, g2, g3);
    num++;
    break;
    case 2:
    myArray[num] = new Audit(i, n, g1, g2, g3);
    num++;
    break;
    case 3:
    // end of file
    break;
    default:
    System.err.println("Letters from file have to be U, G, A, E");
    double getNum(int num)
    return myArray[num].getNum();
    String getName(int num)
    return myArray[num].getName();
    double getAvg(int num)
    avg = 0;
    g1= myArray[num].getG1();
    g2= myArray[num].getG2();
    g3= myArray[num].getG3();
    avg = (g1 + g2 + g3)/3;
    return avg;
    public class OrderProcessing
    public static BufferedReader inFile;
    public static StringTokenizer sTokenizer;
    public static void main(String[] args) throws IOException
    int record = 1;
    Student access1[] = new Student[3];
    Collection access2;
    access2 = new Collection();
    DecimalFormat percent = new DecimalFormat ("%");
    String inputString, n, sT;
    int value, g1, g2, g3, counter, studentType;
    double avg, i;
    inFile = new BufferedReader(new FileReader("C:/grades.txt"));
    inputString = inFile.readLine();
    while(inputString != "E") {
    for(counter = 0; counter <=4; counter++) {
    sTokenizer = new StringTokenizer (inputString,",");
    sT = sTokenizer.nextToken();
    i = Double.parseDouble(sTokenizer.nextToken());
    n = sTokenizer.nextToken();
    g1 = Integer.parseInt(sTokenizer.nextToken());
    g2 = Integer.parseInt(sTokenizer.nextToken());
    g3 = Integer.parseInt(sTokenizer.nextToken());
    if (sT == "U")
    studentType = 0;
    access1[0] = new UnderGrad(i, n, g1, g2, g3);
    else if (sT == "G")
    studentType = 1;
    access1[1] = new Grad(i, n, g1, g2, g3);
    else if (sT == "A")
    studentType = 2;
    access1[2] = new Audit(i, n, g1, g2, g3);
    else
    studentType = 3;
    access2.addCase(studentType, i, n, g1, g2, g3);
    System.out.println("Category:");
    System.out.println("Student Num: "+ access2.getNum(counter));
    System.out.println("Student Name: "+ access2.getName(counter));
    System.out.println("Course Average: "+ percent.format(access2.getAvg(counter)));
    System.out.println("Passed Course: ");//+ access1.getNetAmt());
    System.out.println("--------------------------------");
    avg = access2.getAvg(counter);
    record++;
    inputString = inFile.readLine();
    inFile.close();
    }

    >
    My program does not have any errors untilcompiling
    Nobody's program has any errors prior tocompiling.
    I disagree. It can have design problems.And it can have all sorts of other problems too,
    including errors. (Let's skip any semantic arguments
    about whether a design problem is strictly speaking an
    "error".) You just don't know about the errors yet.
    I was making a joke, ...I understood that. But since others do read these threads I wanted to make it clear that syntactic errors are not the only source of problems with code.

  • Why isn't my mac smart enough not to turn itself off while downloading from the app store?

    it's plugged in and everything.

    Is it turning itself off or going to sleep? If it is turning itself off, you may have a shutdown time in System Preferences/Energy Saver that is over riding and shutting it down.
    In my personal experience, there are some activities that don't seem to register enough to keep the computer from sleeping/shutting down, so I set sleep to never until I'm done.

  • Firefox repeatedly has no bookmarks, no history and will not let me add bookmarks. I have fixed this several times (deleting some sqlite file), but the problem recurs. It's enough to make me give up on firefox. Using iMac with OSX.

    This problem happens upon upgrades, but may have happened between upgrades as well (happened so much I've generally given up on using bookmarks or history with firefox).
    Thanks!

    When you don't have enough storage to perform an operation, then you don't have enough storage.  have you got the 16GB iphone?

  • HT1665 I just purchassed a Lightning adapter for my iPhone 5.  My car came with the normal iphone 4 connector.  I have a protective cover on my phone but now the connector will not work as the lightning connecting tong is not long enough to make contact.

    Lightning adapter will not work with iPhone 5 protective cover

    Your case designer should have done their homework .
    They would have full details of the iPhone and its accessories
    assuming they are a developer status

  • I bought a iPhone on Craigslist and come to find out its a in store demo :( is there anything I can do with it? I don't want to go through the whole calling police and such, but if I have to I will. Luckily I was smart enough to get the sellers license.

    I don't really want to call police, even though I got license plate of the seller. Especially if I'm wrong, I'd feel bad. Can you buy a demo? What can I do with it? Can I call my phone company or go somewhere to verify it? I should've asked all this before I spent $400 on it :(

    Contact Apple and ask them...
    Caveat Emptor

  • Safari isn't evem smart enough to access this forum properly!

    Is anyone else as fed up as I am with Safari failing to work with certain sites? I have to always keep Firefox at the ready for those cases where Safari fails. To add insult to injury, _Safari even fails to log me onto this forum!!!!_ When I try to log in, it reports 'An Internal Server Error Has Occurred." So here I am using Firefox again, no problem. Anyone any idea of fixes or workarounds for Safari quirkiness?

    HI,
    For logging in to the forums. From the Safari Menu Bar click Safari/Preferences then select: Show Cookies. Delete all Apple related cookies. Relaunch Safari and try logging in again.
    If you still have problems, open Keychain Access (Applications/Utilities) Select Passwords on the left.
    Delete your your AppleID keychain.
    Relaunch Safari. Login here as usual with your user name and password. You will be prompted to save that data to a new keychain, click: Yes
    Do not try a clean install yet. Try trouble shooting first.
    Carolyn

  • Anyone smart enough out there to answer this?

    Hey I can NEVER get through to the right dept in Apple to get an answer to my question, so hopefully someone can help, here goes. OK I have DSL at my house, I just have one modem at the house for my PC laptop, just standard, not wireless. The problem is I want to get my G4 powerbook online as well. I'm thinking of getting a Airport Extreme unit. What I want to know is if I get it can I have my PC laptop hooked up online through it and have my G4 powerbook hooked up online at the same time without buying any additional equipment? And if I need any extra equipment what would I need? Any help would be GREATYLY appreciated.

    No extra equipment should be needed, assuming the modem uses Ethernet. Just plug the modem into the Extreme's WAN port and the PC laptop into one of the LAN ports. You would even have the option of plugging your PowerBook into another LAN port if you need full 100 Mbit speeds for some reason (e.g transferring very large files between laptops).

  • Explorer shows icons/logos for descktop shortcuts to websites. All Firefox shortcuts show the Firefox logo. How do I correct this. Enough to make me return to explorer.

    Simple question. How do I change the setting on Firefox so when I drag a web address to my desktop, it shows the site's logo/icon? And how do I change all the existing shortcuts to reflect the logo/icons for those websites?
    Thanks!

    You can drag the favicon on the left end of the location bar onto the desktop to create a shortcut.<br />
    If you create an internet shortcut that way then that shortcut gets the icon of the default browser.<br />
    If you want a different icon (favicon) then you have to assign that icon yourself to the desktop shortcut (right-click: Properties).<br />
    You can usually get the favicon if you append "favicon.ico" to the main domain of a website (e.g. http://www.mozilla.com/favicon.ico ) to display the favicon in a tab and save that image to a folder or see if you can find it in "Tools > Page Info > Media".<br />

  • G3 iMacs; will Firefox 4 not release for OS X 10.4.11, or am I not trying hard enough to make current OS X run on deprecated Apple hardware?

    Since it's lovely for audio, and was fine with w3m in its time, I still have an iMac DV SE 400MHz (G3, tops out at 1GiB DDR, OS X 10.4.11) around. (Though I ''am'' tempted to fit in a Xilinx with CPU cores, cache, DDR3, USB3, NV14, HDMI, etc.)
    Ff4 takes OS 10.5.x and up.
    Clearly canvas and many HTML5, WebGL, etc. components can not run, per se, on old hardware.
    Should I therefore seek a refit of OS 10.n (n >= 5) to tolerate the hardware, or a revision/spin/fork/??? of Firefox? (Using appropriate dev hardware, unless cranking out a rocking OLPC-ish dev/emu tool is a desirable side-effect.) Cues to appropriate search keys for bathtub-curve-filling optimizations are appreciated.

    Mozilla are not making a version for PPC Macs, the minimum system requirements are OS X 10.5 and an Intel Mac. There is a third-party version of Firefox 4 for OS X 10.4 and PPC Mac, for details see http://www.floodgap.com/software/tenfourfox

  • Simply not smart enough to write this

    Hey All,
    You know when you want to do something, and you realize you simply do not have the brain power to pull it off? I am there, but I think maybe a little bit of help might get me over the really hard part.
    GOAL: Pull scheme data from our Salesforce.com instance (a massive CRM platform, basically just a fancy relational database system). Find all related objects, parse the data, and feed it into the JIT javascript visulization framework (http://thejit.org/). I want to use CF to pull the data, parse it, and feed it to JIT, however the format JIT requires is hard for me to write programatically.
    Here is an example of the what the final result will look like, instead of numbers each node would be an object name.
    http://thejit.org/Jit/Examples/Spacetree/example2.html
    Here is the data that powers that thing.
    http://pastebin.com/n2Sv64M6
    It's just JSON, but the nesting get's really brutal.
    So far I have the code in place to get the data I want, and break it into chunks, but I can't think of an eloquent way to create the required JSON. Here is what I have so far.
    http://portal.fpitesters.com/sfmap.cfm
    Here is the code for that tool.
    <cfsetting requesttimeout="5000">
    <cfif isdefined("form.Flush")>
         <cfcache action="flush" >
    </cfif>
    <form name="FlushForm" method="post">
         <input name="Flush" value="Recalculate Relationships (Will Take a Long Time)" type="submit" />
    </form>
    <cfcache action="optimal">
    <cfoutput>
         These results where cached at #TimeFormat(Now())#.
         <cfset GlobalObject = server.OSF.describeGlobal()>
         <cfloop from="1" to="#arraylen(GlobalObject.Results)#" index="ObjectIndex">
              <cfset Object = server.OSF.describeObject(GlobalObject.Results[ObjectIndex])>
              <cfset ObjectInfo = Object.RawSoap>
              <cfset returnStruct = structnew()>
              <cfset RelationShips[GlobalObject.Results[ObjectIndex]] = arraynew(1)>
              <cfset numRefFields = 0>
              <cfloop
                   From="1"
                   To="#arraylen(ObjectInfo.Envelope.Body.describeSobjectResponse.result.fields)#"
                   Index="i">
                   <cfset ObjectFieldReference = ObjectInfo.Envelope.Body.describeSobjectResponse.result.fields[i]>
                   <cfif ObjectFieldReference.type.xmltext eq "reference">
                        <cfset numRefFields = numRefFields + 1>
                        <cfset RelationShips[GlobalObject.Results[ObjectIndex]][numRefFields] = structnew()>
                        <cfset RelationShips[GlobalObject.Results[ObjectIndex]][numRefFields].name=ObjectFieldReference.name.xmltext>
                        <cfset RelationShips[GlobalObject.Results[ObjectIndex]][numRefFields].label=ObjectFieldReference.label.xmltext>
                        <cfset RelationShips[GlobalObject.Results[ObjectIndex]][numRefFields].refto=ObjectFieldReference.referenceto.xmltext>
                   </cfif>
              </cfloop>
              <a name="#GlobalObject.Results[ObjectIndex]#">RelationsShips in #GlobalObject.Results[ObjectIndex]#</a>
              <ol>
                   <cfloop from="1" to="#arraylen(RelationShips[GlobalObject.Results[ObjectIndex]])#" index="relationshipFieldIndex">
                        <li>  #RelationShips[GlobalObject.Results[ObjectIndex]][relationshipFieldIndex].name# to <a href="###RelationShips[GlobalObject.Results[ObjectIndex]][relationshipFieldIndex].refto#">#RelationShips[GlobalObject.Results[ObjectIndex]][relationshipFieldIndex].refto#</a></li>
                   </cfloop>
              </ol>
         </cfloop>
    </cfoutput>
    So instead of creating that simple dumb list, I ned to create the JSON, but how? I just can't wrap my brain around it for some reason. Any help, sample code, anything would be of use. Thank you.

    Ah, again sorry, we seem to be writting our posts at the same time.
    http://pastebin.com/0XPzWDHr
    Try that link. Thats what my formatted JSON ends up looking like.
    There, sorry, just didn't want to be making huge posts.
    My JSON
            "ID": "Account",
            "DATA": "{}",
            "CHILDREN": [
                    "ID": "Account",
                    "DATA": "Master Record ID",
                    "CHILDREN": "[]",
                    "NAME": "Account"
                    "ID": "RecordType",
                    "DATA": "Record Type ID",
                    "CHILDREN": "[]",
                    "NAME": "RecordType"
                    "ID": "Account",
                    "DATA": "Parent Account ID",
                    "CHILDREN": "[]",
                    "NAME": "Account"
                    "ID": "User",
                    "DATA": "Owner ID",
                    "CHILDREN": "[]",
                    "NAME": "User"
                    "ID": "User",
                    "DATA": "Created By ID",
                    "CHILDREN": "[]",
                    "NAME": "User"
                    "ID": "User",
                    "DATA": "Last Modified By ID",
                    "CHILDREN": "[]",
                    "NAME": "User"
                    "ID": "Contact",
                    "DATA": "Billing Contact",
                    "CHILDREN": "[]",
                    "NAME": "Contact"
                    "ID": "Contact",
                    "DATA": "Primary Org Contact",
                    "CHILDREN": "[]",
                    "NAME": "Contact"
                    "ID": "Contact",
                    "DATA": "Primary Household Contact",
                    "CHILDREN": "[]",
                    "NAME": "Contact"
            "NAME": "Account"
            "ID": "AccountContactRole",
            "DATA": "{}",
            "CHILDREN": [
                    "ID": "Account",
                    "DATA": "Account ID",
                    "CHILDREN": "[]",
                    "NAME": "Account"
                    "ID": "Contact",
                    "DATA": "Contact ID",
                    "CHILDREN": "[]",
                    "NAME": "Contact"
                    "ID": "User",
                    "DATA": "Created By ID",
                    "CHILDREN": "[]",
                    "NAME": "User"
                    "ID": "User",
                    "DATA": "Last Modified By ID",
                    "CHILDREN": "[]",
                    "NAME": "User"
            "NAME": "AccountContactRole"
            "ID": "AccountHistory",
            "DATA": "{}",
            "CHILDREN": [
                    "ID": "Account",
                    "DATA": "Account ID",
                    "CHILDREN": "[]",
                    "NAME": "Account"
                    "ID": "SelfServiceUser",
                    "DATA": "Created By ID",
                    "CHILDREN": "[]",
                    "NAME": "SelfServiceUser"
            "NAME": "AccountHistory"
            "ID": "AccountPartner",
            "DATA": "{}",
            "CHILDREN": [
                    "ID": "Account",
                    "DATA": "Account ID",
                    "CHILDREN": "[]",
                    "NAME": "Account"
                    "ID": "Account",
                    "DATA": "Account ID",
                    "CHILDREN": "[]",
                    "NAME": "Account"
                    "ID": "Opportunity",
                    "DATA": "Bid ID",
                    "CHILDREN": "[]",
                    "NAME": "Opportunity"
                    "ID": "User",
                    "DATA": "Created By ID",
                    "CHILDREN": "[]",
                    "NAME": "User"
                    "ID": "User",
                    "DATA": "Last Modified By ID",
                    "CHILDREN": "[]",
                    "NAME": "User"
            "NAME": "AccountPartner"
            "ID": "AccountShare",
            "DATA": "{}",
            "CHILDREN": [
                    "ID": "Account",
                    "DATA": "Account ID",
                    "CHILDREN": "[]",
                    "NAME": "Account"
                    "ID": "Group",
                    "DATA": "User\/Group ID",
                    "CHILDREN": "[]",
                    "NAME": "Group"
                    "ID": "User",
                    "DATA": "Last Modified By ID",
                    "CHILDREN": "[]",
                    "NAME": "User"
            "NAME": "AccountShare"
            "ID": "ActivityHistory",
            "DATA": "{}",
            "CHILDREN": [
                    "ID": "Account",
                    "DATA": "Account ID",
                    "CHILDREN": "[]",
                    "NAME": "Account"
                    "ID": "Contact",
                    "DATA": "Contact\/Lead ID",
                    "CHILDREN": "[]",
                    "NAME": "Contact"
                    "ID": "Admin_Projects__c",
                    "DATA": "Bid\/Account ID",
                    "CHILDREN": "[]",
                    "NAME": "Admin_Projects__c"
                    "ID": "User",
                    "DATA": "Assigned To ID",
                    "CHILDREN": "[]",
                    "NAME": "User"
                    "ID": "User",
                    "DATA": "Created By ID",
                    "CHILDREN": "[]",
                    "NAME": "User"
                    "ID": "User",
                    "DATA": "Last Modified By ID",
                    "CHILDREN": "[]",
                    "NAME": "User"
            "NAME": "ActivityHistory"
            "ID": "AdditionalNumber",
            "DATA": "{}",
            "CHILDREN": [
                    "ID": "CallCenter",
                    "DATA": "Call Center ID",
                    "CHILDREN": "[]",
                    "NAME": "CallCenter"
                    "ID": "User",
                    "DATA": "Created By ID",
                    "CHILDREN": "[]",
                    "NAME": "User"
                    "ID": "User",
                    "DATA": "Last Modified By ID",
                    "CHILDREN": "[]",
                    "NAME": "User"
            "NAME": "AdditionalNumber"
            "ID": "Admin_Projects__c",
            "DATA": "{}",
            "CHILDREN": [
                    "ID": "Group",
                    "DATA": "Owner ID",
                    "CHILDREN": "[]",
                    "NAME": "Group"
                    "ID": "User",
                    "DATA": "Created By ID",
                    "CHILDREN": "[]",
                    "NAME": "User"
                    "ID": "User",
                    "DATA": "Last Modified By ID",
                    "CHILDREN": "[]",
                    "NAME": "User"
                    "ID": "User",
                    "DATA": "Project Lead",
                    "CHILDREN": "[]",
                    "NAME": "User"
            "NAME": "Admin_Projects__c"
            "ID": "ApexClass",
            "DATA": "{}",
            "CHILDREN": [
                    "ID": "User",
                    "DATA": "Created By ID",
                    "CHILDREN": "[]",
                    "NAME": "User"
                    "ID": "User",
                    "DATA": "Last Modified By ID",
                    "CHILDREN": "[]",
                    "NAME": "User"
            "NAME": "ApexClass"
            "ID": "ApexTrigger",
            "DATA": "{}",
            "CHILDREN": [
                    "ID": "User",
                    "DATA": "Created By ID",
                    "CHILDREN": "[]",
                    "NAME": "User"
                    "ID": "User",
                    "DATA": "Last Modified By ID",
                    "CHILDREN": "[]",
                    "NAME": "User"
            "NAME": "ApexTrigger"
    Their JSON (a small sample anyway)
        id: \"node02\",
        name: \"0.2\",
        data: {
        children: [
                id: \"node13\",
                name: \"1.3\",
                data: {
                children: [
                        id: \"node24\",
                        name: \"2.4\",
                        data: {
                        children: [
                                id: \"node35\",
                                name: \"3.5\",
                                data: {
                                children: [
                                        id: \"node46\",
                                        name: \"4.6\",
                                        data: {
                                        children: [
                                id: \"node37\",
                                name: \"3.7\",
                                data: {
                                children: [
                                        id: \"node48\",
                                        name: \"4.8\",
                                        data: {
                                        children: [
                                        id: \"node49\",
                                        name: \"4.9\",
                                        data: {
                                        children: [
                                        id: \"node410\",
                                        name: \"4.10\",
                                        data: {
                                        children: [
                                        id: \"node411\",
                                        name: \"4.11\",
                                        data: {
                                        children: [
                                id: \"node312\",
                                name: \"3.12\",
                                data: {
                                children: [
                                        id: \"node413\",
                                        name: \"4.13\",
                                        data: {
                                        children: [
                                id: \"node314\",
                                name: \"3.14\",
                                data: {
                                children: [
                                        id: \"node415\",
                                        name: \"4.15\",
                                        data: {
                                        children: [
                                        id: \"node416\",
                                        name: \"4.16\",
                                        data: {
                                        children: [
                                        id: \"node417\",
                                        name: \"4.17\",
                                        data: {
                                        children: [
                                        id: \"node418\",
                                        name: \"4.18\",
                                        data: {
                                        children: [
                                id: \"node319\",
                                name: \"3.19\",
                                data: {
                                children: [
                                        id: \"node420\",
                                        name: \"4.20\",
                                        data: {
                                        children: [
                                        id: \"node421\",
                                        name: \"4.21\",
                                        data: {
                                        children: [
                        id: \"node222\",
                        name: \"2.22\",
                        data: {
                        children: [
                                id: \"node323\",
                                name: \"3.23\",
                                data: {
                                children: [
                                        id: \"node424\",
                                        name: \"4.24\",
                                        data: {
                                        children: [
                id: \"node125\",
                name: \"1.25\",
                data: {
                children: [
                        id: \"node226\",
                        name: \"2.26\",
                        data: {
                        children: [
                                id: \"node327\",
                                name: \"3.27\",
                                data: {
                                children: [
                                        id: \"node428\",
                                        name: \"4.28\",
                                        data: {
                                        children: [
                                        id: \"node429\",
                                        name: \"4.29\",
                                        data: {
                                        children: [
                                id: \"node330\",
                                name: \"3.30\",
                                data: {
                                children: [
                                        id: \"node431\",
                                        name: \"4.31\",
                                        data: {
                                        children: [
                                id: \"node332\",
                                name: \"3.32\",
                                data: {
                                children: [
                                        id: \"node433\",
                                        name: \"4.33\",
                                        data: {
                                        children: [
                                        id: \"node434\",
                                        name: \"4.34\",
                                        data: {
                                        children: [
                                        id: \"node435\",
                                        name: \"4.35\",
                                        data: {
                                        children: [
                                        id: \"node436\",
                                        name: \"4.36\",
                                        data: {
                                        children: [
                        id: \"node237\",
                        name: \"2.37\",
                        data: {
                        children: [
                                id: \"node338\",
                                name: \"3.38\",
                                data: {
                                children: [
                                        id: \"node439\",
                                        name: \"4.39\",
                                        data: {
                                        children: [
                                        id: \"node440\",
                                        name: \"4.40\",
                                        data: {
                                        children: [
                                        id: \"node441\",
                                        name: \"4.41\",
                                        data: {
                                        children: [
                                id: \"node342\",
                                name: \"3.42\",
                                data: {
                                children: [
                                        id: \"node443\",
                                        name: \"4.43\",
                                        data: {
                                        children: [
                                id: \"node344\",
                                name: \"3.44\",
                                data: {
                                children: [
                                        id: \"node445\",
                                        name: \"4.45\",
                                        data: {
                                        children: [
                                        id: \"node446\",
                                        name: \"4.46\",
                                        data: {
                                        children: [
                                        id: \"node447\",
                                        name: \"4.47\",
                                        data: {
                                        children: [
                                id: \"node348\",
                                name: \"3.48\",
                                data: {
                                children: [
                                        id: \"node449\",
                                        name: \"4.49\",
                                        data: {
                                        children: [
                                        id: \"node450\",
                                        name: \"4.50\",
                                        data: {
                                        children: [
                                        id: \"node451\",
                                        name: \"4.51\",
                                        data: {
                                        children: [
                                        id: \"node452\",
                                        name: \"4.52\",
                                        data: {
                                        children: [
                                        id: \"node453\",
                                        name: \"4.53\",
                                        data: {
                                        children: [
                                id: \"node354\",
                                name: \"3.54\",
                                data: {
                                children: [
                                        id: \"node455\",
                                        name: \"4.55\",
                                        data: {
                                        children: [
                                        id: \"node456\",
                                        name: \"4.56\",
                                        data: {
                                        children: [
                                        id: \"node457\",
                                        name: \"4.57\",
                                        data: {
                                        children: [
                        id: \"node258\",
                        name: \"2.58\",
                        data: {
                        children: [
                                id: \"node359\",
                                name: \"3.59\",
                                data: {
                                children: [
                                        id: \"node460\",
                                        name: \"4.60\",
                                        data: {
                                        children: [
                                        id: \"node461\",
                                        name: \"4.61\",
                                        data: {
                                        children: [
                                        id: \"node462\",
                                        name: \"4.62\",
                                        data: {
                                        children: [
                                        id: \"node463\",
                                        name: \"4.63\",
                                        data: {
                                        children: [
                                        id: \"node464\",
                                        name: \"4.64\",
                                        data: {
                                        children: [
                id: \"node165\",
                name: \"1.65\",
                data: {
                children: [
                        id: \"node266\",
                        name: \"2.66\",
                        data: {
                        children: [

  • What is the option for Iphoto. Iphoto is enough to make me switch back to Microsoft after 4 years

    Since OSX Maverick APPLE went to ****.

    You might provide a few more details, or don't bother us and go back to Windows.

Maybe you are looking for

  • Safari quitting due to Microsoft Office Genuine plug in?

    Hi there, I've always been as safe as I know how to be with my mac. In case it is relevant, I run sophos security through my school and don't have any pirated software or files. That being said, Safari has been quitting very frequently. Many programs

  • PC Suite syncs Outlook contacts but not calendar

    I just bought a new E71x (firmware 3.27).  I'm using PC suite 7.1.30.9 to sync with Outlook 2007 SP2.  I have the Sync setup configured for Calendar/To-do and Contact Items.  The sync operation correctly copies all of the contact information, but non

  • Ipad mail wont receive new mail

    I have an sbcglobal email address. Last two days my iPad wont update my received emails when i open the mail program.  i keep trying to manullly activate and download my emails and nothing happens...... My iphone on the other hand updates my emails e

  • Credit Memo To Vendor?

    Hi Experts Any suggestion for the below requirement is highly appreciated with rewards. Biz Scenario Vendor A is unable to fulfilled their contract and supply stock to us.Thus, the required stock was brought from vendor B instead. The differences in

  • F11 Functionality is not working

    Hi, I am working on 11.5.10.2 version. In the Oracle Payables Invoice screen the F11 functionality is not working For other screens like supplier entry / payment batches..etc, the F11 functionality is working. When i enter the Invoice screen, i am pr