I have the Answer on how to Change the House Icon name

You go on to
System Preferences > Acounts > Then unlock the security settings
Right Click on your Account Name
Click Advanced Options
Then simply Change the Account Name there.
Save it and you are done.
An easy way to change the name of your Main Folder - the one that looks like a House!

The problem with this, is some applications use the username to judge where they are installed.  For those, changing the account name may disable certain DRM for those applications.  This tip of yours would probably be best posted to the operating system you've tested it on forum, and not the iMac PPC forum, as that's just for one machine, and not every machine that has that operating system.

Similar Messages

  • I have problem with the security questions and i dont know the answer. How i change the questions ?

    I have problem with the security questions and i dont know the answer. How i change the questions ?

    See Here... ask to speak with the Account Security Team...
    Apple ID: Contacting Apple for help with Apple ID account security
    Or Here  >  Apple  Support  iTunes Store  Contact

  • I have a MacBook Pro, how to change the computer name in the "Find Iphone"

    I have a MacBook Pro, how to change the computer name in the "Find Iphone"?

    Thank you for help! I was inattentive reading your answer. The thing which confused me was that I noted in blue. I had to just write in a red box and close the configuration window.

  • I have tried everything! How to change the color of text based on value Acrobat 9

    How can I change the color of the text to red if the value is "Unacceptable" and leave it green for all other rating values? Where can I put it for it to work? Also, Unacceptable is set to an export value of 0.
    var n = +this.getField("NumericSummaryRating").value;
    var a = +this.getField("Rating1.0").value;
    var b = +this.getField("Rating1.1").value;
    var c = +this.getField("Rating1.2").value;
    var d = +this.getField("Rating1.3").value;
    var e = +this.getField("Rating1.4").value;
    if (n == 0) {
        event.value = "Not Rated";
    } else {
    if (a==0 || b==0 || c==0 || d==0 || e==0) {
        event.value = "Unacceptable";
    else {
        if (n>0 && n < 3.0){
            event.value = "Unacceptable";
        else if (n >= 3.0 && n < 3.6) {
            event.value = "Successful";
        else if (n >= 3.6 && n < 4.6) {
            event.value = "Excellent";
        else if (n >= 4.6) {
            event.value = "Outstanding";

    You can add this at the end of the code:
    if (event.value=="Unacceptable") event.target.textColor = color.red;
    else event.target.textColor = color.green;

  • How do I delete photo ALBUMS from my iPHONE 4? I sync via icloud and I can not see any folders selected in itunes. I searched the internet and basically there is no one who has the answer to how you delete the iphone photo library and misc albums

    how do I delete photo ALBUMS from my iPHONE 4?
    I sync via icloud and I can not see any folders selected in itunes.
    I searched the internet and basically there is no one who has the answer (so far)
    to how you delete the iphone photo library and misc albums
    I have also had every iphone and I am not stupid.
    charles altman

    Replying to my own post - heh. I downloaded iExplorer (http://www.macroplant.com/iexplorer/) which allowed me access to the files on the phone and there was the phantom movie in the DCIM folder. Deleted it, and all is well - although I still have 0.65gb of Other in iTunes.....

  • I forgot the answers to my security questions!! Is there a way to find the answers or can I change the answers?

    I want to download new songs onto my new iPhone 4S. But I can't remember my security question answers. HELP!!!!!!!!

      See Here.  Apple ID: Contacting Apple for help with Apple ID account security
    Ask to speak with the Account Security Team...
    Or Email Here  >  Apple  Support  iTunes Store  Contact

  • How to change the language of the document in Pages 5.0.1

    Does anyone have an idea about how to change the language of a document in the new version of Pages (version 5.0 or later) without having to restart the computer?

    Edit > Spelling and Grammar > Show Spelling and Grammar

  • How to change the input language ?

    Hello,
    I am writing an Add-on that needs to change the input language when the user
    clicks on the Item Code field ("5") in the "Item Master Data" form.
    I can perform the change when I am out side of the SAP application (for example if I create a Windows Form), however I cannot control the input language of the SAP itself through code.
    I even tried using Application.Sendkeys, however I was unable to send a combination of ALT+SHIFT, or at least it did not have any affect
    Here is the code on how to change the input language on a Windows Form:
    For Each Lng As system.Windows.Forms.InputLanguage In system.Windows.Forms.InputLanguage.InstalledInputLanguages
       sValue = Lng.Culture.DisplayName.ToUpper()
       If sValue.StartsWith("ENGLISH") Then
                        system.Windows.Forms.InputLanguage.CurrentInputLanguage = Lng
                        Exit For
        End If
    Next
    Any ideas ?

    I am not sure I understand the problem. Anyway in B1 you change the language by
    changing it from the Administration module. This raises a Application event that
    is sent to all the add-ons. The event is aet_LanguageChanged and you should
    then change the language handled by your add-on when you receive it.

  • How to change the width of PDF report

    When i download an interactive report to a PDF. All the columns will have the same width, how to change the width of the column?
    Thanks,
    Jen

    I don't think its possible for downloading from interactive report but let's see if anyone else has got a work around.
    The other way to have absolute control over report layout is to create reports using 'Report Query' & 'Report Layout' under 'Shared Components'.
    Regards,
    Ashish Agarwal
    http://www.dbcon.com

  • How to change the source ip address

    hi all,
    i got the problem that how to change the source ip address when i
    get a website's page!
    i mean i want to change the source ip address when i access the
    remote website, sure i know when change the source ip, i can not get
    the result correctly when changing the source ip address, but it is not
    important to get the result i just want to send out a "click" event to the website by calling a post method in the site!
    does anybody have some ideas?
    Best Regards,
    Eric Gau

    Here's some code that connects to google and does a get:
    import java.io.*;
    import java.net.*;
    public class HTTPTest {
        private Socket sock;
        private BufferedReader in;
        private BufferedWriter out;
        private boolean running = false;
        HTTPTest() {
        private void go(String site) {
            try {
                sock = new Socket(site, 80);
                in = new BufferedReader(new InputStreamReader(sock.getInputStream()));
                out = new BufferedWriter(new OutputStreamWriter(sock.getOutputStream()));
                System.out.println("Connected");
                out.write("GET / HTTP/1.1\r\n\r\n");
                out.flush();
                doRead();
            } catch (IOException e) {
                e.printStackTrace();
        private void doRead() {
            running = true;
            String line;
            System.out.println("Read started");
            while (running) {
                try {
                    line = in.readLine();
                } catch (IOException e) {
                    e.printStackTrace();
                    line = null;
                if (line == null) {
                    running = false;
                } else {
                    System.out.println(line);
            System.out.println("Socket closed");
        public static void main(String [] args) {
            String site;
            if (args.length > 0) {
                site = args[0];
            } else {
                site = "google.ca";
            new HTTPTest().go(site);
    }

  • How to change the text of a screenfield?

    Hi,
    I have a program based on pnp LDB. what is the best manier to change the text/label  of a screen field ?
    i tried with the loop at screen statement, but it doesnt work.
    some one a suggestion ?
    Thanks

    refer the following answer in the thread
    Re: how to change the stsndard selection text for a LDB..
    TABLES: pernr.
    data: i_tab type standard table of RSSELTEXTS with header line.
    initialization.
    i_tab-name = 'PNPPERNR'.
    i_tab-kind = 'S'.
    i_tab-text = 'Employee ID'.
    append i_tab.
    CALL FUNCTION 'SELECTION_TEXTS_MODIFY'
    EXPORTING
    program = 'ZESO_TEST'
    tables
    seltexts = i_tab
    EXCEPTIONS
    PROGRAM_NOT_FOUND = 1
    PROGRAM_CANNOT_BE_GENERATED = 2
    OTHERS = 3
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

  • How to change the "content created" date/time in FCPX?

    Since I've had problems importing my whole iMovie event library into FCPX I decided to run some tests with importing individual files (part of iMovie events and originally imported from camera into iMovie). Some of them for some reason got the wrong "content created" date/time in them while in iMovie they have the right date/time set. Does anybody have an idea on how to change the "content created" timestamp?

    I had a bunch of DV files that imported stamped with the file modification date and time.  I did not find a way to change it in FCPX. With FCPX not running, I used A Better Finder Attributes to modify the creation and modification dates of the files in the event folder. FCPX reconnected to them but the event still showed the old range of dates so I created a new event and moved the clips to it. Maybe ther is a beter way but that is how I did it.

  • How to change the stageVideo depth?

    hi
    i have implemented the stage video in my project. it is working perfectly, i was attached at the 0 depth. how to change the depth of the stage video. any help pls
    thanks
    ayathas

    Click here:
    So you can change here:

  • How to change the time scale on Dynamometer's profile

    I am using LabVIEW 7.0 and running the Dynamometer Kit. I have tow questions:
    1) How to change the x-increment on the time scale? Right now it is fixed at 0.25 minute per mark. Changing 'x-increment' under VI Hierarchy only changes the mark before the origin (0,0). For example, I changed the value of 'x-increment' to 0.1, I get a -0.1 on the x-axis, however, everything else remains at 0.25 increments.
    2) How to save/load the results of the profile? In other words, how would I save the data into files that I can recall later.
    Thanks

    Hi,
    To address your question, are you referring to the attached dynocode.llb files? I didn't see a waveform graph or chart in these files, but I am assuming your x-increment question is pertaining to a graph you are using. To set the marker spacing on the x-scale, right-click on the front panel where your graph is located and select Properties >> Scales. Then, there is a drop down to select the x or y-axis. Choose the appropriate one and deselect Autoscale. You can then set the offset and multiplier options. The multiplier will set the marker spacing (x-increment) on the graph. Sometimes, the waveform graph doesn't modify correctly and you might want to replace it with a new waveform graph instance. Tight-click on the graph, choose Replace and then
    navigate to the Waveform Graph.vi.
    To address your other question regarding saving/loading the profile information, I would suggest looking at the Read From Text File.vi and Write To Text File.vi example programs that are in the LabVIEW Example Finder under Help >> Fundamentals >> File Input and Output.
    Let me know if you have any further questions or if this does not resolve your issue.
    Thanks again and have a great day!
    Kileen C.
    Applications Engineer
    National Instruments
    Attachments:
    dynocode.llb ‏5997 KB

  • How to change the default workspace polling behaviour

    Here are the instructions on how to change the polling interval in workspace:
    The workspace source project is usually under (C:\Adobe\Adobe LiveCycle ES2\LiveCycle_ES_SDK\misc\Process_Management\Workspace)
    The file that needs to be modified is SessionManager.as and is under  (C:\Adobe\Adobe LiveCycle ES2\LiveCycle_ES_SDK\misc\Process_Management\Workspace\ws\Workspace\foundation\src\lc\fou ndation)
    Set the value in a javascript file and then read this from the Workspace app.  You can see an example of this in the same createChannelSet() method wrt the “enableSmallMessages” variable. To do this:
    1- Add the following lines to the workspace-config.js file right after the enableSmallMessages var definition (the js file is in the sdk under (C:\Adobe\Adobe LiveCycle ES2\LiveCycle_ES_SDK\misc\Process_Management\Workspace\ws\Workspace\ui\html-template\js) – note that my example sets it to 10 seconds:
    1- Then in the createChannelSet() method, define a new var with the same name and type=Number and default it to 3000 (to be consistent with the current behaviour):
                   var pollingInterval:Number = 3000;
    2- Then, in the existing block where ExternalInterface.available is true, add the line to read the new value from the js file like this:
                  pollingInterval = ExternalInterface.call(“pollingInterval”);
    3- Set pollingInterval on the channel with:
                 channel.pollingInterval = pollingInterval;
    4- Add this function to the workspace-config.js file
          // pollingInterval is the channelset polling interval in millisecs   
          function pollingInterval()
                return 10000;
    Compile this code and rebuild the workspace war, making sure the war contents contain the updated js file too, and then the polling interval will be read from the js file, making it much easier to change.
    Here is the doc on how to customize workspace: http://help.adobe.com/en_US/livecycle/9.0/customizeworkspaceui.pdf

    Changing the Workspace Polling intervals just got a whole lot easier.  Go to http://blogs.adobe.com/ADEP/2011/08/workspace-polling-in-adep.html for more info.

Maybe you are looking for

  • Cannot send email from icloud on web.

    I use icloud in Safari to manage my email.  Since yesterday each time I attempt to send an email, I receive the following: "Cannot send message.  This message cannot be sent at this time." I am receiving emails, just cannot send. I've tried both Safa

  • Solaris 10 express developer ed. dvd checksum error

    Hi, I downloaded the solaris 10 express developer ed. dvd. I used Sun Download manager for the download. the file e had checksum error. Hence the DVD contains checksum error. Is there any way we could correct the download without the need re-download

  • WVC210 Firmware Version 1.1.1

    I just picked up a WVC210 and went to the website thinking all the latest spftware versions would be there so I downloaded all. Wanted to flash firmware update before any configuration and picked up latest on website 1.1.0.15 (my mistake, I mistook i

  • New iPod nano? What's this?

    Hi, I just purchased a new iPod nano for the wife and when we opened up the plastic jewel case, there was a piece of white plastic which looks sorta like a stand? However, it doesn't stand up when you put your ipod into it. Does anyone know what this

  • IPhoto - Error Sharing Photo on Facebook

    Hi, Recently I have been receieving "nsurlerrordomain error -1" error while sharing photos from iPhoto (v 9.4.2) to my Facebook account. I tried removing and adding the FB account the issue persists. Kindly advice.