Need Help Formating Text

Hello,
My program send a table to a method that save table values in disk ".doc", there is a way to format some strings to be bold in the
end file??
Here is the Code:
import java.io.*;
import javax.swing.*;
public class test{  
    public test( JTable table ){   
        String out = "";
        for ( int i = 0 ; i < table.getRowCount(); i++ )
            for( int j = 0 ; j < 5 ; j ++ ){
                out += table.getValueAt( i , j );
                if( j == 0 )          
                    out += " - ";
                else
                    out += "  ";
                if( ( j + 1 ) % 5 == 0 )
                    out += "\n";
        FileOutputStream fOut = null;
        try{
            JFileChooser fc = new JFileChooser( );
            fc.setFileSelectionMode( JFileChooser.FILES_ONLY );
            fc.showSaveDialog( null );
            File file = fc.getSelectedFile();
            fOut = new FileOutputStream( file.getPath( ), true);
            fOut.write( ( out ).getBytes( ) );
            fOut.flush( );
            fOut.close( );
        catch (Exception e){           
            e.printStackTrace();
}

No. Or more specifically, if you are writing a text file (such as ASCII), then you cannot.

Similar Messages

  • Need help formatting text field default value

    Hello,
    I've received a customer request to put default text into the Value section of a text field. They're requesting that the default text include line breaks, bullets, etc. I added a Text Field object and added the default text to the Object tab > Value tab Default field but can't figure out how to add line breaks, etc.
    Thanks in advance,
    Saskia

    Hi,
    this is possible but not doable with the UI of Designer.
    The workaround is as follows:
    1. Create a text, enter your default text with all the formattings you need (text color, bold text, line breaks etc.)
    2. Create a text field and enter any word as default value. Let's say "Default".
    3. Select the text and the switch to the XML Source view.
    There you will find all the formatted text between the <value> tags such as:
    <value>
         <exData contentType="text/html">
              <body xmlns="http://www.w3.org/1999/xhtml" xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/"><p style="letter-spacing:0in">This is<span style="xfa-spacerun:yes"> </span></p><p style="color:#ff0000;letter-spacing:0in">default Text</p><p style="letter-spacing:0in"><span style="xfa-spacerun:yes"> </span>• with<span style="xfa-spacerun:yes"> </span><span style="font-weight:bold">RichText</span> formatting.</p></body>
         </exData>
    </value>
    4. Select the whole code between the <value> tags and copy it to the clipboard (ctrl + c).
    5. Go to the Design View, select the text field, go back to the XML Source view.
    6. There you'll also find the value <tags> and your default value you entered before.
    <value>
         <text>Default</text>
    </value>
    7. Select this code section and paste the value copied before to the clipboard by pressing ctrl + v.
    8. That's it. When you now go back to the Design View your text field shows a formatted RichText as defaul text.

  • Need Help formatting text in a chart in Keynote

    I'm attempting to edit/format some of the text in a chart. This is an imported Powerpoint presentation
    so I'm limited to using the fonts available on the originators PC.
    On the chart is a legend, showing little coloured boxes which reference the coloured elements in the chart. The text beside these is too long, and the text box runs off the page. I know I can go to the inspector and change some parameters (ie horizontal spacing) but I really need to break the text into two (or more) lines. However, I cannot find a means to enable text wrap. I have tried to create an invisible additional column (Chart/edit data) but I cannot hide the box.
    Any suggestions would be appreciated

    You can add a line break in the Chart Data Editor cells by typing Option-Return at the point you want the break. This will let you have legends with text that runs two or more lines.

  • Need Help - Format Text

    Hi
    I am writing a servlet that reads a text file (*.txt) and then outputs it in HTML, as you do with servlets.
    Sounds simple enough, but there is a few problems I have and am hoping for some guidance.
    It is basically a log of jobsets that fell over the night before and need to be posted on the web.
    - Java 1.3.1 is a requirement (that means .split() cannot be used!)
    - The .txt file may vary in length from 10 to 30 lines.
    - The lines are numbered.
    - The data on each line varies and may differ from log to log (ie: Line 1 may not always be for Jobset 1)
    - The "BLAH" and "FOO" columns needs to be in bold
    - The return statements ("Completed Successfully" or "Error....etc") need to be on a new line directly below the Jobset.
    I honestly cannot think of how to do this, due to the flexible nature of the .txt file, and especially without .split().
    I have played with a BufferedReader and StringTokenizer, but it is just driving me crazy.
    Sample of Txt below.
    Jobsets for FOOSERVER, Run time:   2005-11-09-11.10.01.550000     Qual:     1234
      1 BLAH1  - Foo Extracts Completed Successfully
      2 BLAH2  - Foo55 Data Extract Completed Successfully
      3 BLAH7  - Foo HR System Jobs Completed Successfully
      4 BLAH9  - Foo blah to MVS Error on Line 47 "Data not found" and other problems
      5 BLAH44  - Foo Extract Interface Completed Successfully Thanks in advance.

    - Java 1.3.1 is a requirement (that means .split()
    cannot be used!)I think I am nitpicking but 1.3.1 would be a constraint rather than an requirement. But you could still make use of a method similar to split with some third part regex packages.
    http://www.regex.info/java.html

  • Need Help regarding text Output

    Dear gurus.
    I need help regarding formatting of a text.
    I want to format a employee sub group text.
    im getting a text workers (7) from a table t503t having field ptext.
    i want to show only (7) in the output not the whole text how can i do this ?
    Please help
    regards
    Saad.Nisar

    DATA: BEGIN OF itab_odoe OCCURS 0,
      department_text LIKE t527x-orgtx,"Holds the short text for department
      department_no LIKE pernr-orgeh,
      pernr LIKE pernr-pernr,
      ename LIKE pernr-ename,
      grade like t503t-ptext,   "THIS AREA GET ME TEXT OF EMPLOYEE SUBGROUP"
    *  department_text LIKE t527x-orgtx,"Holds the short text for department
      current_year LIKE sy-datum,
      wt0001 LIKE q0008-betrg,"Basic Pay
      wt1101 LIKE q0008-betrg," COLA
      wt3002 LIKE p0015-betrg,"Overtime
      per_basic type p DECIMALS 2,"Overtime percentage on basic
      per_basic_sum type p decimals 2,"Overtime Sum Division
      overtime_sum LIKE p0015-betrg,"holds sum of overtime
      basic_sum like q0008-betrg,"holds sum of basic
    END OF itab_odoe.
    Im using the select statement to get the employee subgroup from the table
    select single ptext
        from t503t
        into itab_odoe-grade
        where persk eq pernr-persk
        AND SPRSL eq 'EN'.
    now in itab_odoe-grade the values comes is Workers (7) , Snr Mgt (M3)
    i want to show only the text in Brackets.

  • HELP! Need help generating TEXT-ONLY portal page...

    Text Only Portal Question:
    PLATFORM:
    =================================================================
    Sun Solaris (5.2 if memory serves) for db and mid-tier, running
    8.1.7 DB and 3.0.9 (1.0.2.2) portal.
    THE NEED:
    =================================================================
    I need to display text only portal pages. Some of the more
    detailed concerns at this point are below. Also, I've had an open
    tar on Metalink for about two weeks, and after research from
    their end has resulted in no help.
    THE ISSUES (so far):
    =================================================================
    IMAGES:
    If an anchor [A HREF=...] tag uses an image as it's "text", I
    need to strip out the ALT= text to show inside the anchor. If no
    ALT text is available, then I would like to show the image name
    as a default.
    For example:
    <img src=home.gif
    alt=Home>
    should display as:
    Home
    FORMS:
    How do I get the resulting page from a form (which include the
    login inputs and submit button, search box, advanced search page,
    etc.) to be displayed by the text only page?
    For example:
    When a form is called, the <FORM> elements are as follows:
    METHOD=GET or POST
    ACTION=url (relative or absolute) to the script.
    In this case, the action value is:
    ACTION=/servlet/page?
    pageid=6&dad=portal30&_schema=PORTAL30.
    This calls the advanced search API.
    I would expect that to redirect the browser back to some
    text-only version, the ACTION= element would have to be changed
    to be something like:
    ACTION=[pathscraper]?/servlet/page?
    pageid=6&dad=portal30&_schema=PORTAL30
    REDIRECTION:
    What happens when portal pages redirect internally? How do you
    get back to the text-only page?
    For example:
    The login link on the standard Oracle Portal home page flips
    from url to url to get to the actual login page. Our
    implementation of Oracle portal goes from
    [DOMAIN]/pls/portal30_sso/portal30_sso.wwsso_app_admin.ls_login
    to [domain]/pls/portal30_sso/portal30_sso.login_page.
    Since this is standard Oracle redirection, how can it be
    intercepted so the portal30_sso.login_page can be presented as
    text only?
    TRIED SO FAR:
    =================================================================
    I've written a socket/text scraper in Perl, running it from a web
    server. The problems mentioned above are really causing problems,
    plus the whole cookie thing. Since Oracle Portal tries to push a
    cookie to the client, when the client is another UNIX server,
    the cookie thing doesn't work.
    POSSIBLE OTHER SOLUTIONS:
    =================================================================
    Something...anything. I've tried to think of some method to
    create some sort of PL/SQL procedure to catch the content then
    strip out the HTML calls.
    An Applet to do the same thing, but on the client side, but
    since time is an issue, coding a complete Java applet isn't
    really an option.
    THE CONCLUSION:
    =================================================================
    HELP! I need some help. This is for a client that is government
    funded, and to meet Section 508 (part of the Americans with
    Disabilities Act that states web sites and applications must be
    made accessible. A text-only page is one of the requirements for
    an accessible page.
    Thanks,
    Ryan Stefani
    ps: feel free to contact me via [email protected] or
    [email protected]

    Use Find/Change and the GREP tab.
    Search for .+ and set the Find formatting to find the charcteristics you want.
    What will you do with this text once found? You'll need something to "change" to, either new text or Change Formatting options...

  • Need help in text field with 2D array

    text field with 2D array
    Hi
    I need help to represent (i) in from field and (j) in to field
    I and j are 2D an array indices.
    This code are not complated
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    //declaring class
    public class test3 extends Applet implements ActionListener
    { //declaring the TextField
    private TextField fromField ,toField;
    //declaring an array
    int weight[][];
    int m = 99; // m is infinity
    int N; // Set of Nodes
    int d; // distance
    int i; // source Node
    int j; // destition Node
    //declaring values of text field
    private int from = i; // start Node
    private int to = j; // end node
    public void init()
    setBackground(Color.white);
    setForeground(Color.red);
    //giving labels
    Label TITLE2,TITLE1;
    TITLE1 = new Label("from:");
    add(TITLE1);
    fromField = new TextField(5);
    add(fromField);
    // register listener using void add actionListener
    fromField.addActionListener(this);
    TITLE2 = new Label("to");
    add(TITLE2);
    toField = new TextField(5);
    add(toField);
    // register listener using void add actionListener
    toField.addActionListener(this);
    // event handler methods
    public void actionPerformed(ActionEvent event) {
    //declaring textfield
    from=Integer.parseInt(fromField.getText());
    to=Integer.parseInt(toField.getText());
    weight =new int[7][7];
    weight[1][1] = 0; weight[2][1]= 2;
    weight[1][2]= 2; weight[2][2]= 0;
    weight[1][3]= 5; weight[2][3]= 3;
    weight[1][4]= 1; weight[2][4]= 2;
    weight[1][5]= 99; weight[2][5]= 99;
    weight[1][6]= 99; weight[2][6]= 99;
    weight[3][1]= 5;
    weight[3][2]= 3;
    weight[3][3]= 0;
    weight[3][4]= 3;
    weight[3][5]= 1;
    weight[3][6]= 5;
    for (int i=1; i<7; ++i) {
    for (int j=1; j<7; ++j)

    all your base are belong to us

  • Need help with text() processing in XSL

    Hello,
    I have an xml that contains such text in my xml:
    before<a>inside</a>after
    and an xsl that transforms it to HTML (a cut for xsl):
    <xsl:template match="a">
    <xsl:apply-templates/>
    </xsl:template>
    <xsl:template match="text()">
    <xsl:value-of disable-output-escaping="yes" select="."/>
    </xsl:template>
    The result is: inside before after
    but I need: before inside after
    It seems it happens 'cause of this: http://www.w3.org/TR/xslt#conflict
    but I cannot find a way to solve this problem :(
    I had tried to use priority in xsl:template, but it didn't help :(
    Thanks a lot.

    DrClap
    here are xml and xsl.
    That's not a real xml and xsl, but they might describe the idea and problem. I hope I miss nothing.
    P.S. I cannot control xml, that's why I cannot use: <xsl:text> in xml.
    Thank you!
    xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <root>
    <title>Page title</title>
    <page>
    Location: <red>http://host</red>
    </page>
    </root>
    xsl:
    <?xml version='1.0' encoding='ISO-8859-1'?>
    <xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:fo="http://www.w3.org/1999/XSL/Format"
    xmlns:fox="http://xml.apache.org/fop/extensions"
    exclude-result-prefixes="fo">
    <xsl:template match="root">
    <html>
    <head>
    <title>
    <xsl:apply-templates select="title"/>
    </title>
    </head>
    <body>
    <xsl:apply-templates select="page"/>
    </body>
    </html>
    </xsl:template>
    <xsl:template match="page">
    <xsl:apply-templates/>
    </xsl:template>
    <xsl:template match="title">
    [Test]: <xsl:apply-templates/>
    </xsl:template>
    <xsl:template match="red">
    <xsl:element name="span"><xsl:attribute name="style">color:red</xsl:attribute><xsl:apply-templates/></xsl:element>
    </xsl:template>
    <xsl:template match="text()">
    <xsl:value-of disable-output-escaping="yes" select="."/>
    </xsl:template>
    </xsl:stylesheet>

  • PHP need help formating date, please.

    I am working on my first database page using repeating fields
    and a
    connection to MySQL, and actually have it working! Yay!
    Now I have a formatting problem, and would appreciate a bit
    of help.
    The first column of the repeating field is a date field,
    which is stored
    as a date type in mysql, and shows up in my table as
    2008-03-12 (which
    is how it was entered into the table). I would like to change
    the
    display to March 12, 2008. I have tried using the date
    function, but
    without success. The text that php is putting in the cell is
    "2008-03-12", which I am guessing is not a valid timestamp. I
    am also
    guessing that this is why I get a date in 1969 when I try
    this...
    The page is here:
    http://www.verodelmar.com/agendas.php
    and the source is here:
    http://www.verodelmar.com/agendas.txt
    Thanks to anyone that takes the time to look!
    Harvey

    Joe Makowiec wrote:
    > On 16 Apr 2008 in macromedia.dreamweaver, eclipsme
    wrote:
    >
    >> The first column of the repeating field is a date
    field, which is
    >> stored as a date type in mysql, and shows up in my
    table as
    >> 2008-03-12 (which is how it was entered into the
    table). I would
    >> like to change the display to March 12, 2008. I have
    tried using the
    >> date function, but without success. The text that
    php is putting in
    >> the cell is "2008-03-12", which I am guessing is not
    a valid
    >> timestamp. I am also guessing that this is why I get
    a date in 1969
    >> when I try this...
    >
    > Use DATE_FORMAT in your SQL statement, thus:
    >
    > SELECT field1, field2,
    > DATE_FORMAT(dateField, '%M %e, %Y') AS myFormattedDate
    > FROM myTable
    >
    >
    http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html#function_date-format
    >
    > Another option is to convert the date from ISO format to
    a Unix
    > timestamp using PHP's strtotime() function, then
    formatting it using
    > date():
    >
    > <?php
    > // Done in several steps for clarity. Can be done in one
    step.
    > $myUnixTimestamp =
    strtotime($row_Recordset1['mydatefield']);
    > $myFormattedDate = date('F j, Y', $myUnixTimestamp);
    > echo $myFormattedDate;
    > ?>
    >
    >
    http://www.php.net/strtotime
    >
    http://www.php.net/date
    >
    The former I think I understand.
    The latter I have printed out and will look at some more.
    Actually in
    theory I understand, but how to do that in my control panel
    is what I
    need to look at.
    Thanks!
    Harvey

  • Need help doing text search of Blob

    I presently have a simple single table candidate tracking application that create records of candidate information and you attach their resume in a word format into a blob column named RESUME within the table.
    I need to be able to do a full text boolean search of the attached documents, since we're going to use this to allow us to search an internal database for people with particular skill sets.
    I'm not a DBA or a developer, I just started working with Oracle Application Express and need a simple way of creating this search feature.
    I also need to add the search feature into a region for users to input search terms.
    Any help would be greatly appreciated.
    Edited by: user10608055 on Nov 25, 2008 11:57 AM

    try
    http://tahiti.oracle.com/
    in the list of books, look at 'TEX' for Oracle text.
    Interesting you should bring this up. I'm slighly involved with US Transition team.
    Many resumes are coming in.
    Tim

  • Need help  formating

    Ok here is my problem, the drive got corrupted (my fault, the drive was getting scanned and it lost power) now i hade hopes of restoring it, but that fell through (nothing important was on it) so now i try to format the drive and i get an input and out put error, then i try to partion it, but that also fails.....so then i connected it to my windows and to access the drive i have to go through disk manager and the partion and the format fails...this also happens to another drive of mine that was corrupted form another issue......
    i have giiven u every piece of inforamtion i have, please help me, also i want all information on the enclousre, and azny update drivers for it, i hope i have given enough information
    Here is the EXACT drive in question.
    http://www.geeks.com/details.asp?invtid=AP35-C&cat=CAS
    Here is the EXACT hard drive i use.
    Link
    here is all the information on my compouter
    Cingullar
    4/26/05 11:33 PM
    Hardware:
    Hardware Overview:
    Machine Name: PowerBook G4 15"
    Machine Model: PowerBook5,6
    CPU Type: PowerPC G4 (1.2)
    Number Of CPUs: 1
    CPU Speed: 1.67 GHz
    L2 Cache (per CPU): 512 KB
    Memory: 1 GB
    Bus Speed: 167 MHz
    Boot ROM Version: 4.9.1f1
    Serial Number: xxxxXLRG4
    Network:
    Built-in Ethernet:
    Type: Ethernet
    Hardware: Ethernet
    BSD Device Name: en0
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: Manual
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: Yes
    Auto Discovery Enabled: No
    Ethernet:
    MAC Address: 00:11:24:88:bf:e8
    Media Options:
    Media Subtype: none
    AirPort:
    Type: AirPort
    Hardware: AirPort
    BSD Device Name: en1
    IPv4 Addresses: 192.168.2.6
    IPv4:
    Addresses: 192.168.2.6
    Configuration Method: DHCP
    Interface Name: en1
    Router: 192.168.2.1
    Subnet Masks: 255.255.255.0
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Default Zone: *
    Interface Name: en1
    Network ID: 65307
    Node ID: 151
    DNS:
    Domain Name: Belkin
    Server Addresses: 192.168.2.1
    DHCP Server Responses:
    Domain Name: Belkin
    Domain Name Servers: 192.168.2.1
    Lease Duration (seconds): 0
    DHCP Message Type: 0x05
    Routers: 192.168.2.1
    Server Identifier: 192.168.2.1
    Subnet Mask: 255.255.255.0
    Proxies:
    Proxy Configuration Method: Manual
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: No
    HTTP Proxy Enabled: No
    HTTP Proxy Port: 8999
    HTTP Proxy Server: 127.0.0.1
    HTTPS Proxy Enabled: No
    HTTPS Proxy Port: 8999
    HTTPS Proxy Server: 127.0.0.1
    Auto Discovery Enabled: No
    Ethernet:
    MAC Address: 00:11:24:9c:3d:aa
    Media Options:
    Media Subtype: autoselect
    Internal Modem:
    Type: PPP (PPPSerial)
    Hardware: Modem
    BSD Device Name: modem
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: Manual
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: Yes
    Auto Discovery Enabled: No
    Bluetooth:
    Type: PPP (PPPSerial)
    Hardware: Modem
    BSD Device Name: Bluetooth-Modem
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: Manual
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: Yes
    Auto Discovery Enabled: No
    Built-in FireWire:
    Type: FireWire
    Hardware: FireWire
    BSD Device Name: fw0
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: Manual
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: Yes
    Auto Discovery Enabled: No
    Ethernet:
    MAC Address: 00:11:24:ff:fe:88:bf:e8
    Media Options: Full Duplex
    Media Subtype: autoselect
    VPN (L2TP):
    Type: PPP (L2TP)
    IPv4:
    Configuration Method: PPP
    OverridePrimary: 1
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: Manual
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: Yes
    Auto Discovery Enabled: No
    Software:
    System Software Overview:
    System Version: Mac OS X 10.4.6 (8I127)
    Kernel Version: Darwin 8.6.0
    Boot Volume: Steven
    Computer Name: Cingullar
    User Name: Steven Feldman (steven)
    ATA:
    ATA Bus:
    MATSHITADVD-R UJ-845E:
    Model: MATSHITADVD-R UJ-845E
    Revision: DMP2
    Serial Number:
    Detachable Drive: No
    Protocol: ATAPI
    Unit Number: 0
    Socket Type: Internal
    ATA Bus:
    FUJITSU MHT2080AH:
    Capacity: 74.53 GB
    Model: FUJITSU MHT2080AH
    Revision: 81EC
    Serial Number: NP0PT552APF0
    Removable Media: No
    Detachable Drive: No
    BSD Name: disk0
    Protocol: ATA
    Unit Number: 0
    Socket Type: Internal
    OS9 Drivers: No
    S.M.A.R.T. status: Verified
    Volumes:
    Steven:
    Capacity: 74.41 GB
    Available: 3.25 GB
    Writable: Yes
    File System: Journaled HFS+
    BSD Name: disk0s3
    Mount Point: /
    Audio (Built In):
    Built In Sound Card:
    Devices:
    Texas Instruments TAS3004:
    Inputs and Outputs:
    Internal Microphone:
    Controls: Left, Right
    Playthrough: Yes
    PluginID: TAS
    Line Level Input:
    Controls: Left, Right
    Playthrough: Yes
    PluginID: TAS
    Headphones:
    Controls: Mute, Left, Right
    PluginID: TAS
    Internal Speakers:
    Controls: Mute, Left, Right
    PluginID: TAS
    Formats:
    PCM 16:
    Bit Depth: 16
    Bit Width: 16
    Channels: 2
    Mixable: Yes
    Sample Rates: 32 KHz, 44.1 KHz, 48 KHz
    PCM 24:
    Bit Depth: 24
    Bit Width: 32
    Channels: 2
    Mixable: Yes
    Sample Rates: 32 KHz, 44.1 KHz, 48 KHz
    Bluetooth:
    Apple Bluetooth Software Version: 1.7.3f4
    Services:
    Bluetooth File Transfer:
    Folder other devices can browse: ~/Pictures
    Requires Authentication: Yes
    State: Enabled
    Bluetooth File Exchange:
    Folder for accepted items: ~/Documents/Shared
    Requires Authentication: Yes
    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):
    CingularUpdator:
    Name: CingularUpdator
    Address: 00-02-ee-e2-f3-ae
    Type: Cellular Phone
    Services: OBEX Object Push, OBEX File Transfer, Dial-up networking, Nokia PC Suite, COM 1, Voice Gateway, Audio Gateway, Client SYNCML, SIM ACCESS
    Paired: Yes
    Favorite: Yes
    Connected: No
    MotorolaPhone:
    Name: MotorolaPhone
    Address: 00-14-9a-79-ad-51
    Type: Cellular Phone
    Services: Voice Gateway, Hands-Free voice gateway, OBEX Object Push, OBEX File Transfer, Dial-up networking Gateway
    Paired: Yes
    Favorite: Yes
    Connected: No
    CingularUpdator:
    Name: CingularUpdator
    Address: 00-02-ee-e2-eb-ee
    Type: Cellular Phone
    Services: OBEX Object Push, OBEX File Transfer, Dial-up networking, Nokia PC Suite, COM 1, Voice Gateway, Audio Gateway, Client SYNCML, SIM ACCESS
    Paired: Yes
    Favorite: No
    Connected: No
    Nokia6820Greg:
    Name: Nokia6820Greg
    Address: 00-02-ee-e2-58-0b
    Type: Cellular Phone
    Services: OBEX Object Push, OBEX File Transfer, Dial-up networking, Nokia PC Suite, COM 1, Voice Gateway, Audio Gateway, Client SYNCML, SIM ACCESS
    Paired: Yes
    Favorite: No
    Connected: No
    Incoming Serial Ports:
    Serial Port 1:
    Name: Bluetooth-PDA-Sync
    RFCOMM Channel: 3
    Requires Authentication: Yes
    Outgoing Serial Ports:
    Serial Port 1:
    Address: 00-02-EE-E2-EB-EE
    Name: CingularUpdator-1
    RFCOMM Channel: 15
    Requires Authentication: No
    Serial Port 2:
    Address: 00-02-EE-E2-EB-EE
    Name: CingularUpdator-2
    RFCOMM Channel: 1
    Requires Authentication: No
    Serial Port 3:
    Address:
    Name: Bluetooth-Modem
    RFCOMM Channel: 0
    Requires Authentication: No
    Diagnostics:
    Power On Self-Test:
    Last Run: 4/26/05 11:06 PM
    Result: Passed
    Apple Hardware Test:
    Last Run: 4/10/06 3:26 PM
    Version: 2.5 PB
    Test Suite: Extended Test
    Result: Passed
    Disc Burning:
    MATSHITA DVD-R UJ-845E:
    Firmware Revision: DMP2
    Interconnect: ATAPI
    Burn Support: Yes (Apple Shipped/Supported)
    Cache: 2048 KB
    Reads DVD: Yes
    CD-Write: -R, -RW
    DVD-Write: -R, -RW, +R, +RW
    Burn Underrun Protection CD: Yes
    Burn Underrun Protection DVD: Yes
    Write Strategies: CD-TAO, CD-SAO, DVD-DAO
    Media: No
    FireWire:
    FireWire Bus:
    Maximum Speed: Up to 800 Mb/sec
    Graphics/Displays:
    ATI Mobility Radeon 9700:
    Chipset Model: ATY,RV360M11
    Type: Display
    Bus: AGP
    VRAM (Total): 64 MB
    Vendor: ATI (0x1002)
    Device ID: 0x4e50
    Revision ID: 0x0000
    ROM Revision: 113-xxxxx-145
    Displays:
    Color LCD:
    Display Type: LCD
    Resolution: 1280 x 854
    Depth: 32-bit Color
    Built-In: Yes
    Core Image: Supported
    Main Display: Yes
    Mirror: Off
    Online: Yes
    Quartz Extreme: Supported
    Display:
    Status: No display connected
    Memory:
    SODIMM0/J25LOWER:
    Size: 512 MB
    Type: DDR SDRAM
    Speed: PC2700U-25330
    Status: OK
    SODIMM1/J25UPPER:
    Size: 512 MB
    Type: DDR SDRAM
    Speed: PC2700U-25330
    Status: OK
    PCI Cards:
    TXN,PCIXXXX-00:
    Name: cardbus
    Type: cardbus
    Bus: PCI
    Slot: PC Card
    Vendor ID: 0x104c
    Device ID: 0xac56
    Revision ID: 0x0000
    Power:
    System Power Settings:
    AC Power:
    System Sleep Timer (Minutes): 0
    Disk Sleep Timer (Minutes): 10
    Display Sleep Timer (Minutes): 20
    Dynamic Power Step: No
    Reduce Processor Speed: No
    Automatic Restart On Power Loss: No
    Wake On AC Change: No
    Wake On Clamshell Open: Yes
    Wake On LAN: Yes
    Wake On Modem Ring: Yes
    Display Sleep Uses Dim: Yes
    Battery Power:
    System Sleep Timer (Minutes): 5
    Disk Sleep Timer (Minutes): 10
    Display Sleep Timer (Minutes): 1
    Dynamic Power Step: No
    Reduce Processor Speed: Yes
    Automatic Restart On Power Loss: No
    Wake On AC Change: No
    Wake On Clamshell Open: Yes
    Wake On Modem Ring: No
    Display Sleep Uses Dim: Yes
    Reduce Brightness: Yes
    Battery Information:
    Battery Installed: Yes
    First low level warning: No
    Full Charge Capacity (mAh): 3854
    Remaining Capacity (mAh): 1464
    Amperage (mA): 2433
    Voltage (mV): 12116
    Cycle Count: 158
    AC Charger Information:
    AC Charger (Watts): 65
    Connected: Yes
    Charging: Yes
    Hardware Configuration:
    Clamshell Closed: No
    UPS Installed: No
    Printers:
    DESKJET 3820:
    Status: Idle
    Print Server: Local
    Driver Version: 2.7.1
    Default: No
    URI: usb://HEWLETT-PACKARD/DESKJET 3820?serial=CN28J1B11118
    PPD: hp deskjet 3820
    PPD File Version: 1.0
    PostScript Version: (3011.104) 0
    DESKJET 3820:
    Status: Stopped
    Print Server: Local
    Driver Version: 2.7.1
    Default: No
    URI: usb://HEWLETT-PACKARD/DESKJET 3820?serial=CN28J1B11118
    PPD: hp deskjet 3820
    PPD File Version: 1.0
    PostScript Version: (3011.104) 0
    deskjet 5550:
    Status: Stopped
    Print Server: Local
    Driver Version: 2.7.1
    Default: No
    URI: usb://hp/deskjet 5550?serial=MY37I1S1SB2L
    PPD: hp deskjet 5550
    PPD File Version: 1.0
    PostScript Version: (3011.104) 0
    deskjet 5550:
    Status: Stopped
    Print Server: Local
    Driver Version: 2.7.1
    Default: No
    URI: usb://hp/deskjet 5550?serial=MY37I1S1SB2L
    PPD: hp deskjet 5550
    PPD File Version: 1.0
    PostScript Version: (3011.104) 0
    deskjet 5600:
    Status: Idle
    Print Server: Local
    Driver Version: 2.7.1
    Default: Yes
    URI: usb://hp/deskjet 5600?serial=MY48A4N3SS79
    PPD: hp deskjet 5600
    PPD File Version: 1.0
    PostScript Version: (3011.104) 0
    deskjet 5600:
    Status: Idle
    Print Server: Local
    Driver Version: 2.7.1
    Default: No
    URI: usb://hp/deskjet 5600?serial=MY48A4N3SS79
    PPD: hp deskjet 5600
    PPD File Version: 1.0
    PostScript Version: (3011.104) 0
    hppsc131:
    Status: Idle
    Print Server: Local
    Driver Version: 10.4
    Default: No
    URI: smb://Home/Stevenpc/hppsc131
    PPD: Generic PostScript Printer
    PPD File Version: 1.0
    PostScript Version: (2000.0) 1
    USB:
    USB High-Speed Bus:
    Host Controller Location: Built In USB
    Host Controller Driver: AppleUSBEHCI
    PCI Device ID: 0x00e0
    PCI Revision ID: 0x0004
    PCI Vendor ID: 0x1033
    Bus Number: 0x5b
    USB Bus:
    Host Controller Location: Built In USB
    Host Controller Driver: AppleUSBOHCI
    PCI Device ID: 0x003f
    PCI Revision ID: 0x0000
    PCI Vendor ID: 0x106b
    Bus Number: 0x1a
    Bluetooth HCI:
    Version: 19.65
    Bus Power (mA): 500
    Speed: Up to 12 Mb/sec
    Product ID: 0x8205
    Vendor ID: 0x05ac (Apple Computer, Inc.)
    Apple Internal Keyboard/Trackpad:
    Version: 0.28
    Bus Power (mA): 500
    Speed: Up to 12 Mb/sec
    Manufacturer: Apple Computer
    Product ID: 0x020e
    Vendor ID: 0x05ac (Apple Computer, Inc.)
    USB Bus:
    Host Controller Location: Built In USB
    Host Controller Driver: AppleUSBOHCI
    PCI Device ID: 0x0035
    PCI Revision ID: 0x0043
    PCI Vendor ID: 0x1033
    Bus Number: 0x1b
    USB Bus:
    Host Controller Location: Built In USB
    Host Controller Driver: AppleUSBOHCI
    PCI Device ID: 0x0035
    PCI Revision ID: 0x0043
    PCI Vendor ID: 0x1033
    Bus Number: 0x3b
    AirPort Card:
    AirPort Card Information:
    Wireless Card Type: AirPort Extreme
    Wireless Card Locale: USA
    Wireless Card Firmware Version: 404.2 (3.90.34.0.p16)
    Current Wireless Network: belkin54g
    Wireless Channel: 11
    Firewall:
    Apple Remote Desktop:
    Policy: Denied
    TCP Ports: 3283, 5900
    iPhoto Bonjour Sharing:
    Policy: Denied
    TCP Ports: 8770
    Remote Login - SSH:
    Policy: Denied
    TCP Ports: 22
    diablo II:
    Policy: Allowed
    TCP Ports: 6112
    UDP Ports: 6112
    Personal File Sharing:
    Policy: Denied
    TCP Ports: 548, 427
    Network Time:
    Policy: Allowed
    UDP Ports: 123
    Adobe Version Cue CS2:
    Policy: Allowed
    TCP Ports: 3703, 427, 50800
    iTunes Music Sharing:
    Policy: Allowed
    TCP Ports: 3689
    FTP Access:
    Policy: Denied
    TCP Ports: 21
    iChat Bonjour:
    Policy: Denied
    TCP Ports: 5297, 5298
    Personal Web Sharing:
    Policy: Denied
    TCP Ports: 80, 427, 443
    Remote Apple Events:
    Policy: Denied
    TCP Ports: 3031
    d2:
    Policy: Allowed
    TCP Ports: 6112
    UDP Ports: 6112
    Windows Sharing:
    Policy: Denied
    TCP Ports: 139
    Printer Sharing:
    Policy: Denied
    TCP Ports: 631, 515
    Locations:
    School EtherNet:
    Active Location: No
    Services:
    Internal Modem:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Proxy Enabled: 1
    FTP Passive Mode: 1
    FTP Proxy Port: 8002
    FTP Proxy Server: sfh-px1
    Gopher Proxy Enabled: 1
    Gopher Proxy Port: 8002
    Gopher Proxy Server: sfh-px1
    HTTP Proxy Enabled: 1
    HTTP Proxy Port: 8002
    HTTP Proxy Server: sfh-px1
    HTTPS Proxy Enabled: 1
    HTTPS Proxy Port: 8002
    HTTPS Proxy Server: sfh-px1
    Auto Discovery Enabled: 0
    SOCKS Proxy Enabled: 1
    SOCKS Proxy Port: 8002
    SOCKS Proxy Server: sfh-px1
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 1
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Bluetooth:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 0
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Built-in Ethernet:
    Type: Ethernet
    BSD Device Name: en0
    Hardware (MAC) Address: 00:11:24:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    Exceptions List: Localhost, 127.0.0.1, .*.
    ExcludeSimpleHostnames: 1
    FTP Proxy Enabled: 1
    FTP Passive Mode: 1
    FTP Proxy Port: 8002
    FTP Proxy Server: Sfh-fs1
    Gopher Proxy Enabled: 1
    Gopher Proxy Port: 8002
    Gopher Proxy Server: Sfh-fs1
    HTTP Proxy Enabled: 1
    HTTP Proxy Port: 8002
    HTTP Proxy Server: Sfh-fs1
    HTTPS Proxy Enabled: 1
    HTTPS Proxy Port: 8002
    HTTPS Proxy Server: Sfh-fs1
    Auto Discovery Enabled: 0
    RTSP Proxy Enabled: 1
    RTSP Proxy Port: 8002
    RTSP Proxy Server: Sfh-fs1
    SOCKS Proxy Enabled: 0
    SOCKS Proxy Port: 8002
    SOCKS Proxy Server: Sfh-fs1
    Built-in FireWire:
    Type: FireWire
    BSD Device Name: fw0
    Hardware (MAC) Address: 00:11:24:ff:fe:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    AirPort:
    Type: Ethernet
    BSD Device Name: en1
    Hardware (MAC) Address: 00:11:24:9c:3d:aa
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    Exceptions List: Localhost, 127.0.0.1, .*.
    ExcludeSimpleHostnames: 1
    FTP Proxy Enabled: 1
    FTP Passive Mode: 1
    FTP Proxy Port: 8002
    FTP Proxy Server: Sfh-fs1
    Gopher Proxy Enabled: 1
    Gopher Proxy Port: 8002
    Gopher Proxy Server: Sfh-fs1
    HTTP Proxy Enabled: 1
    HTTP Proxy Port: 8002
    HTTP Proxy Server: Sfh-fs1
    HTTPS Proxy Enabled: 1
    HTTPS Proxy Port: 8002
    HTTPS Proxy Server: Sfh-fs1
    Auto Discovery Enabled: 0
    RTSP Proxy Enabled: 1
    RTSP Proxy Port: 8002
    RTSP Proxy Server: Sfh-fs1
    Dads House:
    Active Location: No
    Services:
    AirPort:
    Type: Ethernet
    BSD Device Name: en1
    Hardware (MAC) Address: 00:11:24:9c:3d:aa
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 0
    Auto Discovery Enabled: 0
    Internal Modem:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 1
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Bluetooth:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 0
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Built-in Ethernet:
    Type: Ethernet
    BSD Device Name: en0
    Hardware (MAC) Address: 00:11:24:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    Ethernet:
    Media Subtype: autoselect
    MTU: 1500
    Built-in FireWire:
    Type: FireWire
    BSD Device Name: fw0
    Hardware (MAC) Address: 00:11:24:ff:fe:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    Location (1/4/06 4:15 PM):
    Active Location: No
    Services:
    Internal Modem:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 1
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Bluetooth:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 0
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Built-in Ethernet:
    Type: Ethernet
    BSD Device Name: en0
    Hardware (MAC) Address: 00:11:24:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    Built-in FireWire:
    Type: FireWire
    BSD Device Name: fw0
    Hardware (MAC) Address: 00:11:24:ff:fe:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    AirPort:
    Type: Ethernet
    BSD Device Name: en1
    Hardware (MAC) Address: 00:11:24:9c:3d:aa
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    Moms Wireless:
    Active Location: No
    Services:
    Internal Modem:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 1
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Bluetooth:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 0
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Built-in Ethernet:
    Type: Ethernet
    BSD Device Name: en0
    Hardware (MAC) Address: 00:11:24:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    Built-in FireWire:
    Type: FireWire
    BSD Device Name: fw0
    Hardware (MAC) Address: 00:11:24:ff:fe:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    AirPort:
    Type: Ethernet
    BSD Device Name: en1
    Hardware (MAC) Address: 00:11:24:9c:3d:aa
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    VPN (L2TP):
    Type: PPP
    IPv4:
    Configuration Method: PPP
    OverridePrimary: 1
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 1
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 0
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 0
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 0
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 0
    LCP Echo Enabled: 1
    LCP Echo Failure: 15
    LCP Echo Interval: 20
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Automactic:
    Active Location: Yes
    Services:
    Built-in Ethernet:
    Type: Ethernet
    BSD Device Name: en0
    Hardware (MAC) Address: 00:11:24:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    Ethernet:
    Media Subtype: autoselect
    MTU: 1500
    AirPort:
    Type: Ethernet
    BSD Device Name: en1
    Hardware (MAC) Address: 00:11:24:9c:3d:aa
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 0
    HTTP Proxy Enabled: 0
    HTTP Proxy Port: 8999
    HTTP Proxy Server: 127.0.0.1
    HTTPS Proxy Enabled: 0
    HTTPS Proxy Port: 8999
    HTTPS Proxy Server: 127.0.0.1
    Auto Discovery Enabled: 0
    Internal Modem:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Authorization Name: Nighteaater537
    Authorization Password: <002d003d 002d003d 002d003d >
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 0
    Redial Interval: 5
    Remote Address: 772-546-3768
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 1
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 0
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Bluetooth:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 180
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 1
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 1
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Built-in FireWire:
    Type: FireWire
    BSD Device Name: fw0
    Hardware (MAC) Address: 00:11:24:ff:fe:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    VPN (L2TP):
    Type: PPP
    IPv4:
    Configuration Method: PPP
    OverridePrimary: 1
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 1
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 0
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 0
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 0
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 0
    LCP Echo Enabled: 1
    LCP Echo Failure: 15
    LCP Echo Interval: 20
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    MacTOPc:
    Active Location: No
    Services:
    Internal Modem:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 1
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Bluetooth:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 0
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Built-in Ethernet:
    Type: Ethernet
    BSD Device Name: en0
    Hardware (MAC) Address: 00:11:24:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    Built-in FireWire:
    Type: FireWire
    BSD Device Name: fw0
    Hardware (MAC) Address: 00:11:24:ff:fe:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    AirPort:
    Type: Ethernet
    BSD Device Name: en1
    Hardware (MAC) Address: 00:11:24:9c:3d:aa
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    VPN (PPTP):
    Type: PPP
    IPv4:
    Configuration Method: PPP
    OverridePrimary: 1
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 1
    CCP Enabled: 1
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 0
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 0
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 0
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 0
    LCP Echo Enabled: 1
    LCP Echo Failure: 15
    LCP Echo Interval: 20
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    School:
    Active Location: No
    Services:
    Internal Modem:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Proxy Enabled: 1
    FTP Passive Mode: 0
    FTP Proxy Port: 8002
    FTP Proxy Server: sfh-px1
    Gopher Proxy Enabled: 1
    Gopher Proxy Port: 8002
    Gopher Proxy Server: sfh-px1
    HTTP Proxy Enabled: 1
    HTTP Proxy Port: 8002
    HTTP Proxy Server: sfh-px1
    HTTPS Proxy Enabled: 1
    HTTPS Proxy Port: 8002
    HTTPS Proxy Server: sfh-px1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 1
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Bluetooth:
    Type: PPP
    IPv4:
    Configuration Method: PPP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    PPP:
    ACSP Enabled: 0
    Display Terminal Window: 0
    Redial Count: 1
    Redial Enabled: 1
    Redial Interval: 5
    Use Terminal Script: 0
    Dial On Demand: 0
    Disconnect On Fast User Switch: 1
    Disconnect On Idle: 1
    Disconnect On Idle Timer: 600
    Disconnect On Logout: 1
    Disconnect On Sleep: 1
    Idle Reminder: 0
    Idle Reminder Time: 1800
    IPCP Compression VJ: 1
    LCP Echo Enabled: 0
    LCP Echo Failure: 4
    LCP Echo Interval: 10
    Log File: /var/log/ppp.log
    Verbose Logging: 0
    Built-in Ethernet:
    Type: Ethernet
    BSD Device Name: en0
    Hardware (MAC) Address: 00:11:24:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 1
    FTP Proxy Enabled: 1
    FTP Passive Mode: 0
    FTP Proxy Port: 8002
    FTP Proxy Server: ic-px1
    Gopher Proxy Enabled: 1
    Gopher Proxy Port: 8002
    Gopher Proxy Server: ic-px1
    HTTP Proxy Enabled: 1
    HTTP Proxy Port: 8002
    HTTP Proxy Server: ic-px1
    HTTPS Proxy Enabled: 1
    HTTPS Proxy Port: 8002
    HTTPS Proxy Server: ic-px1
    Auto Discovery Enabled: 0
    RTSP Proxy Enabled: 1
    RTSP Proxy Port: 8002
    RTSP Proxy Server: ic-px1
    Built-in FireWire:
    Type: FireWire
    BSD Device Name: fw0
    Hardware (MAC) Address: 00:11:24:ff:fe:88:bf:e8
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    AirPort:
    Type: Ethernet
    BSD Device Name: en1
    Hardware (MAC) Address: 00:11:24:9c:3d:aa
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    AppleTalk:
    Configuration Method: Node
    Proxies:
    Proxy Configuration Method: 2
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: 1
    Auto Discovery Enabled: 0
    Modems:
    Modem Information:
    Modem Model: Jump
    Interface Type: I2S
    Modulation: V.92
    Hardware Version: Version 1.0
    Driver: MotorolaSM56K.kext (v1.3.3)
    Country: B5 (United States, Latin America)
    Applications:
    Acrobat Reader 5:
    Version: 5.0.5
    Last Modified: 10/19/05 10:31 PM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Acrobat Reader 5.0
    Acrobat Distiller 7.0:
    Version: 7.0.7
    Last Modified: 11/11/05 12:19 PM
    Kind: PowerPC
    Get Info String: Acrobat Distiller™ 7.0.7, 1984-2006 Adobe Systems Incorporated. All rights reserved.
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Acrobat 7.0 Professional/Acrobat Distiller 7.0.app
    Acrobat Uninstaller:
    Version: Acrobat Uninstaller version 7.0.7
    Last Modified: 11/11/05 12:19 PM
    Kind: PowerPC
    Get Info String: Acrobat Uninstaller version 7.0.7, Copyright © 2005 by Adobe Systems, Incorporated. All rights reserved.
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Acrobat 7.0 Professional/Acrobat Uninstaller.app
    Adobe Acrobat 7.0 Professional:
    Version: 7.0.7
    Last Modified: 11/11/05 12:19 PM
    Kind: PowerPC
    Get Info String: Adobe® Acrobat® 7.0.7, ©1984-2005 Adobe Systems Incorporated. All rights reserved.
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app
    Bridge:
    Version: 1.0.0.545
    Last Modified: 11/11/05 11:58 AM
    Kind: PowerPC
    Get Info String: 1.0.0.545 (93460), Copyright 2003-2005, Adobe
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Bridge/Bridge.app
    Adobe GoLive CS2:
    Version: 8.0
    Last Modified: 11/11/05 12:31 PM
    Kind: PowerPC
    Get Info String: 8.0, Copyright © 1997-2005 Adobe Systems Incorporated. All rights reserved.
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe GoLive CS2/Adobe GoLive CS2.app
    Adobe Help Center:
    Version: Adobe Help Center 1.0.0.793
    Last Modified: 11/11/05 11:58 AM
    Kind: PowerPC
    Get Info String: Adobe Help Center 1.0.0.793 (C) 2005 Adobe Systems, Inc. All rights reserved.
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Help Center.app
    Illustrator:
    Version: 12.0.0
    Last Modified: 11/11/05 12:15 PM
    Kind: PowerPC
    Get Info String: 12.0.0, Copyright © 1987-2005 Adobe Systems Inc. All rights reserved.
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Illustrator CS2/Adobe Illustrator.app
    Demonstrator:
    Version: 2.0
    Last Modified: 11/11/05 12:15 PM
    Kind: PowerPC
    Get Info String: 1.0
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Illustrator CS2/Demonstrator/Demonstrator.app
    Analyze Documents:
    Last Modified: 11/11/05 12:15 PM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Illustrator CS2/Scripting.localized/Sample Scripts.localized/AppleScript/Analyze Documents.localized/Analyze Documents.app
    Make Calendar:
    Last Modified: 11/11/05 12:15 PM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Illustrator CS2/Scripting.localized/Sample Scripts.localized/AppleScript/Calendar.localized/Make Calendar.app
    Collect for Output:
    Last Modified: 11/11/05 12:15 PM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Illustrator CS2/Scripting.localized/Sample Scripts.localized/AppleScript/Collect for Output.localized/Collect for Output.app
    Contact Sheets:
    Last Modified: 11/11/05 12:15 PM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Illustrator CS2/Scripting.localized/Sample Scripts.localized/AppleScript/Contact Sheet Demo.localized/Contact Sheets.app
    Dataset Batch PDF from Text:
    Last Modified: 11/11/05 12:15 PM
    Kind: PowerPC
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Illustrator CS2/Scripting.localized/Sample Scripts.localized/AppleScript/Datasets.localized/Dataset Batch PDF from Text.app
    Export Flash Animation:
    Last Modified: 11/11/05 12:15 PM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Illustrator CS2/Scripting.localized/Sample Scripts.localized/AppleScript/Export Flash Animation.localized/Export Flash Animation.app
    Web Gallery:
    Last Modified: 11/11/05 12:15 PM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Illustrator CS2/Scripting.localized/Sample Scripts.localized/AppleScript/Web Gallery.localized/Web Gallery.app
    Adobe InDesign CS2:
    Version: 4.0.0.421
    Last Modified: 11/11/05 12:07 PM
    Kind: PowerPC
    Get Info String: 4.0, Copyright 2000-2005 Adobe Systems Incorporated. All rights reserved.
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe InDesign CS2/Adobe InDesign CS2.app
    Adobe ImageReady CS2:
    Version: 9.0x196
    Last Modified: 11/11/05 12:02 PM
    Kind: PowerPC
    Get Info String: 9.0x196, Copyright © 1998-2005 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Adobe ImageReady CS2.app
    Adobe Photoshop CS2:
    Version: 9.0 (9.0x196)
    Last Modified: 11/11/05 12:02 PM
    Kind: PowerPC
    Get Info String: 9.0 (9.0x196), Copyright ©1990-2005 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Adobe Photoshop CS2.app
    Constrain 350, Make JPG 30:
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Constrain 350, Make JPG 30.exe
    Constrain to 200x200 pixels:
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Constrain to 200x200 pixels.exe
    Constrain to 64X64 pixels:
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Constrain to 64X64 pixels.exe
    Make Button:
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Make Button.exe
    Make GIF (128 colors):
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Make GIF (128 colors).exe
    Make GIF (32, no dither):
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Make GIF (32, no dither).exe
    Make GIF (64 colors):
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Make GIF (64 colors).exe
    Make JPEG (quality 10):
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Make JPEG (quality 10).exe
    Make JPEG (quality 30):
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Make JPEG (quality 30).exe
    Make JPEG (quality 60):
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Make JPEG (quality 60).exe
    Metal Slide Thumbnail:
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Metal Slide Thumbnail.exe
    Multi-Size Save:
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Multi-Size Save.exe
    Rounded Rect Thumbnail:
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Rounded Rect Thumbnail.exe
    Slide Thumbnail:
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Slide Thumbnail.exe
    Unsharp Mask:
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/ImageReady Droplets/Unsharp Mask.exe
    Aged Photo:
    Version: 9.0
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/Photoshop Droplets/Aged Photo.exe
    Conditional Mode Change:
    Version: 9.0
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/Photoshop Droplets/Conditional Mode Change.exe
    Constrain to 300 pixels:
    Version: 9.0
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/Photoshop Droplets/Constrain to 300 pixels.exe
    Constrain to 64 pixels:
    Version: 9.0
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/Photoshop Droplets/Constrain to 64 pixels.exe
    Drop Shadow Frame:
    Version: 9.0
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/Photoshop Droplets/Drop Shadow Frame.exe
    Make Button:
    Version: 9.0
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/Photoshop Droplets/Make Button.exe
    Make Sepia Tone:
    Version: 9.0
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/Photoshop Droplets/Make Sepia Tone.exe
    Save As JPEG Medium:
    Version: 9.0
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/Photoshop Droplets/Save As JPEG Medium.exe
    Save As Photoshop PDF:
    Version: 9.0
    Last Modified: 3/22/05 10:25 AM
    Kind: Native (Preferred) or Classic
    Get Info String: 9.0x087 ©1999-2003 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Photoshop CS2/Samples/Droplets/Photoshop Droplets/Save As Photoshop PDF.exe
    VersionCueCS2:
    Version: 2.0
    Last Modified: 11/11/05 12:02 PM
    Kind: PowerPC
    Get Info String: 2.0, Copyright ©2001-2004 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Version Cue CS2/bin/VersionCueCS2.app
    VersionCueCS2Status:
    Version: 1.0.0
    Last Modified: 11/11/05 12:02 PM
    Kind: PowerPC
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Version Cue CS2/bin/VersionCueCS2Status.app
    VC2Native:
    Version: 2.0
    Last Modified: 11/11/05 12:02 PM
    Get Info String: 2.0.0, © 2003-2004 Adobe Systems Incorporated
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Version Cue CS2/plugins/com.adobe.versioncue.nativecomm_2.0.0/res/macosx/VC2Native.app
    Uninstall Version Cue CS2:
    Version: 0.1
    Last Modified: 11/11/05 12:02 PM
    Kind: PowerPC
    Location: /Applications/1-EDITING STUFF/ADOBE/Adobe Version Cue CS2/Uninstall Version Cue CS2.app
    DJ-1800 2.2.1:
    Version: 2.2.1
    Last Modified: 10/31/05 5:57 PM
    Kind: PowerPC

    The problem of losing power when running the drive, is that the needle may scratch part of the drive as it lands on the platter. Sufficient power may pick it up, but it may have permanently damaged the drive. I would get the drive itself replaced.
    A format which fails is a sign of a hard drive failure.

  • Need help formatting info.

    I've been trying to save a temp. reading every 5 secs. I have a daqbook w/ a dbk82 using 15 type T thermocouples.With the example i hae the text file saves as so, 5 secs, 10 secs, 15secs..etc then the temps. also it isn't taking just one reading from each channel, its taking more like 10. how do i get 1 reading taken from each chaael every 5 secs....without lagging the rest of the system for 5 secs.

    Hello VinnyC,
    What hardware are you using to read the temperature? Is the dbk82 hardware that acquires temperature or are you using National Instruments hardware?
    Your example just has the file I/O stuff and doesn't contain anything relating to the acquisition. If you have NI hardware you are acquiring with and are having problems I could help you out with that.
    It seems to me that you will just need to acquire 1-point at a time in the case structure. You have the case structure setup to write to the file every 5 seconds, so if you read one point within the case structure and write that to file within the case structure, this should solve your problem. If you are using an NI DAQCard, you could use the 'AI Sample Channels VI' within the case which takes one
    sample from each channel each time it's called.
    I hope this helps.
    Regards,
    Todd D.
    NI Applications Engineer

  • Need help formating videos, have movie no sound question

    ok i relize that a million questions have been asked about formating videos but i will make it million and one.
    i have some vides that i made with windows movie maker and i also have some from lime wire. i read in another question to download video ipod converter, and i did i am just lil confuzed, i know my way around these programs so can some just tell me in lamins term like you are talking to an forgner tell me what steps i need to convert it and be able to have sound with movie. i have the 30g ipod english, lime wire, itunes, ipod converter, i just need the help
    Cheers

    "i also have some from lime wire"
    Please not that the majority of posters here will not help you if you are illegally downloading copyrighted material.
    With regard to your home movies, you may find something useful here.
    http://docs.info.apple.com/article.html?artnum=301461

  • I need help adding text!

    I need some help with PE 12 and adding text...

    this forum is for photoshop elements and photoshop elements doesn't support editing GIF.
    You might want to post to photoshop community Photoshop General Discussion

  • Need Help Printing Text Messages From E71

    I need to print some saved text messages that are on my e71 but cannot ge **bleep** to hook up to my bluetooth printer it just never finds it. Is there another way to print these messages fromt he phone i really need them

    connect to pc and use ovi suite
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

Maybe you are looking for

  • Compensation Planning - Error while doing the planning for Employee

    Hi Friends, We have implemented standard MSS Business package. Line Mangers are using the Compensation Planning Iview and are facing errors while sending it for further approvals. In the steps. In the last step they get  RFC_ERROR_SYSTEM_FAILURE. A c

  • Exort to iWeb or drag & drop?

    Hi, when doing a photo page in iWeb, what is the difference between export to iWeb function in iPhoto and drag & drop between iPhoto album (or Finder) and iWeb? It turned out that when I draged and dropped from an iPhoto folder I didn't get all photo

  • Needed to replace Hard Drive, bookmarks gone, Tried restore but no files found.

    Needed to replace my hard drive, lost my bookmarks, tired restore, only had one old file, but did not obtain any old bookmarks. Any suggestions?

  • Time Machine Cannot Complete Back Up

    All of the sudden I am getting this pop up message on my Macbook - Time Machine couldn't complete the backup to "Starchild Time Capsule".  The backup disk image "/Volumes/Steve Mitchell's Time Casu/Macintosh.sparsebundle" is already in use.  How can

  • There was an error processing a page.  A file I/O error has occurred.

    Hello, we are getting this error message when opening most of our financial statements, etc... We have tested the files on several versions of Adobe Reader, such as 9.0,  9.3.4,   10.0 This statement does however open up on some machines which are no