Loading time issue

hi,
I have an issue with loading custom compont based on title window.
Problem is creating component take too many large time.
This component based on TitleWindow.
And it included
1.HBox which contain 15 buttons(actually it is also an separate component)
2.TabNavigator which contain 9 tabs(7 of them are custom components)
I have use creation policy all for the tabnavigator,because I can't perform my logic using on demand creation policy.
Note:
If I use creation policy auto,then I can't perform my logic.
eg:cann't call reset methods of components, because sometimes,If I I didn't navigate then it has not been created and Object reference is null.then cann't help.
component is very reusable in my system.But it takes too many time to load.
What can I do? Any suggessons?

If you want to go down the creation policy route, set the creation policy to NONE, the use the initialize methods to create them when you have data.
I have a similar project (some code below). In the main <mx:Application/> block, I have a preinitialize method that gets the initial data, the one that is good for tabone then call VSMain.initialize(). This creates the viewstack but only TabOne. The others are created when they are accessed for the first time.
<mx:VBox width="990" paddingLeft="0" paddingRight="0" horizontalCenter="0" height="570" horizontalScrollPolicy="off" verticalScrollPolicy="off">
<mx:ViewStack id="VSMain" width="990" height="570" selectedIndex="0" creationPolicy="none">
     <s:NavigatorContent id="one" label="One">
          <main:TabOne/>
     </s:NavigatorContent>
     <s:NavigatorContent id="two" label="Two" creationPolicy="none">
          <main:TabTwo />
     </s:NavigatorContent>
     <s:NavigatorContent id="three" label="Three" creationPolicy="none">
          <main:TabThree/>
     </s:NavigatorContent>
</mx:ViewStack>
</mx:VBox>

Similar Messages

  • Load time issues FLEX swf vs. FLASH swf

    Hello,
    We are building FLex and Flash apps running on Flash 10.1.  In our situation, the load time for a 1080x768 swf is slower when building in Flex than in flash.  We have tried useing the preinitialize event to set at least a loading message, but the delay happens before the preinitialize event.  It seems to take 1-2 seconds to load the FLex API perhaps?  The only visula we can see is the background color of the stage.  Even with a simple nearly empty main canvas, the load is slow enough to be noticable.  More importanly it is faster when using a FLASH swf ( or pure AS3), so it must be related to the FLex aspect.  Is there anyway to cache the common classes or maybe exclude some that are not used?
    Thanks,
    Jeff Schuenke

    The main point of RSLs is to gamble on improving download time of the SWF at
    networks speeds.  The gamble is that someone has already loaded the RSL so
    it gets picked up off the browser cache at hard-drive speeds.  If it isn't
    true, you pay a higher penalty because you are loading an RSL that has code
    in it you aren't using.  That's why the total payload is more.  For the
    record, only the SWF or the SWZ gets loaded, not both.  But even then the
    total payload would be more.
    At home, my DSL/WIFI network gets me about 70KB/sec, so saving 300K would be
    a noticable savings.  If you are loading off a hard disk, 300K probably
    won't be felt.
    The startup sequence of a SWF over a network (http or https):
    -start streaming in SWF bytes
    -when the first frame is downloaded (generally about 80-100K) see how many
    bytes are left to download and if there is a lot, show a progress bar
    -load any RSLs and wait for their download and initialization
    -update the progress bar until the rest of the SWF downloads
    -after the SWF downloads:
        -initialize styles
        -initialize resources
        -prepare embedded fonts
        -setup managers for popups, tooltips, dragging if needed
        -instantiate Application
            -verify and initialize all classes needed by Application
            -dispatch Application preinitialize
            -instantiate the initial set of children for the Application
            -dispatch Application initialize
        -update progress bar to show "initializing"
        -start validation of Application and its children
        -continue to do so until all children are measured and layed out
        -dispatch Application creationComplete
        -add Application to stage (actually systemManager)
        -dispatch Application applicationComplete
    The startup sequence of a SWF on a hard drive is different.  The entire SWF
    must be sucked into memory, unzipped (SWFs are zipped by default) and only
    then do we get to the steps where we show a progress bar, check for RSLs,
    etc.
    At 3MB, there might be a noticeable hit.  You can find a big image file and
    zip it to see if it comes out to about 3MB.  Then use the file system to
    copy it and see how long that takes and then unzip it and see how long that
    takes.
    Another place that causes delay is in the validation of children.  If the
    children's size are not stable right away (because data is coming in that
    affects their size) then several validation passes might be taking place.
    A common error is to create every child in the app, even ones that aren't
    seen or needed right away.  That adds work at validation time and delays the
    startup process.
    I would recommend that you use the performance profiler in Flex Builder to
    see where all the time is being spent.
    However, 3MB is a big SWF. Use of modules to chop off stuff not needed until
    "later" is recommended and will probably be the answer.

  • Bootcamp load time issues

    Hey guys,
    I'm having a little issue after having installed bootcamp.
    In bootcamp, I am running Windows 7 Home Premium 64-bit.
    When I first hit the power button on my mac and hold option, it takes around 2 and a half minutes to load any icons! It just sits there with the mouse and nothing else!
    It's really annoying me if I quickly need to boot into windows.
    Is there any way I can speed it up at all?
    Thanks in advance,
    James

    set windows as the default
    do a chkdsk next time
    boot from Lion recovery and check the health and repair OS X - use Command-R for recovery mode
    set the startup disk to Mac.
    hold shift key to do safe boot - will rebuild caches and check disk
    restart
    and some systems do have long boot times with Windows, not all
    unplug any and all peripheral and 3rd party devices too.

  • Load time issue for the Crystal Reports

    Hello All
    My reports take painstakingly longer time to load and display due to the number of records it has to display (~10000 records)
    Currently i use the loop approach to provide the logon info for all the reports/subreports. This is the place where i presume it is taking time.
                     crTables = crReportDocument.Database.Tables
                    ' Loop through each table in the report
                    For Each crTable In crTables
                        crLogOnInfo = crTable.LogOnInfo
                        ' Set the connection information for the table in the report.
                        crLogOnInfo.ConnectionInfo.ServerName = DB_SERVER_NAME
                        crLogOnInfo.ConnectionInfo.DatabaseName = DB_NAME
                        crLogOnInfo.ConnectionInfo.UserID = DB_USER
                        crLogOnInfo.ConnectionInfo.Password = DB_PASSWORD
                        Log("set login info to main table " & crTable.Name & " location " & crTable.Location)
                        crTable.ApplyLogOnInfo(crLogOnInfo)
                    Next
    Can i use the following approach instead to provide the same functionality to avoid such nasty loops??
    crReportDocument.DataSourceConnections[0].SetConnection(DB_SERVER_NAME, DB_NAME, DB_USER, DB_PASSWORD);
    crReportDocument.Refresh();
    Thanks in advance
    Srivatsa
    Edited by: Srivatsa Haridas on Nov 10, 2008 11:02 AM

    You need the "loop part" - at least I'd be way more comfortable if you use it. From my experience, you have a more robust app when you loop through the tables.
    reason I asked about subreports; if a subreport is inthe detail section and you have a 1000 records in the detail, and the subreport runs per record, you are essentially running 1000 + 1 reports. Obviously this will take a significant amount of time. As it is even 10 to 15 subreports is quite significant as you are running the subreports plus the main report... Possibly the best way for you to compare the speed is not run the report in a CR designer.(e.g.; what I am asking is; OK, the report is slow. Compared to what?) As you are using CR 10.2, I'd recommend downloading an eval of either CR XI r2 or CR 2008 and see how the reports perform there. If the performance in the designer is slow, it will not get any faster at runtime.
    The evals can be downloaded from here:
    http://www.businessobjects.com/products/reporting/crystalreports/eval.asp
    Also will the below line work for my subreports too ?
    crReportDocument.DataSourceConnections(0).SetConnection(DB_SERVER_NAME, DB_NAME, DB_USER, DB_PASSWORD)
    - it will, as long as the subreports are using the same connection type as your main report. However I really would not get hung up on loop v.s. no loop. As a matter of fact, this subreport database logon uses loop s as well and it is the recommended way of connecting the subreports:
    'Log on subreport
    crSubreportDocument = crReportDocument.OpenSubreport("Ron")
    crConnectionInfo = New ConnectionInfo
    With crConnectionInfo
    .ServerName = "Rcon1"
    .DatabaseName = "Northwind"
    .UserID = "tech"
    .Password = "tech"
    End With
    crDatabase = crSubreportDocument.Database
    crTables = crDatabase.Tables
    For Each crTable In crTables
    crTableLogOnInfo = crTable.LogOnInfo
    crTableLogOnInfo.ConnectionInfo = crConnectionInfo
    crTable.ApplyLogOnInfo(crTableLogOnInfo)
    Next
    Ludek
    Regards

  • Load time issues.

    I have re written one of my applets to use swing. The problem is that I am now getting reports that it is taking minutes for the applet to load.
    The jar file is only 126k but it is currently self signed.
    Besides a slow internet connection anybody have any idea what could be the cause?
    Clients are running java 5 and 6. The one thing I am wondering is if it could be a virus checker causing the issue.
    Of course it works fine for me but I plan of setting up more test systems here but I was wondering if anybody might have a suggestion?

    I have re written one of my applets to use swing. The problem is that I am now getting reports that it is taking minutes for the applet to load.
    The jar file is only 126k but it is currently self signed.
    Besides a slow internet connection anybody have any idea what could be the cause?
    Clients are running java 5 and 6. The one thing I am wondering is if it could be a virus checker causing the issue.
    Of course it works fine for me but I plan of setting up more test systems here but I was wondering if anybody might have a suggestion?

  • EP Load time is too High - and Browser crashes

    Hi,
      We have customized Enterprise Portal for our Company. All are going fine, but some users who are in same network as others are facing Long load time issue. It takes lot of time to load the home page and some time it even crashes.
    Is there are other reason for such occurrences other than network error, like browser setting or any thing else. Please help me out in this.
    Best Regards,
    -Shabir Rahim.

    Shabir,
    You might want to look at these threads.
    Performance tuning problem
    How to guide for Fine tuning the performance of SAP EP
    Good Luck!
    Sandeep Tudumu

  • Loading time of Captivate movies within LMS

    Hello everyone.
    My group created Captivate training modules, published them
    as flash files with SCORM tagging, and are working with our LMS
    team to view how the modules play within the LMS. Unfortunately we
    are running into loading time issues with our movies. In my office
    I have a T1 line and I still have to wait several minutes before
    our movies begin to play.
    Once the moduleas are loaded they play fine. It's just the
    load time that I'm concerned about.
    Does anyone have any suggestions as to what my group can
    attempt to bring down these loading times? As of now all we have
    are our modules published as swf files loaded into the LMS.
    Any assistance is greatly appreciated. Thanks in
    advance.

    Captivate has a built-in limit of 60% loaded before it starts
    playing. I
    don't think that can be customized but I could certainly be
    wrong.
    So things you can do:
    1. look to see if you can adjust the amount of the file that
    can be
    downloaded before the file will play. Perhaps it's just a
    matter of not
    including a preloading image?
    2. Reduce the size of your movies so they download quicker.
    Erik
    Fatenah wrote:
    > Hello everyone.
    >
    > My group created Captivate training modules, published
    them as flash files
    > with SCORM tagging, and are working with our LMS team to
    view how the modules
    > play within the LMS. Unfortunately we are running into
    loading time issues
    > with our movies. In my office I have a T1 line and I
    still have to wait
    > several minutes before our movies begin to play.
    >
    > Once the moduleas are loaded they play fine. It's just
    the load time that I'm
    > concerned about.
    >
    > Does anyone have any suggestions as to what my group can
    attempt to bring down
    > these loading times? As of now all we have are our
    modules published as swf
    > files loaded into the LMS.
    >
    > Any assistance is greatly appreciated. Thanks in
    advance.
    >
    Erik Lord
    http://www.capemedia.net
    Adobe Community Expert - Authorware
    http://www.macromedia.com/support/forums/team_macromedia/
    http://www.awaretips.net -
    samples, tips, products, faqs, and links!
    *Search the A'ware newsgroup archives*
    http://groups.google.com/groups?q=macromedia.authorware
    *The Blankenship Caveat: Note that direct linking to http
    content
    through any Authorware icon will likely fail if a proxy
    server is present!*

  • Issue with site load time when exported as HTML. Addressed?

    Has the issue with website load time been addressed?
    I believe the site attempts to load the entire image content at the initial visit - meaning any galleries with numerous pictures are all included when first getting to the site. This is causing a HUGE increase in load time. I was told when I last brought it up that it was an apparent issue that needed to be addressed.
    Any type of resolution coming?
    Site for reference: www.dkrecollection.com

    Major updates of Muse are targeted to release roughly every quarter. The 1.0 release was in mid-May. The 2.0 release was in mid-August. A fundamental change to image loading would only appear as part of a major update due to the engineering and testing efforts required.
    As provided in your previous thread http://forums.adobe.com/message/4659347#4659347 the only workaround until then is to reduce the number of images in the slideshow.

  • Issues with site load time. (bg images)

    Hey, guys.
    Having an issue with a site uploaded with MUSE. None of the images are overly large, but the load time is 5 to 6 seconds where it should be instant.
    Looking at it, it appears as though all of the images are attempting to load simotaneously in one large chunk rather than in a line.  Is there anyway to remedy this?

    This isn't related to background images. It's how Muse is handling the loading of the ~100 images in the slideshow. Thanks for pointing this out. Until we have altered the loading method for these images, the only workaround I have is to decrease the number of images in the slideshow.

  • Adobe Edge Animate JavaScript Coding issues/page load time speeds

    To let you have an idea of my skill set I have a background in animation and design and have been taking classes in web development. My question is about how to create an interactive website that loads various animation depending on the user's choice and current place within the Adobe Edge Animate timeline. The website I developed for a client @ www.goshowpro.com works but loads slower than I want and doesn't format properly on my client's Macbook (I believe he needs to update his browsers but that is something else.)
    So as you can see from looking at my website I used a multitude of HTML files to create my vision of an interactive website based off of a theatrical stage. I know this is not an ideal method. I would prefer to have it all on one page but I am having trouble with my javascript coding. I was wondering if there would be away to expedite my current site's load time and if not if you could look at my NEW coding. (This IS NOT the current coding on the site.)
    if = "hstop" "chomstop" "shomstop" "phomstop"
    {sym.play("hporstart")};
    else = "hconstop" "sconstop" "pconstop"
    {sym.play("cporstart")};
    else = "hserstop" "cserstop" "pserstop"
    {sym.play("sporstart")};
    It looks crappy but I'm trying to learn so don't laugh too much. Thanks again.
    Michael

    Hi, Marlene-
    We currently bundle jQuery 1.7.1 with the Animate runtime.  In order to call fadeOut() on the element newSquare, you would do the following:
    sym.$("newSquare").fadeOut();
    OR
    sym.getSymbol("newSquare").getSymbolElement().fadeOut();
    Hope that helps!
    -Elaine

  • Is there any issue in scheduling GATHER_STATS_JOB during peak load times?

    Hi All,
    The default DBMS_STATS job(GATHER_STATS_JOB) is running during our peak load time.
    Will it have any performance impact on normal database transactions?
    Is it better to reschedule that window?
    What all problems can we expect during the job's run(Object locks, High I/O due to table/index reads, High CPU usage etc)?
    Please help me in getting the answer. I could not find relevant information from net.
    Thanks and regards
    Satish

    Satish V C wrote:
    I am struggling to find an appropriate period to run the job as this database is active 24*7 globally.
    I want to know how the activity should be measured. Should it be based on no of sessions or number of transactions or number of cursors or net I/O or a combination of all above?Satish,
    if you have the AWR license you could check the AWR reports to find out when your database is most idle. In the 10g time model the most significant aspect is the DB time spent, so the period where the DB time is least might be a good candidate.
    You can also check the number of logical/physical I/Os performed per second, the number of sessions, and other ratios that are shown in the top part of the AWR report (e.g. section "Load Profile").
    Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/

  • Improving load times in Linux LabVIEW executable

    I'm looking for (simple) ways to improve the loading times in a Linux LabVIEW executable. We're using a low performance, low cost CPU board, and loading times are terrible. The CPU is capable of doing everything after the application is loaded, but takes forever to get there.
    One of the problems is the size of the executable, that grows everytime you just look at it. Are there ways to create smaller executables? It runs from a Compact Flash card, which is ofcourse much slower than hard disk.
    Another problem is a dynamic vi, that is started for every TCP connection that connects to the application. It takes a long time to load, and connecting too fast can even effectively hang up the system. Starting a handler task takes about half a second, up to a few seconds for the first task.
    We're using the LabVIEW 7.1 runtime, system is a 300 MHz cyrix SBC, running from a Compact Flash.

    Dennisvr wrote:
    I'm looking for
    (simple) ways to improve the loading times in a Linux LabVIEW
    executable. We're using a low performance, low cost CPU board, and
    loading times are terrible. The CPU is capable of doing everything
    after the application is loaded, but takes forever to get there.   One
    of the problems is the size of the executable, that grows everytime you
    just look at it. Are there ways to create smaller executables? It runs
    from a Compact Flash card, which is ofcourse much slower than hard disk.   Another
    problem is a dynamic vi, that is started for every TCP connection that
    connects to the application. It takes a long time to load, and
    connecting too fast can even effectively hang up the system. Starting a
    handler task takes about half a second, up to a few seconds for the
    first task.   We're using the LabVIEW 7.1 runtime, system is a 300 MHz cyrix SBC, running from a Compact Flash.
    I'm
    not sure about the first part of your question. LabVIEW is highly
    binary and does a lot of memory allocations before even one VI is ready
    to be started. So maybe the memory manager is a problem. Another issue
    is that the Macintosh like resource file format that is used by LabVIEW to store its VIs etc. results in
    lots and lots of individual disk accesses with a rther random like
    character inside a single file. So if you can configure the read
    caching of your disk to use more memory this may significantly increase
    the speed of loading LabVIEW VIs or applications.
    And finally spawning VIs through VI server is a rather costly operation
    especially on low resoruce systems. A VI is more like an executable in
    many ways as far as resource consumption is concerned rather than a
    thread. A much better way would be to avoid spawning subVIs altogether
    and implement a queued TCP/IP server similar to the Date Time Server
    example. It is a little extra work to work with this shift register
    architecture but it will not have the issues of long load times for
    every new TCP/IP connection coming in.
    Rolf Kalbermatter
    Message Edited by rolfk on 03-07-2006 06:33 PM
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • ICloud load times are extremely slow

    Since moving to iCloud my web interface is nearly unusable with iCloud.  I also had slow load times with MobileMe to the point I was nearly going to quit using it.
    On the iCloud system at times I'll load up the page and the mail will just fail to load. Other times I'll try to search for mail and it will hang up, I'll come back 10-15 minutes later and it will have either quit searching, or still have not found anything.
    I'm using the most recent version of Firefox and Windows 7 64 bit.

    I'm having the same issues, no matter if I use OS X or Windows to check my mail.  Searching is virtually useless and keeps me hanging forever.  I can't even search for items on my phone any longer - it NEVER seems to find anything that I'm looking for if it's not in my immediate Inbox.
    C'mon Apple - this is something Google has been doing for years with Gmail.  You've got to fix these nagging issues.

  • Slow load times for itunes u

    We have noticed that lately iTunes U for UW-Whitewater (uww.edu) has been extremely slow, and sometimes even timing out.  We have been trying this from various different locations and computers.  It appears to be something on the apple side.  Has anyone else seen this?
    Apple Engineers: Any updates as to what might be going on?

    Greetings Guys;
    We had the same issue yesterday, but the issue seemed to be affecting only the iTunes desktop application.  When I would preview using the iPad, load times were normal.  The issue seems to have been resolved this morning.
    Syd Rodocker
    Tennessee State Department of Education

  • Long Load Times on Graphic Intensive Games

    I'm experiencing some absurdly long load times (1-3 hours) with many games (SPORE, Portal, X:3, etc...) that I believe may be related to how graphically intensive they are. Older games with lower graphics quality (WoW, Civ 4, etc...) load up fine.
    When I load any newer game the icon appears in the tray and the computer does nothing else for at least an hour, whereupon the program loads and begins playing immediately--often without any further delays or issues.
    I also use Boot Camp to run Windows Vista (Ultimate 32) and experience no delays when running SPORE on Windows.
    Below are my specs:
    Hardware:
    Hardware Overview:
    Model Name: iMac
    Model Identifier: iMac5,1
    Processor Name: Intel Core 2 Duo
    Processor Speed: 2.33 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2
    L2 Cache: 4 MB
    Memory: 2 GB
    Bus Speed: 667 MHz
    Boot ROM Version: IM51.0090.B09
    SMC Version: 1.9f4
    Serial Number: QP7121Q** <Edited by Moderator>
    Network:
    Bluetooth:
    Type: PPP (PPPSerial)
    Hardware: Modem
    BSD Device Name: Bluetooth-Modem
    Has IP Assigned: No
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: Manual
    Exclude Simple Hostnames: 0
    FTP Passive Mode: Yes
    Auto Discovery Enabled: No
    Built-in Ethernet:
    Type: Ethernet
    Hardware: Ethernet
    BSD Device Name: en0
    Has IP Assigned: No
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    FTP Proxy Enabled: No
    FTP Passive Mode: Yes
    Gopher Proxy Enabled: No
    HTTP Proxy Enabled: No
    HTTPS Proxy Enabled: No
    RTSP Proxy Enabled: No
    SOCKS Proxy Enabled: No
    Ethernet:
    MAC Address: 00:17:f2:d4:e8:98
    Media Options:
    Media Subtype: Auto Select
    Built-in FireWire:
    Type: FireWire
    Hardware: FireWire
    BSD Device Name: fw0
    Has IP Assigned: No
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: Manual
    Exclude Simple Hostnames: 0
    FTP Passive Mode: Yes
    Auto Discovery Enabled: No
    Ethernet:
    MAC Address: 00:19:e3:ff:fe:81:ea:7a
    Media Options: Full Duplex
    Media Subtype: Auto Select
    Software:
    System Software Overview:
    System Version: Mac OS X 10.5.3 (9D34)
    Kernel Version: Darwin 9.3.0
    Boot Volume: MacintoshHD
    Boot Mode: Normal
    Computer Name: emeldi
    User Name: Mike (mike)
    Time since boot: 1 day9:05
    ATA:
    ATA Bus:
    MATSHITADVD-R UJ-85J:
    Capacity: 423.4 MB
    Model: MATSHITADVD-R UJ-85J
    Revision: FCQ5
    Serial Number:
    Removable Media: Yes
    Detachable Drive: No
    BSD Name: disk1
    Protocol: ATAPI
    Unit Number: 0
    Socket Type: Internal
    Low Power Polling: Yes
    Mac OS 9 Drivers: No
    Partition Map Type: Unknown
    S.M.A.R.T. status: Not Supported
    Volumes:
    SPORE:
    Capacity: 368.7 MB
    Media Type: CD-ROM
    Writable: No
    File System: ISO Rockridge
    BSD Name: disk1s0
    Mount Point: /Volumes/SPORE
    Volumes:
    disk1s0:
    Capacity: 368.7 MB
    Media Type: CD-ROM
    Writable: No
    File System: ISO Rockridge
    Audio (Built In):
    Intel High Definition Audio:
    Device ID: 0x83847680
    Audio ID: 23
    Available Devices:
    Headphone:
    Connection: Combo
    Microphone:
    Connection: Internal
    Speaker:
    Connection: Internal
    Line In:
    Connection: Combo
    S/P-DIF Out:
    Connection: Combo
    S/P-DIF In:
    Connection: Combo
    Bluetooth:
    Apple Bluetooth Software Version: 2.1.0f17
    Hardware Settings:
    emeldi:
    Address: 00-17-f2-be-d3-95
    Manufacturer: Cambridge Silicon Radio
    Firmware Version: 3.1965 (3.1965)
    Bluetooth Power: On
    Discoverable: No
    Requires Authentication: No
    Services:
    Bluetooth File Transfer:
    Folder other devices can browse: ~/Public
    Requires Authentication: Yes
    State: Enabled
    Bluetooth File Exchange:
    Folder for accepted items: ~/Documents
    Requires Authentication: No
    When other items are accepted: Ask
    When PIM items are accepted: Ask
    When receiving items: Prompt for each file
    State: Enabled
    Devices (Paired, Favorites, etc):
    JabraBT125:
    Name: JabraBT125
    Address: 00-1a-45-81-c4-f6
    Type: Headset
    Services: Headset, Hands-Free unit
    Paired: Yes
    Favorite: Yes
    Connected: No
    Manufacturer: Cambridge Silicon Radio ($3, $978)
    Incoming Serial Ports:
    Serial Port 1:
    Name: Bluetooth-PDA-Sync
    RFCOMM Channel: 3
    Requires Authentication: No
    Outgoing Serial Ports:
    Serial Port 1:
    Address:
    Name: Bluetooth-Modem
    RFCOMM Channel: 0
    Requires Authentication: No
    Diagnostics:
    Power On Self-Test:
    Last Run: 6/22/08 3:50 AM
    Result: Passed
    Disc Burning:
    MATSHITA DVD-R UJ-85J:
    Firmware Revision: FCQ5
    Interconnect: ATAPI
    Burn Support: Yes (Apple Shipping Drive)
    Cache: 2048 KB
    Reads DVD: Yes
    CD-Write: -R, -RW
    DVD-Write: -R, -RW, +R, +R DL, +RW
    Write Strategies: CD-TAO, CD-SAO, DVD-DAO
    Media:
    Type: CD-ROM
    Blank: No
    Erasable: No
    Overwritable: No
    Appendable: No
    FireWire:
    FireWire Bus:
    Maximum Speed: Up to 400 Mb/sec
    Graphics/Displays:
    ATI Radeon X1600:
    Chipset Model: ATY,RadeonX1600
    Type: Display
    Bus: PCIe
    PCIe Lane Width: x16
    VRAM (Total): 256 MB
    Vendor: ATI (0x1002)
    Device ID: 0x71c5
    Revision ID: 0x0000
    ROM Revision: 113-xxxxxx-139
    EFI Driver Version: 01.00.139
    Displays:
    iMac:
    Display Type: LCD
    Resolution: 1680 x 1050
    Depth: 32-bit Color
    Built-In: Yes
    Core Image: Hardware Accelerated
    Main Display: Yes
    Mirror: Off
    Online: Yes
    Quartz Extreme: Supported
    Display Connector:
    Status: No display connected
    Memory:
    BANK 0/DIMM0:
    Size: 1 GB
    Type: DDR2 SDRAM
    Speed: 667 MHz
    Status: OK
    Manufacturer: 0x2CFFFFFFFFFFFFFF
    Part Number: 0x3136485446313238363448592D3636374433
    Serial Number: 0xDB086DDD
    BANK 1/DIMM1:
    Size: 1 GB
    Type: DDR2 SDRAM
    Speed: 667 MHz
    Status: OK
    Manufacturer: 0x2CFFFFFFFFFFFFFF
    Part Number: 0x3136485446313238363448592D3636374433
    Serial Number: 0xDB086DDC
    Power:
    System Power Settings:
    AC Power:
    System Sleep Timer (Minutes): 0
    Disk Sleep Timer (Minutes): 0
    Display Sleep Timer (Minutes): 15
    Sleep On Power Button: Yes
    Automatic Restart On Power Loss: Yes
    Wake On LAN: Yes
    Display Sleep Uses Dim: No
    Hardware Configuration:
    UPS Installed: No
    Printers:
    Lexmark All In One:
    Status: Idle
    Print Server: Local
    Driver Version: 1.1.3
    Default: Yes
    URI: usb://Lexmark/Lexmark%20All%20In%20One?location=1d120000
    PPD: Lexmark All In One
    PPD File Version: 1.0
    PostScript Version: (3011.104) 0
    Lexmark All In One-1:
    Status: Idle
    Print Server: Local
    Driver Version: 1.1.3
    Default: No
    URI: usb://Lexmark/Lexmark%20All%20In%20One?location=3d120000
    PPD: Lexmark All In One
    PPD File Version: 1.0
    PostScript Version: (3011.104) 0
    Serial-ATA:
    Intel ICH7-M AHCI:
    Vendor: Intel
    Product: ICH7-M AHCI
    Speed: 1.5 Gigabit
    Description: AHCI Version 1.10 Supported
    WDC WD2500JS-40TGB0:
    Capacity: 232.89 GB
    Model: WDC WD2500JS-40TGB0
    Revision: 20.06C04
    Serial Number: WD-WCANY2508218
    Native Command Queuing: Yes
    Queue Depth: 32
    Removable Media: No
    Detachable Drive: No
    BSD Name: disk0
    Mac OS 9 Drivers: No
    Partition Map Type: GPT (GUID Partition Table)
    S.M.A.R.T. status: Verified
    Volumes:
    MacintoshHD:
    Capacity: 232.57 GB
    Available: 11.26 GB
    Writable: Yes
    File System: Journaled HFS+
    BSD Name: disk0s2
    Mount Point: /
    Volumes:
    disk0s2:
    Capacity: 232.57 GB
    Available: 11.26 GB
    Writable: Yes
    File System: Journaled HFS+
    USB:
    USB High-Speed Bus:
    Host Controller Location: Built In USB
    Host Controller Driver: AppleUSBEHCI
    PCI Device ID: 0x27cc
    PCI Revision ID: 0x0002
    PCI Vendor ID: 0x8086
    Bus Number: 0xfd
    Built-in iSight:
    Version: 1.84
    Bus Power (mA): 500
    Speed: Up to 480 Mb/sec
    Manufacturer: Micron
    Product ID: 0x8501
    Vendor ID: 0x05ac (Apple Computer, Inc.)
    USB Bus:
    Host Controller Location: Built In USB
    Host Controller Driver: AppleUSBUHCI
    PCI Device ID: 0x27c9
    PCI Revision ID: 0x0002
    PCI Vendor ID: 0x8086
    Bus Number: 0x3d
    USB Hub:
    Version: 1.00
    Bus Power (mA): 500
    Speed: Up to 12 Mb/sec
    Manufacturer: OEM
    Product ID: 0x0061
    Vendor ID: 0x043d
    Lexmark All-in-One:
    Version: 1.00
    Bus Power (mA): 500
    Speed: Up to 12 Mb/sec
    Manufacturer: Lexmark
    Product ID: 0x0069
    Vendor ID: 0x043d
    All-in-One:
    Version: 1.00
    Bus Power (mA): 500
    Speed: Up to 12 Mb/sec
    Manufacturer: Lexmark
    Product ID: 0x0060
    Vendor ID: 0x043d
    USB Bus:
    Host Controller Location: Built In USB
    Host Controller Driver: AppleUSBUHCI
    PCI Device ID: 0x27ca
    PCI Revision ID: 0x0002
    PCI Vendor ID: 0x8086
    Bus Number: 0x5d
    USB Multimedia Keyboard:
    Version: 1.00
    Bus Power (mA): 500
    Speed: Up to 12 Mb/sec
    Manufacturer: ALCOR
    Product ID: 0x9462
    Serial Number: Au9462
    Vendor ID: 0x058f
    USB RECEIVER:
    Version: 25.10
    Bus Power (mA): 100
    Speed: Up to 1.5 Mb/sec
    Manufacturer: Logitech
    Product ID: 0xc50e
    Vendor ID: 0x046d
    USB Multimedia Keyboard:
    Version: 1.22
    Bus Power (mA): 250
    Speed: Up to 12 Mb/sec
    Manufacturer: ALCOR
    Product ID: 0x9410
    Serial Number: Au9462
    Vendor ID: 0x058f
    USB Bus:
    Host Controller Location: Built In USB
    Host Controller Driver: AppleUSBUHCI
    PCI Device ID: 0x27c8
    PCI Revision ID: 0x0002
    PCI Vendor ID: 0x8086
    Bus Number: 0x1d
    USB Bus:
    Host Controller Location: Built In USB
    Host Controller Driver: AppleUSBUHCI
    PCI Device ID: 0x27cb
    PCI Revision ID: 0x0002
    PCI Vendor ID: 0x8086
    Bus Number: 0x7d
    Bluetooth USB Host Controller:
    Version: 19.65
    Bus Power (mA): 500
    Speed: Up to 12 Mb/sec
    Manufacturer: Apple, Inc.
    Product ID: 0x8206
    Vendor ID: 0x05ac (Apple Computer, Inc.)
    IR Receiver:
    Version: 1.10
    Bus Power (mA): 500
    Speed: Up to 12 Mb/sec
    Manufacturer: Apple Computer, Inc.
    Product ID: 0x8240
    Vendor ID: 0x05ac (Apple Computer, Inc.)
    AirPort Card:
    AirPort Card Information:
    Wireless Card Type: AirPort Extreme (0x14E4, 0x87)
    Wireless Card Locale: USA
    Wireless Card Firmware Version: Broadcom BCM43xx 1.0 (4.170.46.7)
    Current Wireless Network: ACTIONTEC
    Wireless Channel: 9
    Firewall:
    Firewall Settings:
    Mode: Limit incoming connections to specific services and applications
    Services:
    File Sharing (AFP): Allow all connections
    Printer Sharing: Allow all connections
    Applications:
    com.apple.iChat: Allow all connections
    com.apple.ODSAgent: Allow all connections
    com.aspyr.empireatwar: Block all connections
    com.RealNetworks.RealPlayer: Allow all connections
    Locations:
    Automatic:
    Active Location: Yes
    Services:
    Bluetooth:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    Exclude Simple Hostnames: No
    FTP Passive Mode: Yes
    Auto Discovery Enabled: No
    PPP:
    ACSP Enabled: No
    Display Terminal Window: No
    Redial Count: 1
    Redial Enabled: Yes
    Redial Interval: 5
    Use Terminal Script: No
    Dial On Demand: No
    Disconnect On Fast User Switch: Yes
    Disconnect On Idle: Yes
    Disconnect On Idle Time: 600
    Disconnect On Logout: Yes
    Disconnect On Sleep: Yes
    Idle Reminder: No
    Idle Reminder Time: 1800
    IPCP Compression VJ: Yes
    LCP Echo Enabled: No
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: No
    Built-in Ethernet:
    Type: Ethernet
    BSD Device Name: en0
    Hardware (MAC) Address: 00:17:f2:d4:e8:98
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    FTP Proxy Enabled: No
    FTP Passive Mode: Yes
    Gopher Proxy Enabled: No
    HTTP Proxy Enabled: No
    HTTPS Proxy Enabled: No
    RTSP Proxy Enabled: No
    SOCKS Proxy Enabled: No
    Built-in FireWire:
    Type: FireWire
    BSD Device Name: fw0
    Hardware (MAC) Address: 00:19:e3:ff:fe:81:ea:7a
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    Exclude Simple Hostnames: No
    FTP Passive Mode: Yes
    Auto Discovery Enabled: No
    AirPort:
    Type: IEEE80211
    BSD Device Name: en1
    Hardware (MAC) Address: 00:19:e3:df:5e:9b
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    Exclude Simple Hostnames: No
    FTP Passive Mode: Yes
    Auto Discovery Enabled: No
    IEEE80211:
    Allow Net Creation: Yes
    Disconnect On Logout: No
    InterferenceRobustness: 0
    Join Mode: Automatic
    JoinModeFallback: Prompt
    MAC Address: 00:19:e3:df:5e:9b
    PowerEnabled: 1
    PreferredNetworks:
    SecurityType: Open
    SSID_STR: ACTIONTEC
    Unique Network ID: F0FA7942-54E7-409B-A1CA-10B05F3B2EDE
    SecurityType: WPA2 Personal
    SSID_STR: D Pad
    Unique Network ID: A391D57D-A4EC-4B2E-B741-0D6569BD77AB
    Unique Password ID: 404D3742-17AA-4C24-A229-7E37725522EA
    SecurityType: Open
    SSID_STR: linksys
    Unique Network ID: FD2A5229-348A-4E90-B4E2-48E4DE62C394
    SecurityType: Open
    SSID_STR: M and M
    Unique Network ID: D980D42A-E76C-4A68-920D-AAC9537C26C9
    SecurityType: Open
    SSID_STR: default
    Unique Network ID: 5A2D9117-3263-46B9-952D-A4463BA5F377
    SecurityType: Open
    SSID_STR: Sweet Lou's **** Shack
    Unique Network ID: FA247542-1EF4-41B6-A242-688E75C85B57
    RememberRecentNetworks: 1
    Ethernet Adaptor (en2):
    Type: Ethernet
    BSD Device Name: en2
    Hardware (MAC) Address: 00:01:23:45:67:89
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Exceptions List: *.local, 169.254/16
    FTP Passive Mode: Yes
    Ethernet Adaptor (en3):
    Type: Ethernet
    BSD Device Name: en3
    Hardware (MAC) Address: 00:10:32:54:76:98
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Exceptions List: *.local, 169.254/16
    FTP Passive Mode: Yes
    Volumes:
    net:
    Type: autofs
    Mount Point: /net
    Mounted From: map -hosts
    Automounted: Yes
    home:
    Type: autofs
    Mount Point: /home
    Mounted From: map auto_home
    Automounted: Yes
    Universal Access:
    Universal Access Information:
    Cursor Magnification: Off
    Display: Black on White
    Flash Screen: Off
    Mouse Keys: Off
    Slow Keys: Off
    Sticky Keys: Off
    VoiceOver: Off
    Zoom: Off

    That's old info for the HDD space--I've purchased an external, so my main drive stays plenty free, now.

Maybe you are looking for