NEED HELP...FORMATING SIZE PROBLEM

I've been succesfully building and formating projects that only lasted 30 minutes.
I'm having some problems with my latest project (1 hour and 20 minutes)...
I did compress with "90 minutes best quality".
and when I import in dvdsp, the file size is 6 GB.
Now it won't format into a blank dvd-R.
I am kinda new at this and need to put it on a dvd for a client.
Could somebody tell me what should I do ?
Should I compress again or can I still burn it with another form of blank dvd?
I need help...
Thank you.

Make sure to select A.Pack/Dolby (make sure that file is made) and use that in the project, not the .aif file

Similar Messages

  • Need help with daq problem

    Hi,
    I need to generate a clock with a period of 20 micro seconds, duty cycle of
    approx 20% and a data line as well as an address line all linked to the clock
    pulse.
    I have tried many different solutions, all using the Daq PCI-1200 but nothing
    seems to work correctly. Usually the system bombs and I have to do a manual
    reset to over come the problem.
    Any suggestions?
    Ken

    Hallo, Ken,
    Du meintest am 20.02.00 zum Thema Need help with daq problem:
    > I need to generate a clock with a period of 20 micro seconds, duty
    > cycle of approx 20% and a data line as well as an address line all
    > linked to the clock pulse.
    You'll need an external clock, expecially under Windows.
    Windows ticks with appr. 18 Hz, and the CPU tick isn't always available
    when Windows tasks multi.
    Viele Gruesse!
    Helmut

  • When trying to install Aid Virtual Instruments I get a warning no mountable file systems. I need help fixing the problem.

    When trying to install Pro Tools 10.3.3 Aid Virtual Instruments I get a warning no mountable file systems. I need help fixing the problem.

    Thanks Linc for responding to my post. I searched a little further and found I was missing a file. Once I downloaded the fix, I was able to install the software from the original download.

  • Need help with getResource() problem under weblogic 6.1

    Hey all,
              I've got a serious problem that I can't figure out. This should be really
              simple - but it's alluding me. I have an ear file with a number of servlets
              inside it. This ear file also contains a resource that my servlets want to
              read from. This resource is located (within the ear file) at:
              "/content/structure/a.txt". The file contains raw ascii.
              To have my serlvet read from this file, I thought it would be as simple as:
              URL content =
              servlet.getServletContext().getResource("/content/structure/a.txt");
              // pw is an instance of PrintWriter
              pw.print(content.getContent());
              However, when I execute the above I get the following exception:
              java.lang.NullPointerException
              at
              java.net.URLConnection.stripOffParameters(URLConnection.java:1011)
              at java.net.URLConnection.getContentHandler(URLConnection.java:979)
              at java.net.URLConnection.getContent(URLConnection.java:581)
              OK, so fine - I figure that I'm new to this. The documentation for the URL
              class tells me there is another way around this. It says that rather then
              calling getContent() directly, I can open a stream on the URL and read from
              that, like so:
              URL content =
              servlet.getServletContext().getResource("/content/structure/scenario2resourc
              es.txt");
              FileInputStream fis = content.openStream();
              but when I do this I get the following different exception:
              java.lang.ClassCastException: weblogic.utils.zip.SafeZipFileInputStream^M
              at Utility.writeFileToOutput(Utility.java:134)^M
              Apparently this thing is trying to return a web-logic-specific stream (which
              is incompatible with an FileInputStream) - which I don't want to use or
              learn about since I want my stuff to work under other webservers.
              Can anyone tell me what I'm doing wrong? This should be simple.
              -john
              John Hilgedick
              WisdomTools, Inc.
              [email protected]
              

    Wenjin,
              I appreciate your response. I tried treating it as a normal InputStream -
              but it didn't make any difference. Here's what I did:
              URL content =
              servlet.getServletContext().getResource("/content/structure/scenario2resourc
              es.txt");
              InputStream is = (InputStream)content.getContent();
              And here's the exception:
              java.lang.NullPointerException^M
              at
              java.net.URLConnection.stripOffParameters(URLConnection.java:1011)^M
              at
              java.net.URLConnection.getContentHandler(URLConnection.java:979)^M
              at java.net.URLConnection.getContent(URLConnection.java:554)^M
              at java.net.URL.getContent(URL.java:807)^M
              at Utility.writeFileToOutput(Utility.java:134)^M
              You can see that it is definitely breaking somewhere in getContent().
              If you have any other ideas, I'd appreciate hearing about them.
              -john
              ----- Original Message -----
              From: "Wenjin Zhang" <[email protected]>
              Newsgroups: weblogic.developer.interest.servlet
              Sent: Wednesday, November 20, 2002 5:03 PM
              Subject: Re: Need help with getResource() problem under weblogic 6.1
              >
              > The "/" in getServletContext().getResource("/content/structure/a.txt")
              means the
              > web (WAR) application root, not your EAR root.
              >
              > The ClassCastException is because that content.openStream() is not
              FileInputStream
              > and has nothing to do with Weblogic. You should treat it as normal
              InputStream.
              >
              >
              > "John Hilgedick" <[email protected]> wrote:
              > >Hey all,
              > >
              > >I've got a serious problem that I can't figure out. This should be
              really
              > >simple - but it's alluding me. I have an ear file with a number of
              servlets
              > >inside it. This ear file also contains a resource that my servlets want
              > >to
              > >read from. This resource is located (within the ear file) at:
              > >"/content/structure/a.txt". The file contains raw ascii.
              > >
              > >To have my serlvet read from this file, I thought it would be as simple
              > >as:
              > >
              > >URL content =
              > >servlet.getServletContext().getResource("/content/structure/a.txt");
              > >// pw is an instance of PrintWriter
              > >pw.print(content.getContent());
              > >
              > >However, when I execute the above I get the following exception:
              > >
              > >java.lang.NullPointerException
              > > at
              > >java.net.URLConnection.stripOffParameters(URLConnection.java:1011)
              > > at
              java.net.URLConnection.getContentHandler(URLConnection.java:979)
              > > at java.net.URLConnection.getContent(URLConnection.java:581)
              > >
              > >OK, so fine - I figure that I'm new to this. The documentation for the
              > >URL
              > >class tells me there is another way around this. It says that rather
              > >then
              > >calling getContent() directly, I can open a stream on the URL and read
              > >from
              > >that, like so:
              > >
              > >URL content =
              >
              >servlet.getServletContext().getResource("/content/structure/scenario2resour
              c
              > >es.txt");
              > >FileInputStream fis = content.openStream();
              > >
              > >but when I do this I get the following different exception:
              > >
              > >java.lang.ClassCastException: weblogic.utils.zip.SafeZipFileInputStream^M
              > > at Utility.writeFileToOutput(Utility.java:134)^M
              > >
              > >Apparently this thing is trying to return a web-logic-specific stream
              > >(which
              > >is incompatible with an FileInputStream) - which I don't want to use
              > >or
              > >learn about since I want my stuff to work under other webservers.
              > >
              > >Can anyone tell me what I'm doing wrong? This should be simple.
              > >
              > >-john
              > >
              > >
              > >--
              > >John Hilgedick
              > >WisdomTools, Inc.
              > >[email protected]
              > >
              > >
              >
              

  • I need help with simple problems. im a student.

    i'd like to be advanced with my studies so i will post questions.. i need help on how to answer. thank you.
    1. create a java program that will evaluate if the value entered is a positive, negative, vowel, consonant and special characters.
    im actually done with the positive and negative using if else statements.. i used an integer data type. now my question is how do conjoin the characters when i need to evaluate a vowel and a consonant. i cant use char either. please help. i dont know what to do yet.
    2. create java program that will translate the input from numbers to words. e.g. input:123 output: one hundred twenty-three.
    i have an idea to use a switch case statement. but i have no idea on how will i be able to do it. so if you guys can help me.. well then thankies..

    Welcome to the Sun forums. First, please note that you have posted in the wrong forum. This forum is for topics related to Sun's JavaHelp product. You should post your questions in the New to Java forum.
    As part of your learning, you will have to develop the ability to select an approach to a problem, create a design that reflects that approach, and then implement the design with code that you create.
    So, it's inappropriate for us to take the problem statement that you have been given and short-circuit your learning process by giving you the implemented problem solution. We can comment on the individual questions that you may have, and point out problems and errors that we see in the code that you develop.
    As a hint, when you are stuck, forget about Java and programming. Just start with a sheet of paper and a pencil, and figure out how to layout the task on paper. The consider how to translate that to programming.
    If you have problems, post short example code that shows the problem, and explain your question clearly. We can't read minds.
    Make sure you post code correctly so that it's not mangled by the forum software, and so that formatting is maintained. Select your typed or pasted code block and press the CODE button above the typing area.

  • I try signing into iMessage and it takes about 45-50 seconds to do. When that happens it tells me there is a network problem. I am positive I don't have a network problem and I need help on this problem please??

    I try to sign in and it just takes forever to do I try and try and do it over and over and it brings me the same results. Created a new Apple ID and when I did it still tells me there is a network problem. But the thing is I am still able to use the Internet I need help?? And it does the exact same thing for FaceTime so I don't know what to do??

    Error -3259 is a network timeout error, usually. This article might help:
    http://support.apple.com/kb/TS2799

  • Need Help with Scrolling Problem

    I have a JTree displayed in scrollpane. Based on search criterial I select the nodes where the search criteria is found. If the match is located off the screen further down into the tree, the node is highlighted but the scrollpane doesn't automatically scroll down to show it. Any help with this problem is appreciated.

    Wow.. Thanks. I thought I would need some fancy code to handle this problem. scrollPathToVisible did it for me. Thanks.

  • Need help bad, screen problem

    heres my problem. i setup arch on my desktop last night (64bit), i installed my nvidia drivers. i have a 21" crt sun monitor, not sure the model number. but i brought it to a friends this morning to update and install kdemod since they have highspeed. now i was hooked up to their monitor, they have a cheap 15" crt. so it worked fine there, now when i got it home, i get a black screen when it boots up on my monitor, i can get to a console however
    i deleted a couple lines in the monitor section in the xorg.conf............so now i get 640x480 res, but i cant use anything higher
    been searching around, and i found some stuff about running Xorg -configure, but i get something about a tmp file being locked..........and i dont know how to delete anything here from the console
    i need help here
    Last edited by ssl6 (2007-09-16 07:00:40)

    nvm, i just deleted the xorg.conf and rebooted, its fine now
    edit// nvm, its not using my nvidia driver.........i might still need help, im trying something right now, not sure what im doing though
    ok, i tried to run nvidia-xconfig, and when i rebooted, im back to square one with my monitor flashin an invalid scan frequency
    well, i deleted the xorg.conf again and got it booted up. but i generated a new one with nvidia-xconfig again, heres what i puts out, i just need to remember not to reboot any time soon. im using a 7900gs, the newest nvidia 100 series drive from the repo, and arch 64bit on this system by the way
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # nvidia-xconfig: version 1.0 (buildmeister@builder26) Wed Jun 13 16:54:14 PDT 2007
    Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0" 0 0
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0" "CorePointer"
    EndSection
    Section "Files"
    RgbPath "/usr/lib/X11/rgb"
    EndSection
    Section "Module"
    Load "dbe"
    Load "extmod"
    Load "type1"
    Load "freetype"
    Load "glx"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Unknown"
    ModelName "Unknown"
    HorizSync 30.0 - 110.0
    VertRefresh 50.0 - 150.0
    Option "DPMS"
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1600x1200" "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    EndSection
    here's that part of the xorg.conf from my other computer running 32bit arch with a geforce 3 connected to the same monitor via kvm switch. this machine is using a 96xx driver though
    Section "Monitor"
    # HorizSync is in kHz unless units are specified.
    # HorizSync may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
    # HorizSync 30-64 # multisync
    # HorizSync 31.5, 35.2 # multiple fixed sync frequencies
    # HorizSync 15-25, 30-50 # multiple ranges of sync frequencies
    # VertRefresh is in Hz unless units are specified.
    # VertRefresh may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
    Identifier "sun"
    HorizSync 31.5 - 82.0
    VertRefresh 50.0 - 90.0
    EndSection
    Section "Device"
    # The chipset line is optional in most cases. It can be used to override
    # the driver's chipset detection, and should not normally be specified.
    # Chipset "generic"
    # The Driver line must be present. When using run-time loadable driver
    # modules, this line instructs the server to load the specified driver
    # module. Even when not using loadable driver modules, this line
    # indicates which driver should interpret the information in this section.
    # The BusID line is used to specify which of possibly multiple devices
    # this section is intended for. When this line isn't present, a device
    # section can only match up with the primary video device. For PCI
    # devices a line like the following could be used. This line should not
    # normally be included unless there is more than one video device
    # intalled.
    # BusID "PCI:0:10:0"
    # VideoRam 256
    # Clocks 25.2 28.3
    Identifier "Standard VGA"
    Driver "vga"
    VendorName "Unknown"
    BoardName "Unknown"
    EndSection
    Section "Device"
    #VideoRam 65536
    # Insert Clocks lines here if appropriate
    Identifier "geforce"
    Driver "nvidia"
    EndSection
    Section "Screen"
    Identifier "Screen 1"
    Device "geforce"
    Monitor "sun"
    DefaultDepth 24
    Option "AddARGBGLXVisuals" "True"
    SubSection "Display"
    Viewport 0 0
    Depth 8
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    EndSection
    Section "Extensions"
    Option "Composite" "Enable"
    EndSection
    any ideas here?
    Last edited by ssl6 (2007-09-16 07:53:48)

  • Need help changing size and aspect ratio for 500+ images

    Thank you for reading this! I have about 500 images of people in different poses. They're all extracted on a transparency as PNGs. They vary in aspect ratio, dimensions and position of the person within the frame - for some the feet are very close to the bottom of the frame and for some, they're higher up. I need to equalize all 3 of these qualities, so that if superimposed, they look like a video unfolding with the same zoom. My ideal size would be 800x800 at 300ppi.
    Is there a way to batch even a part of the process and keep the png format? I had the images in PSD initially but they were too massive so creating catalogs with them was prohibitive.
    If not possible to do a batch, what would be the best (easiest) and fastest way to do it? I'm thinking that maybe creating some template where an oval shape the size of the head can help create consistency of the size of the person and a line that helps set up the distance from the bottom?
    I so appreciate any help you have to offer. Part of my problem is that I don't know what these processes are called so I don't even know what to search for. If you can even name the actions that I need, it would be of great help. I already paid a designer to do the extraction and they were supposed to do this formatting as well and they didn't so my budget is shot. I'm hoping that if I understand what the steps are, I can do them myself.
    Thank you!

    If you download my crafting actions package you can record an action that uses one of my plug-in scripts to do that process. You could then batch that action and process your 500 png image files.
    Crafting Actions Package UPDATED Aug 10, 2014 Added Conditional Action steps to Action Palette Tips.
    Contains
    Action Actions Palette Tips.txt
    Action Creation Guidelines.txt
    Action Dealing with Image Size.txt
    Action Enhanced via Scripted Photoshop Functions.txt
    CraftedActions.atn Sample Action set includes an example Watermarking action
    Sample Actions.txt Photoshop CraftedActions set saved as a text file.
    More then a dozen Scripts for use in actions
    Example
    Download
    Step 1 Select layers transparency
    Step 2 Copy
    Step 3 Paste
    Step 4 Select all
    Step 5 Align Layer s to selection vertical center
    Step 6 Align Layer s to selection horizontal center
    Step 7 Select bottom Layer
    Step 8 delete current layer
    Ste9 9 Fille>Automate>AspectRatopSelection... In the dialog set 1 1 ratio center rectangle replace selection feather 0
    Step 10 Image Crop
    Step 11 File Automate>Fit Image.  In dialog enter width and height 800
    Step 12 Image size in the dialog uncheck Resample and enter 300 in the resolution field.
    I'm sure the should work you mane not need the copy paste and it depends on how Photoshop treats the PNG layer the canvas size or just the pixels.
    This may also work
    Step 1 Select all
    Step 2 Align Layer s to selection vertical center
    Step 3 Align Layer s to selection horizontal center
    Ste9 4 Fille>Automate>AspectRatopSelection... In the dialog set 1 1 ratio center rectangle replace selection feather 0
    Step 5 Image Crop
    Step 6 File Automate>Fit Image.  In dialog enter width and height 800
    Step 7 Image size in the dialog uncheck Resample and enter 300 in the resolution field.

  • 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.

  • 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 with video problems

    Hi!
    Back in May I was having problems with video on my Mac. I was helped by this site and am hoping for more help. I downloaded the realaudio, but was still having problems. I assumed because I was on dial up. It was so slow. It would take forever to load and then play for a few minutes then need to load some more. I now have DSL and was looking forward to kissing the video problems good-bye! My new problem is that when I try to watch or listen to anything like innertube it "stutters." Is there something else I should be doing? How can I fix this problem?

    With those specs you should be absolutely fine. I would suggest that you update to 10.4.10 at least (download the full Combo updater). Once you are on that:
    These are the downloads and the settings you need in order to view/hear pretty much everything that the net can throw at you: The setup described below has proved repeatedly successful on both PPC and Intel macs, but nothing in life carries a guarantee!
    It is known to work in the great majority of cases with Safari 3.0.4, QT 7.3 and OS 10.4.11. (If you are running Leopard, ensure that all plug-ins have been updated for OS 10.5)
    Assuming you already run Tiger versions OS 10.4.9 or above (this has not yet been verified with Leopard) and have Quicktime 7.2 or above, and are using Safari 2 or 3, download and install (or re-install even if you already had them) the latest versions, suitable for your flavor of Mac, of:
    RealPlayer 10 for Mac from http://forms.real.com/real/player/blackjack.html?platform2=Mac%20OS%20X&product= RealPlayer%2010&proc=g3&lang=&show_list=0&src=macjack
    Flip4Mac WMV Player from http://www.microsoft.com/windows/windowsmedia/player/wmcomponents.mspx (Windows Media Player for the Mac is no longer supported, even by Microsoft)
    Perian from http://perian.org/
    Adobe FlashPlayer from http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlash
    (You can check here: http://www.adobe.com/products/flash/about/ to see which version you should install for your Mac and OS. This: http://www.macworld.co.uk/news/index.cfm?email&NewsID=19845 may also interest you.)
    In Quicktime Preferences, under advanced, UNcheck Enable Flash, and under Mime settings/Miscellananeous only check Quicktime HTML (QHTM).
    See also the very informative post from QuickTimeKirk dated Dec 3, 2007 in this thread: http://discussions.apple.com/thread.jspa?threadID=1268489&tstart=0
    In Macintosh HD/Library/Quicktime/ delete any files relating to DivX (Perian already has them).
    Now go to Safari Preferences/Security, and tick the boxes under Web Content (all 4 of them).
    Lastly open Audio Midi Setup (which you will find in the Utilities Folder of your Applications Folder) and click on Audio Devices. Make sure that both Audio Input and Audio Output, under Format, are set to 44100 Hz.
    Important: Now repair permissions and restart.
    The world should now be your oyster!
    You should also consider having the free VLC Player from http://www.videolan.org/ in your armory, as this plays almost anything that DVD Player might not.

  • 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

  • Noob needs help with dreamweaver- problem encountered

    madelinebeth.net
    This is the website i am trying to create. It is not
    complete, but on Safari it looks fine. When i open it on firefox,
    it gets all messed up and i dont know how to change it. It
    initially gets messed up on dreamweaver when i add links o
    different slices. Any help would be greatly appreciated.

    > is a bug in firefox that does not render correctly using
    tables
    Never heard of that. Are you sure?
    >yes you can use photoshop, fireworks, etc. thats what
    they are for
    Could not disagree more. Image apps are for
    creating/manipulating images.
    Period. The HTML they spew is second-rate at best.
    Walt
    "Silkrooster" <[email protected]> wrote in
    message
    news:g0t18h$erv$[email protected]..
    >A few things I see that need to be changed. your first
    issue is tables,
    >there
    > is a bug in firefox that does not render correctly using
    tables. I don't
    > recall
    > the bug and how it works, but the easiest way to
    overcome the bug is to
    > use css
    > instead of tables.
    > The other issue is to add a DTD at the top of your code,
    this will stop
    > the
    > browsers especially IE from using the quirks mode.
    > Other than that the code is fine. These problems can
    easily be fixed in
    > Dreamweaver. And yes you can use photoshop, fireworks,
    etc. thats what
    > they are
    > for, as long as you know the bugs they may create. The
    biggest being the
    > DTD,
    > next is the tables issue, which photoshop can use either
    tables or css.
    > Fireworks currently only supports tables, hopefully that
    will get fixed in
    > the
    > next version.
    > To make sure your code is correct from the get go, it is
    best to
    > use
    > dreamweaver as it is aware of the DTD and can use css or
    tables.
    > I agree about the leopard skin, way too hard on the
    eyes.
    > Hope this helps
    >

  • 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

Maybe you are looking for

  • Leopard Video Effects Not Working Properly

    When ever I have a video conference and try to use a video backdrop the picture becomes very flaky, with parts of my me being covered up by the back drop and random parts of the back drop not working. I think I'm doing everything right but it still i

  • Credit note adjustment

    Hi Expert, Can u please suggest any work around/ option for following scenario. Scenario - Retailer purchased 10 Nikon DSLR camera @ 1000 USD each. Over the period he sold 5 cameras, Nikon came up with price reduction as they launch new model. So now

  • Swf into pdf

    Hi there This is my first post, so please be kind I I am trying to create a pdf with page curl as it is easier for clients to view a design than in a conventional pdf. I have been following the steps in this rather helpful video http://tv.adobe.com/w

  • Portal versions for federation

    Hi, I have 2 portals. Which i want to connect to form a federation and share content. one portal is on 2004s SP6. and the other is on 2004s SP7. even though both are on different SP levels they are both in 2004s. Pls let me know if i will face any is

  • Part recorded technical fault-7

    hi guys,  1st Time poster although I've been a member for a while... I've recently started getting the above error message, and reading the posts on this topic seems it's a common problem with this model of box,  the model in question is the DRX895..