HELP- VISTA problem with div inside of div

Hi all,
I need some Dreamweaver CSS help. I put together a profile Web site, http://lizconnolly.com/index.html and in VISTA/IE the yellow bio box inside the gray box is being pushed down. The box looks fine in Firefox and Safari, and I am not sure what the problem is.
My css file link is: http://lizconnolly.com/Connolly.css
Please help if you can.
Thank you for your help.
Liz

As I said in my earlier post, the pages look similar in both IE7 and FFox. The text is very close to the bottom line, but not spilling out of the box.

Similar Messages

  • TS4040 I assumed this would help my problem with not being able to open apps like Preview or TextEdit since I installed Mountain Lion. Instead, first I'm prompted to enter a password, then once I do that, I get an error box telling me the Library needs re

    I assumed this would help my problem with not being able to open apps like Preview or TextEdit since I installed Mountain Lion. Instead, first I'm prompted to enter a password, then once I do that, I get an error box telling me the Library needs repairing. So I click on Repair, and once again I'm prompted for a password, which I enter, then the same error box opens, and so it goes. Can anyone help me with this problem? I'd greatly appreciate it.
    Thor

    Back up all data. Don't continue unless you're sure you can restore from a backup, even if you're unable to log in.
    This procedure will unlock all your user files (not system files) and reset their ownership and access-control lists to the default. If you've set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it.
    Step 1
    If you have more than one user account, and the one in question is not an administrator account, then temporarily promote it to administrator status in the Users & Groups preference pane. To do that, unlock the preference pane using the credentials of an administrator, check the box marked Allow user to administer this computer, then reboot. You can demote the problem account back to standard status when this step has been completed.
    Triple-click the following line to select it. Copy the selected text to the Clipboard (command-C):
    { sudo chflags -R nouchg,nouappnd ~ $TMPDIR.. ; sudo chown -Rh $UID:staff ~ $_ ; sudo chmod -R u+rwX ~ $_ ; chmod -R -N ~ $_ ; } 2> /dev/null
    Paste into the Terminal window (command-V). You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command will take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear, then quit Terminal.
    Step 2 (optional)
    Step 1 should give you usable permissions in your home folder. This step will restore special attributes set by OS X on some user folders to protect them from unintended deletion or renaming. You can skip this step if you don't consider that protection to be necessary, and if everything is working as expected after step 1.
    Boot into Recovery by holding down the key combination command-R at startup. Release the keys when you see a gray screen with a spinning dial.
    When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar. A Terminal window will open.
    In the Terminal window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not  going to reset a password.
    Select your boot volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
     ▹ Restart
    from the menu bar.

  • Centering with CSS inside a div box

    Am subbing on a job, would appreciate help:
    I am trying to center the three columns inside the address
    box at the bottom
    of the page.
    http://www.mariagrist.net/dev/motors/bodyshop.htm
    It should look just like the box at the bottom of the main
    page
    http://www.mariagrist.net/dev/motors/default.html
    but with content centered.
    I copied the divs from the default.htm but am changing them
    in order to try
    to center the content. So far I have only made it worse
    because now the
    columns are all on top of each other.
    Thanks

    Thanks heaps, that's exactly what I wanted it to do.
    Aren't these forums just magnificent.
    "Osgood" <[email protected]> wrote in
    message
    news:[email protected]...
    > Pixel Warrior wrote:
    >
    >> Am subbing on a job, would appreciate help:
    >> I am trying to center the three columns inside the
    address box at the
    >> bottom of the page.
    >>
    >>
    http://www.mariagrist.net/dev/motors/bodyshop.htm
    >>
    >> It should look just like the box at the bottom of
    the main page
    >>
    http://www.mariagrist.net/dev/motors/default.html
    but with content
    >> centered.
    >> I copied the divs from the default.htm but am
    changing them in order to
    >> try to center the content. So far I have only made
    it worse because now
    >> the columns are all on top of each other.
    >> Thanks
    > First off you need to change all thress <div
    class="address_item_content
    > divided"> to <div class="address_item_content">
    Just drop the 'divided'
    > part.
    >
    > Next you need to wrap the three newly nmed <divs>
    'address_item_content'
    > <divs> in another wrapper. See the code below
    (scroll down) I've named it
    > 'addressHolder'
    >
    > Find your .address_item_content css and make sure it
    looks the same as
    > this:
    >
    > .address_item_content {
    > float: left;
    > width: 115px;
    > padding-left: 30px;
    > margin-top: 16px;
    > font-size: 11px;
    > border-left: 1px solid #000;
    > }
    >
    > add the addressHolder css to your stylesheet.
    >
    > #addressHolder {
    > width: 438px;
    > margin: 0 auto;
    > }
    >
    >
    >
    > Heres the section of code starting and ending with the
    > 'address_box_content' <div>
    >
    > Note to get rid of the 1px solid dividing line on the
    left of the first
    > 'address_item_content' <div> use some inline css
    styling
    > 'style="border-left: none;" plus <br style-"clear:
    both;"> has been
    > inserted after the 'addressHolder'<div> to pull
    the 'address_box_content'
    > <div> around the three addresses.
    >
    >
    > CODE
    >
    > <div id="address_box_content">
    > <div id="addressHolder">
    > <div class="address_item_content" style="border-left:
    none;">
    > <div id="content_title">DERWENT PARK</div>
    > 8c Lampton Ave<br>
    > Ph: 03 6211 0660<br>
    > </div>
    >
    > <div class="address_item_content">
    > <div id="content_title">DEVONPORT</div>
    > 6-8 Victoria Pde<br>
    > Ph: 03 6420 4531<br>
    > </div>
    >
    > <div class="address_item_content">
    > <div id="content_title">BURNIE</div>
    > 60-65 Marine Tce<br>
    > Ph :03 6430 2440<br>
    > </div>
    > </div><!-- end addressHolder -->
    > <br style="clear: both;">
    > </div><!-- end address_box_content -->
    >

  • Vista - Problem with Audio config!!! please help!!!

    I just finished a clean install of Vista and installed iTunes. When I try to open iTunes an error message pops up saying "iTunes has detected a problem with youraudio configuration.Audio/Video playback may not operate properly." I have looked on teh forums and all I have seen is something about uninstalling QuickTime and then reinstalling it. I have tried that twice and I still get the same error message. If anyone could help that will be great.

    Try this -> http://docs.info.apple.com/article.html?artnum=304424

  • Draggable div inside "parent" div

    Hi,
    Newbie in Edge Animate and needing some help with draggable items..
    So here's the problem:
    I'm doing some kind of "map-application" and I want to do draggable "map"-div into div (the map-div is larger than the "upper" div - so this "upper" div should identify this lower's "map"-div edges).
    This map-div contain map-image including some text elements and some actions.
    I have tried to do this with jQuery draggable-function and added that containment-definition, but it won't work properly ( I think that syntax was incorrect also.. )
    I found awesome jQuery-function draggable_background.  That works perfectly, BUT I need same function for div-element not background-image..
    I hope you get the point.
    Have anyone ideas or maybe even complete solution for my problem?
    PS. This map should also work with touchable devices.
    -Mariian-

    Hi,
    here is some screenshots of my work. Are these big enough?
    And that warning-sign is telling that my picture is larger than 1024 px and so on..I will reduce that image..
    -Mariian-

  • Div inside another div

    Ok..is it just me, or does auto height really do squat when
    it comes to expanding and contracting of content in other divs that
    it surrounds? I have a div surrounding 2 divs, one that floats to
    the left, and one that floats to the right. If the div that
    surrounds them both has a height that is bigger than they are, it
    wraps just fine, however, if I set it to auto and add content to
    the inside divs, it doesnt grow and expand accordingly, screwing up
    the footer div I have below the div surrounding the 2 divs.
    Reason I wanted a div surrounding the two divs is cuz if one
    was longer than the other, due to there being more content in one
    than the other, then the footer div would, despite it being the
    full length of the page, shrink and fit itself below the shorter
    div tag with less content. Why doesnt the div just stay below the
    longest div since thats where it fits due to it being the full
    length of the page!?
    I attached my code. No, I cannot link the site. I do not have
    the site. Its under construction with no host. Y'all have
    dreamweaver, paste it in a new file and add your own random images.
    the "filler text" is just there so I can show you that if I stick
    that there it wraps around fine, but if you get rid of it, the div
    thats supposed to be wrapping around two divs sticks itself above
    the two divs..even though it doesnt close till have the two divs!!
    WHY!?

    If I understand you, you want two (or more) columns to be the
    same height
    without setting a height, or for them to grow according to
    the largest ones
    size.
    If that is the case, google Faux Columns.
    Basically, you wrap your divs (columns) in a container (the
    one you have
    sourounding) then you create a background image that is the
    same size as
    your columns, set the overflow in the container to hidden,
    and you now have
    the appearance of two even sized columns.
    To be more clear, if you have two divs that total 800px, the
    left being
    200px that you want the bg color of black, and the right
    being 600px with
    the bg color you want green, you create an image that is
    800px wide, 200 px
    black on the left, 600px of green set on the right.
    If you want a border to separate the two, put it on the
    longer of the divs.
    I am not sure how your float of left and right will affect it
    though, I
    usually float both left.
    "DreamChristine" <[email protected]> wrote
    in message
    news:[email protected]...
    > Ok..is it just me, or does auto height really do squat
    when it comes to
    > expanding and contracting of content in other divs that
    it surrounds? I
    > have a
    > div surrounding 2 divs, one that floats to the left, and
    one that floats
    > to the
    > right. If the div that surrounds them both has a height
    that is bigger
    > than
    > they are, it wraps just fine, however, if I set it to
    auto and add content
    > to
    > the inside divs, it doesnt grow and expand accordingly,
    screwing up the
    > footer
    > div I have below the div surrounding the 2 divs.
    >
    > Reason I wanted a div surrounding the two divs is cuz if
    one was longer
    > than
    > the other, due to there being more content in one than
    the other, then the
    > footer div would, despite it being the full length of
    the page, shrink and
    > fit
    > itself below the shorter div tag with less content. Why
    doesnt the div
    > just
    > stay below the longest div since thats where it fits due
    to it being the
    > full
    > length of the page!?
    >
    > I attached my code. No, I cannot link the site. I do not
    have the site.
    > Its
    > under construction with no host. Y'all have dreamweaver,
    paste it in a new
    > file
    > and add your own random images. the "filler text" is
    just there so I can
    > show
    > you that if I stick that there it wraps around fine, but
    if you get rid of
    > it,
    > the div thats supposed to be wrapping around two divs
    sticks itself above
    > the
    > two divs..even though it doesnt close till have the two
    divs!! WHY!?
    >
    >
    >
    > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    > "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    > <html xmlns="
    http://www.w3.org/1999/xhtml">
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    > <!-- TemplateBeginEditable name="doctitle" -->
    > <title>Untitled Document</title>
    > <!-- TemplateEndEditable -->
    > <!-- TemplateBeginEditable name="head" -->
    > <!-- TemplateEndEditable -->
    > <style type="text/css">
    > <!--
    > #whole {
    > height: auto;
    > width: 900px;
    > margin-right: auto;
    > margin-left: auto;
    > border: thick groove #0F0;
    > }
    > #header {
    > height: 251px;
    > width: 900px;
    > margin-right: auto;
    > margin-left: auto;
    > }
    > #navigation {
    > height: 100px;
    > width: 900px;
    > margin-right: auto;
    > margin-left: auto;
    > }
    > #body_wrap {
    > height: auto;
    > width: 900px;
    > margin-right: auto;
    > margin-left: auto;
    > border: thick groove #C0F;
    > }
    > #body {
    > float: left;
    > height: auto;
    > width: 450px;
    > }
    > #side_bar {
    > float: right;
    > width: 450px;
    > }
    > #footer {
    > height: 300px;
    > width: 900px;
    > margin-right: auto;
    > margin-left: auto;
    > }
    > -->
    > </style>
    > </head>
    >
    > <body>
    > <div id="whole">
    > <div id="header"><img
    src="../images/dawn_header2.jpg" width="900"
    > height="251" alt="Dawn Dause Header" /></div>
    > <div id="navigation">Content for id "navigation"
    Goes Here</div>
    > <div id="body_wrap">
    > <div id="body"><!-- TemplateBeginEditable
    name="body" -->Content for
    > id
    > "body" Goes Here<!-- TemplateEndEditable
    --></div>
    > <div id="side_bar"><span
    > title="blocked::
    http://www.kenarllc.com/New_Homes/Romeoville/Townhomes/"><a
    > title="blocked::
    http://www.kenarllc.com/New_Homes/Romeoville/Townhomes/"
    > style="color: blue; text-decoration: underline"
    > href="
    http://www.dawndause.com/greenhaven.htm"><a
    > title="blocked::
    http://www.kenarllc.com/New_Homes/Romeoville/Townhomes/"
    > style="color: blue; text-decoration: underline"
    > href="
    http://www.dawndause.com/greenhaven.htm"></a></span><br>
    > <font size="4"><b>
    > <font
    > color="#ffffff" size="+1"><marquee
    bgcolor="#000080" scrollamount="4"
    > direction="left" loop="true"
    width="179"></marquee>
    > </font></b></font>
    > fdfsfsdfsdf
    > </div>
    > <br />
    > fffff
    > </div>
    > <div id="footer"><img
    src="../images/activerain_adnew.jpg"
    > alt="Activerain"
    > width="350" height="60" /></div>
    > fff
    > </div>
    > </body>
    > </html>
    >

  • Problems with graphics inside fax & mail form

    Hi everybody.
    I've a problem with compiling some mail forms.
    I've to load a logo inside a mail form that can be sent also as a fax.
    I tried insert a .bmp image in different ways : graphic node, intranet URL, web URL, but I have always the same problems:
    1)When I send the fax , even if the preview shows me the logo, the fax is always sent without logo.
    2) Sometimes the preview doesn't load the image.
    Somebody could help me?
    Thanks everybody
    Regards

    Hi,
    e-mail, fax or paging/SMS via SMTP configured in the SAP Web Application Server & Which prerequisites and settings are required outside the SAP system?
    Brodly there are five steps to configure
    1. Profile parameters
    2.User administration (transaction SU01)
    3. Client assignment (transaction SICF)
    4.SAPconnect administration (transaction SCOT)
    5. Settings on the mail server (SAP-external configuration)
    For step by step visit smtp configuration guide at
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/2b/d925bf4b8a11d1894c0000e8323c4f/frameset.htm.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/42/ea000fb4b31a71e10000000a422035/content.htm
    <b>Rewards point if helpfull</b>
    Thanks
    Pankaj Kumar

  • Satellite L30: Vista problems with pages minimising

    Hi,
    i have just bought the toshiba Satellite L30 laptop and i am am having problems with pages minimising whenever i click on the page. Most of the time this happens when i click on the scroll bar, but it also happens when i click on any part of the page and when im typing.
    It's getting very annoying. I have only had this laptop for about 2 weeks and the problem has been there since day one. Im runing Windows vista home basic.
    Does anyone know the cause and/or how to sort it out?

    Hi there,
    be more precisely with your error description, because its hard for anyone whos reading this to find out some problems without knowing which "pages" do you mean. What a kind of program do you use?? Word, Internet Explorer or what???
    Please, do us and yourself a favor and tell the problem with more details, that we can maybe help you. Or at least make some thoughts about your problem. :)
    Greetings ;)

  • Genius needs to help! problems with my video card and system

    Hey guys! I'm going to post my specs first so that you get a good idea of what I'm running on:
    MSI Neo2 LS 865PE.....MAT=Slow
    Pentium4 2.4C.....FSB=233=2.8C hyperthreading enabled ~>1.55V
    Corsair TwinX 1gig PC3700.....memory on "AUTO" in BIOS with timings at 3,4,4,8 ~> 2.7V
    Radeon 9700NP.....stock speeds ~>1.7V
    AlienX case with 2 fan400 watt power supply and 6 case fans
    Zalman Alum/Copper heatsink fan
    1:I've had this motherboard for a few months now. I upgraded my video card from a nVidia Ti4200(128meg) to a Radeon 9800 a month ago, but I couldn't get it working at 8X AGP, no matter what voltages I threw at it. I returned it for a Radeon 9700NP hoping that it would work, but it still won't.
    I'm using BIOS 1.9 and since there is no option to select your AGP speed, I could only try using ATI's drivers. Once booted into Windows, there is a slider you can move to select you AGP speed. On my machine It says that It has performed some tests and has concluded that AGP 4x is the best for my system....but my system supports AGP 8X!
    I've moved the slider over to 8x (which requires a reboot) at least 5 times with each card but the slider refuses to move past 4xAGP after the reboot.
    2: My second problem: I had an old stick of KingMax PC3200 and decided to buy 3 more sticks. Unfortunatly, the 3 I bought did not match the one I had, so I only put 2 of the new sticks I bought into my system. Immediatly, My system would crash, lock up, files were corrupt, and I got PLENTY of blue screens of death with a long message containing: 0x0000007  with all these other numbers and "0"s. I did a search online and found out I had a hardware incompatibility problem. I never got this with my old stick of ram.
    I returned the 3 sticks of Ram and replaced them with the Corsair. Put my new Radeon 9700 in, formatted my hard drive....and within 24 hours, my system locked up 3 times, rebooted itself 5 times, and gave me the same BSOD as mentioned above with the same long message.  
    I didn't change anything except for the memory and the video card. I've been wanting to overclock, (thats why i bought the faster memory   ) but I'm not sure what to do at this point.
         I have my FSB at 233 but I'm scared to go any higher because of previous system instability at stock speeds. My RAM was running on 400 and MAT=Turbo with the most relaxed timings at 3,4,4,8.
    I've given myself hours of sleepless nights formatting when my system wouldnt boot into windows; overclocking....etc. I NEED HELP. PLEASE. PLEASE. Anything could work at this point.  
         I'm trying to get more info on how to run my system at a 5:4 ratio, also.  
    If anyone has problems like me or knows what could be the problem with my system, please reply to this post, it would help me a lot. I've been trying to fix these problems for a few months now so anything is greatly appreciated.  

    Thanks a lot to you guys that responded. I brought my computer home this past holiday and I want to let you know where I stand as of now. I guess this thread is like my blog for my computer. I want to clear some things before my first post makes everyone confused.
    1- I have only 2 sticks of memory in my system: the Corsair PC3700 TwinX 512x2
    I returned the 3 KingMax I bought, and still keep my old stick just in case.
    2- I am using the 400 watt power supply that came with the case. I read some reviews of the case and I know the reviewer did not have problems with the power supply. In my BIOS, there are some voltages it is weak on. Lets say: it it should be 5.00+, my power supply will be feeding it 4.96v or something like that, but I dont know, or think, that is a major problem...
    3- My computer will refuse to boot if memory speeds are set at anything below 400. SO....if I want to use a 5:4 ratio and have to set my memory speeds to "333" in BIOS, my system refuses to boot.
    4- This morning, I did manage to overclock my FSB to 250. Specs are as follow:
    Memory Timing @3,4,4,8,4.....speed set at "AUTO".....MAT at "SLOW"
    MY 2.4C's FSB was raised to 250 = 3.0gig  
    AGP/PCI frequency: 67.xx/3x.xx (cant go any lower)
    CPU voltage: 1.5500
    Memory voltage: 2.75
    Video Card voltage: 1.7
         Everything was fine for the whole day until I heard something click in my computer around midnight, and then seconds later, my computer froze and made a continuous beeeeeeeeeeeeeeeeeep. (you can imagine)
         This "click" and system crash has been plaguing me for months now. I dont know whay it happens. I was just using AIM when I heard the click and my heart stopped.
    My memory speeds have been set to "AUTO" even at the FSB of 250. But I don't know if this still means my system is at a 1:1 ratio. I know the BIOS then adjusts the memory to work at 500 if my FSB is 250...so I assume it is?    I love 3gig, but somehow I feel that 2.8 is faster, since the FSB=233 running parallel to my memory, also at 233
    A FSB of 250 is good enough for me, that's what I've been waiting 6 months for. If anyone knows how to set other ratios to achieve a FSB of 250+, please let me know, but as I said, my memory won't boot if its set at "333"

  • Please Help! Problem with 'whistle' when using Audition and Premeire Pro 1.5 with Audigy

    I hope someone can help with this problem. The start of these messages is at the bottom. Any suggestions would be most welcome...Bill Allen
    Hi David (00)... Thanks for your reply. I just wanted to let you know
    that I am going to post all of this correspondence on as many Creative
    forums that I can find in hopes of finding someone that help with this
    problem.
    I will advise you of the results
    Thanks again...Bill Allen
    ----- Original Message -----
    From: "Creative Americas Customer Support"
    To: "Bill Allen"
    Sent: Saturday, February , 2006 :39 AM
    Subject: Re: Creative System Information (English : Adobe Premeire Pro .5
    and Adobe Audition) (KMM987992I6636L0KM)
    > Sir,
    >
    > The only time that I've see a random tone being generated as you
    > decribe, it was necessary to update the system bios to correct.
    >
    > While we are able to playback and record with the card and it's included
    > software, Adobe continues to not allow you to monitor what you're
    > recording. As best we can tell, there's nothing wrong with the card and
    > I would urge you to check with Adobe for any "monitor recording"
    > switches that may be in their software.
    >
    > For faster service please reply with previous correspondence when
    > replying to this email.
    >
    > Best Regards
    > ,
    >
    > David (00)
    > Team Specialist
    >
    > Technical Support
    > Creative Labs Americas
    >
    >
    >
    > To provide feedback on your "Creative Experience" please click on the
    > following link:
    >
    Link removed
    >
    > This link is provided so that you may provide feedback on your "Creative
    > Experience". If you require further troubleshooting or have additional
    > questions simply reply to the original mail and we will be glad to
    > assist you.
    >
    > Original Message Follows:
    > ------------------------
    > Jeen... I appreciate, very much, your reply. But I don't appreciate
    > trying
    > to be 'ping ponged' back and forth between Creative and Adobe. While I
    > realize that you can only deduce a solution from what I tell you, I
    > believe
    > that if you re-read my description of the problem you will realize that
    > the
    > problem is with the sound card and it's associated software. Otherwise
    > why
    > would the system work as expected when it it turned on the next morning?
    >
    > I would also like to know where the 'tone' comes from. When recording
    > video segment (with audio) through the firewire connection of the
    > Creative Audidgy 2ZS card, after a short while the audio is replaced with a
    > constant tone (as I said, it is about 200 Hz). If I record the video thru the
    > Firewire connection and the audio through the 'Line-In' connection,
    > there is no problem with the recording the audio track 'tone free'. However,
    > sometimes but not always, when the audio is played back the tone will
    > appear. This has happened with both Adobe Premeire Pro .5 and Adobe
    > Audition. It is not in the audio track of Adobe Premeire Pro .5 or
    > Adobe Audition, so the problem must lie with the Creative Audigy 2ZS card or
    > it's associated software. I'm sure your audio engineers have knowledge of
    > this problem and I would appreciate an answer.
    >
    > Thanks...Bill Allen
    >
    > ----- Original Message -----
    > From: "Creative Americas Customer Support"
    >
    > To: "Bill Allen"
    > Sent: Friday, February 0, 2006 2:5 AM
    > Subject: Re: Creative System Information (English : Adobe Premeire Pro
    > .5
    > and Adobe Audition) (KMM9780I6636L0KM)
    >
    >
    >> Dear Bill,
    >>
    >> Thank you for replying back to Creative Technical Support.
    >>
    >> With regards to your issue, I understand that you are having
    > difficulty
    >> getting the audio to record from the applications Adobe Premiere Pro
    > .5
    >> and therefore not sound during the playback.
    >>
    >> As you have verified that the sound card is working properly with the
    >> other applications on recording or playback, this could be due to the
    >> improper setup for the audio in the Premiere Pro .5.
    >>
    >> You may like to refer to Adobe for assistance on the configuration of
    >> the audio settings as we are not in a better position to advise you on
    >> third party software.
    >>
    >> Should you have not sound or issues with our software, please feel
    > free
    >> to contact us so that we can assist you.
    >>
    >> For faster service please reply with previous correspondence when
    >> replying to this email.
    >>
    >> Best Regards
    >> ,
    >>
    >> Jeen
    >> Technical Support
    >> Creative Labs Americas
    >>
    >>
    >>
    >> To provide feedback on your "Creative Experience" please click on the
    >> following link:
    >>
    Link removed
    >>
    >> This link is provided so that you may provide feedback on your
    > "Creative
    >> Experience". If you require further troubleshooting or have additional
    >> questions simply reply to the original mail and we will be glad to
    >> assist you.
    >>
    >> Original Message Follows:
    >> ------------------------
    >> Ronshone... Thanks for your reply.
    >>
    >> Here is the information you requested:
    >>
    >> Sound Blaster Audigy 2ZS
    >> PID: 0 03 50 00 00 00 02
    >> Driver Ver: 2.8.4
    >> Firmware : 0.0.0
    >> Model: SB.0350
    >> Serial Number: MSB0350472004288E
    >> Ink stamp: 50SPT470D
    >>
    >> The Audigy 2ZS is the only sound card installed
    >> The Audigy 2ZS card is at least one slot away from the graphics card.
    >> The Audigy 2ZS card is one slot away from another card.
    >> The Audigy 2ZS card is properly seated in the PCI slot.
    >> The PC's internal wires have been moved away from the Audigy 2ZS card
    > .
    >> The 'on-board' sound is disabled thru the BIOS.
    >> The 'on-board' game port is disabled thru the BIOS.
    >> The XP Pro operating system is up to date with all updates.
    >> There were no background operation going at the time of the tests.
    >> The anit-virus program was closed
    >> The CPU is not overclocked.
    >> And, I am the Administrator.
    >>
    >> The card came in a Creative retail Box along with the input unit that
    >> mounts
    >> in the dri've bay. I can't recall what that is called.
    >>
    >> I have relocated the sound card to a slot that is 4 slots away from
    > the
    >> graphics card and slot away from another card, in this case an
    >> additional
    >> IDE dri've controller.
    >>
    >> I have performed the test you outlined. I found that I had to record
    >> using
    >> the 'line in' source input. And I had to playback using the 'wave'
    >> source.
    >> As far as that test is concerned, everything worked. However when I
    >> bring
    >> up Adobe Premeire Pro .5 I do not hear the audio when capturing, and,
    >> even
    >> though the audio meters in Premeire Pro in indicate that there is
    > audio
    >> playing from the audio track on playback, I hear nothing from the
    >> speakers.
    >>
    >> I then brought up the Creative Speaker Settings requester and did a
    >> diagnostic test. All tests indicated "pass". But when I click on the
    >> 'Speaker Settings' and perform the 'Speaker Test' I hear nothing. I
    >> should
    >> add that in both mixers, the Creative Surround Mixer and the Play
    >> Control
    >> mixer, all inputs and outputs are selected (not muted). Also when I
    >> performed this same test yesterday the 'Speaker Test' worked fine.
    >>
    >> On rebooting, the 'Windows XP' sound is heard from the speakers.
    >> Bringing
    >> up Adobe Premeire Pro .5, the audio played as expected. The 'Speaker
    >> Test'
    >> in the Creative Surround Mixer also worked as expected.
    >>
    >> I then recorded the rest of my program using the Adobe Premeire Pro
    > .5
    >> 'Capture' requester and when I tried to playback from within Adobe
    >> Premeire
    >> Pro .5 all I got was a constant tone (about 200 Hz), even though the
    >> audio
    >> meters in Adobe Premeire Pro .5 indicated that the audio was good and
    >> had
    >> no constant tone.
    >>
    >> I rebooted the computer and brought up Adobe Premeire Pro .5 and my
    >> program. Without making any changes to either mixers, Adobe Premeire
    > Pro
    >> .5
    >> performed, and the sound played, as expected. In the 'Play Control'
    >> mixer
    >> only the 'wave' was acti've. All the rest were muted. It was the same
    >> for
    >> the 'Creative Surround Mixer'.
    >>
    >> I am at a loss as to what the problem is. Any help would be
    >> appreciated.
    >>
    >> ...Bill Allen
    >> ----- Original Message -----
    >> From: "Creative Americas Customer Support"
    >> @customercare.creative.com
    >> To: "Bill Allen"
    >> Sent: Monday, February 06, 2006 9:42 PM
    >> Subject: Re: Creative System Information (English : Adobe Premeire Pro
    >> .5
    >> and Adobe Audition) (KMM933384I6636L0KM)
    >>
    >>
    >> Dear Bill,
    >>
    >> Thank you for contacting Creative Technical Support.
    >>
    >> With regards to the issue you are having, I would really appreciate it
    >> if you can provide me with the model number of the sound card. It
    >> should
    >> start with CT or SB followed by 4 numbers found on the sound card. I
    >> also need the serial number which can be found on the sticker and the
    >> ink stamp which is printed on the back of the card. This number will
    >> not
    >> be located on any of the stickers and it will not be labeled. It is a
    >> number that has been stamped on the card itself, possibly near the
    >> outer
    >> edge of the card to determine the best advice for you.
    >>
    >> Did the sound card come pre-installed in the PC, comes in a plastic
    >> cover or brown box or did it come in a Creative retail box package?
    >>
    >> Below is a link that may help with the location of the model number.
    >>
    >> Run a keyword search for SID2456 from the link below.
    >>
    Link removed
    >>
    >> I also need you to try the following recording test.
    >>
    >> SELECT THE RECORDING SOURCE IN SURROUND MIXER
    >> . Go to Start Programs Creative SB Audigy Surround Mixer
    >> 2. Click on the Recording Source (should be on the right side of the
    >> mixer under the REC label)
    >> 3. Change the recording source to Analog Mix
    >> 4. Mute the other analog sources (Mic, CD Audio, Auxiliary, Tad, PC
    >> speaker) that you don't want recorded with the audio stream.
    >> 5. You may wish to select "record without monitoring" by click on the
    >> (+) above the Analog Mix recording source. This keeps the source from
    >> playing out to speakers while recording
    >>
    >> TEST RECORD THE AUDIO
    >> . Go to Start Programs Accessories Multimedia Sound Recorder.
    >> 2. Click the Record button (red dot)
    >> 3. Talk into the microphone
    >> 4. Let it record the source for a little bit
    >> 5. Hit the Stop button (black square)
    >> 6. Hit the play button (single arrow pointing right)
    >> 7. You should now hear the audio that you recorded.
    >>
    >> If you are still having issues, I recommend you to ensure the
    > following
    >> for the audio installation and test:
    >>
    >> - The card is the only card installed other than the Graphics card.
    >> - The card is at least one empty slot away from the Graphics card.
    >> - Place the soundcard away from all the others.
    >> - That the card is seated properly in the PCI slot.
    >> - Move the PC's internal wires away from the soundcard.
    >> - That the on-board sound on your motherboard is disabled through the
    >> BIOS.
    >> - That the on-board gameport is disabled through the BIOS.
    >> - That your motherboard BIOS is up-to-date.
    >> - That the operating system is up-to-date with the latest service
    > packs
    >> and patches.
    >> - That there are no background applications open when you attempt the
    >> solution.
    >> - That the anti-virus program is disabled.
    >> - That if you are over-clocking your system, return all options to
    >> their
    >> recommended settings.
    >> - That you access the PC with administrator rights.
    >>
    >> Do reply back to me if you are still having problems with any error
    >> messages prompted. Thanks.
    >>
    >> For faster service please reply with previous correspondence when
    >> replying to this email.
    >>
    >> Best Regards
    >> ,
    >>
    >> Ronshone
    >> Technical Support
    >> Creative Labs Americas
    >>
    >>
    >>
    >> To provide feedback on your "Creative Experience" please click on the
    >> following link:
    >>
    Link removed
    >>
    >> This link is provided so that you may provide feedback on your
    >> "Creative
    >> Experience". If you require further troubleshooting or have additional
    >> questions simply reply to the original mail and we will be glad to
    >> assist you.
    >>
    >> Original Message Follows:
    >> ------------------------
    >> User Detail
    >> ----------------------------------------
    >> Name : Bill Allen
    >> Email Address : [email protected]
    >> Self Description : Intermediate PC User
    >>
    >> Creative Product Information
    >> ----------------------------------------
    >>
    >> Problem Type : I need help with a third-party software application
    >>
    >> Problem lies with:
    >> ----------------------------------------
    >> Adobe Premeire Pro .5 and Adobe Audition
    >>
    >> Customer's System Specification
    >> ----------------------------------------
    >>
    >>
    >> Detailed Problem Description
    >> ----------------------------------------
    >> I can hear sound from my computers speakers. The diagnostic tests
    >> performed by the Creative software are all "OK", but I cannot record
    >> audio with either of the two programs mentioned above. I have checked
    >> everything I can think of and all of the settings appear to be "OK".
    > I
    >> have also updated the driver for the sound card. What can I do?
    >>
    >> Attachment :
    >> [ Attachment Type: application/octet-stream Name: CTSi.cab]

    TeamRacing6 wrote:
     b noir,
    I can get itunes to start if I disable Bonjour or if I "repair" it first. Sometimes I can repair Bonjour though add/remove programs, sometimes it will only "repair" using WinRar. Sometimes I have to "repair" Bonjour 2 or 3 times to get iTunes to start.
    I have tried uninstalling and reinstalling at least a dozen times. I have tried redownloading iTunes at least 5 times and from different links. This leads me to believe that the dnssd.dll file is not itself corrupt, but this newest version is causing a conflict with XP somewhere somehow.
    Team, iTunes 10.2.2.12 has just been released. I installed it and checked, and BonJour's been updated to version 2.0.5.0, and there's a new 2.0.5.0 version of dnssd.dll on my system. So I reckon it's worth a try updating to that to see if it's of any help with your trouble.

  • Help intermittent problem with logging in

    Help i have intermittent problem with logging in, sometimes it just comes up with the desktop without any icons or dock and i have to restart the server so i can log on properly, but it doesn't happen all the time, any ideas would be appreciated???

    The clients login window just shakes and won't login. I did find one thing that helps some of my Mac Lab woes.
    Some students get a dock that only has 3 icons. These students also will have saving and printing problems when they get this default dock.
    I think some of the problems occur when the student gets over quota, some preference files get corrupted.
    1. Student will login.
    2. Open the student's home folder. Then open Library and Preferences.
    3. Find the file com.apple.homesync.plist and delete it.
    4. Empty Safari Cache and the user's Trash Can and make sure they are not over quota.
    5. Logout and login.
    This will fix some problems, but not the problem when students can't login at all.

  • Help please problem with export

    I had some problems with safari on my imac (OS X) so I did some "repairs" I ended up deleting some keychains and I believe that is what cause the problem I'm having. However I don't know how to fix it.
    When I try to export RAW images from my Lacie rugged external hard drive to the desktop into jpg I get this error...
    "An internal error has occurred: ?:0: attempt to index field 'rootFile' (a nil value)"
    I have a deadline very soon (in about an hour) and need help please.

    Fantastic, these things always happen at the most inconvenient time!!!
    When you've got the job out of the way reboot the Mac and try the export to desktop again. If it is still broken then in Disk Utility run Repair Permissions on the Mac and La Cie.
    Who do I send the bill to???

  • Vista problem with  Dreamweaver locking files indiscriminately - I'm not alone

    I've seen questions posed in the past about Vista locking files - and I am having the exact same problem, which I posted about a while ago.  Today it happened to me again.
    There appears to be no pattern as to why this happens.  Was happening to me continually until a few weeks ago. Then it stopped without me taking any course of action (just putting up with the annoying bug is all I could do).
    You just have to remember to save the file under a different name to ensure that you don't lose your original file.  The original file does not appear in the File Manager window (after you close down DW, nor does it appear in the Trash bin - it's just gone).
    Initially I thought it may be due to having the file open, checking it in Firefox and possibly FF taking over the file, so it gets locked by DW.  Today, I only opened the file (no checking in a browser at all) made a minor correction and I was locked out of the file.
    Co-incidentally, a few hours ago, I found a website via twitter where this seems to be a known issue, but no there appears to be no response from Adobe about this bug.   http://www.sherylcanter.com/wordpress/2009/05/locked-vanishing-files-in-dreamweaver-and-in design/
    Previously, I used to restart the pc and I'd lose the file altogether (as explained above).  After reading the above website, I'm going to leave DW open for a while to see if it's true about the file 'unlocking itself'.  Thankfully,, this time, I did backup the file just in case.  In the past I'd lost a fair amount of work, that I'd had to recreate - very annoying !!
    I thought I'd post up a graphic of the error messages - to see if others are seeing the same thing. This will need to be bought to the attention of the DW tech team, but not sure how they can address the issue as it is a difficult thing to reproduce on a consistent basis.
    AN UPDATE;  Checked for the file in Windows File manager - the index.html page is not listed in the sitefolder.  Back to Dreamweaver, you can still see the locked file, do a refresh and the index.html file has disappeared.
    I open index2.html (the resaved version of index,html), rename it to index.html and it allows me to do so this time round.
    PS:  At the same time I opened inner.html, made a change, no problems with the file locking.
    Weird !!
    Further update:
    Just found a reply by David Powers here:  http://forums.adobe.com/thread/437034?tstart=30
    I had tried to do a search using similar keywords when this started happening to me months ago - couldn't find anything at the time.
    I even posted to a private forum where people should have known about this issue - but it was never responded to.
    Will see if this fix works for me....  though I can't understand why it only does this occasionally - if someone needs to take control of the folder, surely it should be happening all the time.

    Nadia,
    Although Dreamweaver "reveals" and demonstrates it, I think that it's a deep-seated Vista permissions issue.
    It's random and occurs on files I create from scratch and files I receive from others.
    Full permissions for every single user and group on my PC doesn't work.
    "Take ownership" by my account or Administrator or Administrators or System or Everyone or Authenticated Users doesn't work.
    UAC deactivation doesn't work.
    Command prompt to unset attributes (like read-only) says it ISN'T read-only, but the right-click properties show that it is.
    Only this works so far.
    Activate Vista's Administrator account (be sure to then set a password for it).
    Log in as Administrator, and the issue no longer occurs.
    Here's a link for instructions on how to activate the Vista Administrator account.
    Enable the (Hidden) Administrator Account on Windows Vista [The How-To Geek]
    I'm open and hopeful for a better solution, but for now I've got work to do, so I'm using Dreamweaver logged in as Administrator.

  • PLEASE HELP - Serious problem with my Creative Zen Touch firmware

    Ok, so I finally decided that I would upgrade to the latest firmware version for my Creative Zen Touch. I knew that doing so would erase everything on it, so I backed up everything onto my computer's hard dri've. So from that standpoint, I'm in the clear.
    HOWEVER, during the upgrade process, my computer froze, leaving my precious MP3 player without ANY firmware. This then drove it into "recovery" mode, where I can either clean up, format, or reload firmware. I've gone through each of these options, but when I go to "reload firmware" my computer will no longer detect my Zen! I've tried reinstalling different driver versions, different firmware versions, etc. The bottom line now is that my mp3 player has no firmware, and my computer won't detect it.
    I feel like I probably need to go back to the basics. Unfortuantely, I don't have my installation CD with me. Can anyone post the initial installation file please? Thanks in advance!
    I really hope I can work this out, I don't know if I've gone a day without my Zen in the past two years!

    Simon, this is actually a common problem with the touch. Mine did it about a year after purchase, so I was safe to open it up and fix it. It is actually a really simple fix and is due to a loose connector. I know alot of other people on nomadness.net were having this problem, so I posted a solution here. Hope this helps!
    http://www.nomadness.net/modules.php?name=Forums&file=viewtopic&p=42838

  • Help! Problems with an eraser

    Hi, I'm new to this forum, and I have a problem with an eraser tool.
    I just erased a path, but it becomes like Figure 2!
    How can I erase a middle of path, not digging a cave in them.
    Thank you!

    THat's a closed path, right?
    The eraser tool subtracts parts of shapes. View the artwork in outline mode to understand what it does. If you only want to get rid of a part of the path then you need to use the path eraser tool Illustrator Help | Editing paths

Maybe you are looking for

  • Error while importing WSDL file created in JDeveloper inside BS

    Hi All, I am facing error while importing WSDL of the DBAdapter service created using JDeveloper inside my business service in OSB. The error in OSB is 'The Resource Mapped Does not exist'

  • Vat declaration - configuration in erp system

    Hello experts, I configured elster vat declaration in PI system as described in sap note 1293294. But what I have to configure at erp system? sap note 1293294 only describes that I have to select the Exchange Infrastructure transfer type in transacti

  • GNOME 3.2 beta2 available in gnome-unstable

    As promised multiple times on forums, GNOME 3.2 beta2 was just released and guess what? We got it! Shinier and full of new features, noticeable are gdm's brand new look, gnome-online-accounts, gnome-contacts, gnome-documents, epiphany web application

  • How can I download a dvd into I Movie?

    I have various dvds of my daughter's dance performances and I would like to compile them and make a movie.  How can I download the movies into I movie?

  • Can not initilize photoshop because of a program error message

    I am getting a can not initilize photoshop because of a program error message. I recently upgraded to a new Mac book pro running Mavericks. My older Macbook pro that I migrated from also was running mavericks abd it ran fine on that . This morning ph