Surround sound mix, have I got this right (CS6).

OK, done some reading and this is what I think I need to do with my 6 WAV files.
Channel 1 Left - Drag dot in surround pannier to top left.
Channel 2 Right - Drag dot in surround pannier to top right.
Channel 3 Centre - Drag dot in surround pannier to top left (and pan Centre percentage to 100%).
Channel 4 Left Surround - Drag dot in surround pannier to bottom left.
Channel 5 Right Surround - Drag dot in surround pannier to bottom right.
Channel 6 LFE - Drag dot in surround pannier centre (and pan LFE to 0gb).
Unless specified LFE and centre percent infinity db and 0%
Does this sound correct?

Channel 6 LFE - Drag dot in surround pannier centre (and pan LFE to 0gb).
If you do this, there will be output on LFE and Front Left/Front Right, but there only should be output in LFE. If you pan Centre to 100% there will be output on LFE and Centre - that's also wrong. I also don't know how to get output ONLY on LFE!
Besides, this is the right order for your Monos:
1: Left
2: Right
3: Left Surround
4: Right Surround
5: Centre
6. LFE

Similar Messages

  • Moving to another drive. Have I got this right?

    I hope you guys aren't as mean as your rep!   Arch has a reputation for being hard to install.  So, I decided that I would install to a USB hard drive and move it if I was successful.  Well it wasn't as bad as all that.   I have a working system with an xfce desktop and I like it.:)   So, time to run my Manjaro installation to a backup drive and move onto my laptop's main drive.  I think I know how I want to do it but, I'd like someone to check me.  Here are the steps I think I need to do:
    Use gparted to backup the existing partitions to another USB drive.  That's running now.
    Blow away the partitions on the main drive.
    Boot from a liveCD and use gparted to resize the partiions on the USB drive as needed and copy them where the partitions used to be on the main drive.
    Edit /etc/fstab to mount the right paritions to the right mount points.
    Modify grub to boot the arch installation.
    I should mention that the windows installation that came with the laptop is still on the main drive and I want to be able to boot into it and I'm not using UEFI.  I'm comfortable moving around the partitions and I have editted an fstab before.  I'm not so sure about grub...yet.  If you have a good link, please let me know.  As a last resort, I have a boot rescue disk that can probably handle it.  I've used it to straighten out worse but, I'd like to learn how to do it myself.
    So, did I miss anything?

    I did move successfully...sort of.  Some observations and a question.
    WonderWoofy you were right.  I was going to just move the partitions around with gparted because I could queue up all the operations and go to bed.  In the morning viola, everything the way I want it. It didn't quite work out.  Gparted got errors copying my /home partition.  So, I blew away what it copied, created a new partition, and rsynced the files in my home partition over.  That worked fine and I'm sure it was faster than copying the partition would have been.
    I got /etc/fstab editted and that worked fine.
    Now for the surprise.  Grub's not as dumb as it was last time I played with it.  It was a while back.  It might have even been lilo.  I wanted to boot off the install on my USB drive to mess with grub.  Forgive me, if you understand grub and this sounds dumb and please help me remedy my ignorance.  My bios was set to boot off the USB and there was a grub instance on there.  That instance was set to boot me into arch.  It looked like it found the arch partition on my main drive and booted into that.  It worked though.  So, I shut down and unplugged the USB and started back up.  A grub menu came up with two arch entries, two windows entries (One's the recover partition that came with the laptop) and two manjaro entries.  The ones I want seem to work.  I don't know what it'll try to boot if I select a manjaro entry.  I'd like to get rid of them though.
    I don't see anyplace grub could be detecting manjaro.  None of the web pages I can find that address editting that menu seem to speak about the grub setup I'm finding here.  Everything I've ever read on grub cautions against editting the grub.cfg directly but, I am tempted.  Any suggestions?
    EDIT:
    Never mind.  A more careful reading of the grub archwiki lead me to try this command:
    # grub-mkconfig -o /boot/grub/grub.cfg
    That did it.
    Last edited by MickeyRat (2013-06-14 01:01:54)

  • 16:9 with miniDV and iMovie - have I got this right?

    Hi everyone,
    Firstup I have a Sony DCR-TRV33E miniDV camera which I can set to 4:3 (default) or 16:9
    From your experience will the camera simply put black lines on top and bottom of the picture? i.e. letterboxed 4:3 video?
    Will iMovie assume the input is 16:9 so it will stretch out the letterboxed 4:3 from the camera creating an ultra widescreen and somewhat skewed video?
    I know I should just try it out but i'm moving jobs, 2nd baby is due in 2 weeks, etc. etc. simply rather try and learn a bit before I stuff around with it as time is short!
    Thanks for all tips!
    Cheers
    Jason

    Gruezi Jason,
    From your experience will the camera simply put black lines on top and bottom of the picture? i.e. letterboxed 4:3 video?
    There are two ways digital camcorders create 16:9 video:
    • simply by cropping (letterboxing) the footage.This goes for most camcorders
    • some camcorders have "oversized" CCDs and are thus able to stretch out the footage.
    In any case, both methods will result in loss of resolution (especially the first one) as not all the lines are used to display the video. See also Dan Slagle's Unofficial Movie FAQ:
    http://www.danslagle.com/mac/iMovie/tips_tricks/6004.shtml
    Will iMovie assume the input is 16:9 so it will stretch out the letterboxed 4:3 from the camera creating an ultra widescreen and somewhat skewed video?
    When shooting 16:9, the footage will be flagged as widescreen and can thus be recognized by iMovie as such. You'll need to create DV-PAL Widescreen projects to capture your video with the proper aspect ratio.
    hope this helps
    mish

  • Interfaces have i got this right?

    Hello folks just wondering if i've understood interfaces correctly.
    Interfaces are like a contract between user and serviceprovider.
    So basicly i could have a Interface Tool
    a class Monkey
    a class Hammer
    a class Ninja just for the sake of it
    and the code for Tool would be
    interface Tool{
          use();
    }and the code for hammer would be
    class Hammer implements Tool{
        void use(){
              //bang something
    }and the code for Ninja would be
    class Ninja implements Tool{
         void use{
               //throw some stars
    }and the code for Monkey would be
    class Monkey{
         Tool tool1=new Hammer();
         Tool tool2=new Ninja();
         void work(){
              tool1.use();
              tool2.use();
    }But what if Tool was a class and Hammer and Ninja extended Tool instead? Then what would be the point of using interfaces?
    Edited by: ColacX on Jul 19, 2009 5:40 AM

    It's both inheritance/polymorphism. Purely technically, there's hardly a reason for it. But interfaces are much more convenient.
    But imagine you want to test a method that takes an instance of type Tool as a parameter. If Tool is just an interface, you can create a basic implementation of it that supports your tests. This doesn't seem like much at first, but if the instantiation of the Tool class depends on several other classes in return, things start to get difficult to "mock". Like a ResultSet for instance - either quick-implement it to do what you need, or set up an entire database just for a unit test.
    Another advantage is that everyone who's programming against your API doesn't need to have the current class implementations. Just share the (more stable) interfaces with other teams, and they can program and test, even though your class is still under construction, too. Changes to the class also happen more often than changes to the interface.
    And of course, you can only extend from one class, but implement many interfaces.If Ninja already extends AsianWarrior, along with Samurai, you'll have a hard time making extend Tool as well. ;)
    ®

  • Have I Got This Right?  (RAM)

    Sorry to beat this dead horse, but I've gotten my info about Logic/OS X's use of RAM from different unclear sources, and I just wanted to run my understanding by you guys. How much of the following is true?
    1) Because Logic is a 32-Bit application, whether in Tiger or Leopard, it and all its AU plugins share a pool of RAM limited to 4GB, except:
    2) EXS24, which can access a separate 4GB per instance.
    3) Even if an AU plugin was 64-bit, it would still only have access to a part of Logic's pool of 4GB
    3) In Tiger, any application (32-bit or 64-bit) running alongside Logic can access its own additional memory up to 4GB.
    4) In Leopard, a 64-bit application can access much more than 4GB, but not Logic, because it is still 32-bit.
    THANKS!
    Context: trying to figure out what to do about running VSL SE on the same machine as Logic -- 4GB installed. I think I add 4GB and run VSL in Ensemble app?

    Running Vienne Ensemble standalone is the way it works. You can even make copies of the VE app and use more than one instance at the same time.
    Concerning logics RAM limitation: since VIs like Omnisphere use more and more of RAM this limitation is getting really anoying. I recently had a session where logic started to crash over and over until I found out that logic already had 2,7 gB of RAM assigned. I'm not sure if it's logic or if even leopard isn't really a 64 Bit system. Hopefully we don't have to wait another year until apple is able to provide a real 64 Bit system for his pro customers.
    best regards

  • I am being asked to upgrade to iCloud Drive but indications are that I will not be able to access up to date details on any of my documents on my Mac without going into iCloud first.  Have I got this interpretation right or can I save changes to acce

    I am being asked to upgrade to iCloud Drive but indications are that I will not be able to access up to date details on any of my documents on my Mac without going into iCloud first.  Have I got this interpretation right or can I save changes to access the new versions on my iMac?

    That is Apple's statement:
    Using iWork with iCloud Drive - Apple Support
    Options for iWork customers
    You can upgrade to iCloud Drive today if you want to keep your documents up to date in iOS 8 and OS X Yosemite, and you want to use the iWork web apps on iCloud.com and the Share via iCloud feature.
    You can upgrade to iCloud Drive later if you want to keep your documents up to date with your apps on iOS 7 or earlier and OS X Mavericks or earlier.
    Upgrade to iCloud Drive today
    To access the most recent versions of your documents from a Mac with OS X Mavericks or earlier, you’ll need to go to iCloud.com and access Pages, Numbers, and Keynote from there. On a PC, you can install iCloud for Windows and set up iCloud Drive.
    If you upgrade to iCloud Drive now:
    Your documents will keep up to date across devices with iOS 8, Macs with OS X Yosemite, PCs with iCloud for Windows, and iCloud.com.
    Your documents will no longer keep up to date on devices with iOS 7 and Macs with OS X Mavericks or earlier.
    You’ll be able to use the iWork web apps on iCloud.com.
    You’ll be able to use the Share via iCloud feature with iOS 8, OS X Yosemite, and iCloud.com.
    Documents you previously shared via iCloud will be accessible to collaborators.
    Upgrade to iCloud Drive later
    Note that until you upgrade your iCloud account to iCloud Drive, you won’t be able to use the iWork web apps on iCloud.com or the Share via iCloud feature.     If you don’t upgrade to iCloud Drive at this time:
    Your documents will keep up to date across devices with iOS 8 and across devices with iOS 7 and Macs with OS X Mavericks or earlier.
    You won’t be able to use the iWork web apps on iCloud.com.
    You won’t be able to use the Share via iCloud feature.
    Documents you previously shared via iCloud won’t be accessible to collaborators until you upgrade to iCloud Drive.

  • Surround Sound Mix

    I recently got a new computer, and I ported over my sound card, Audigy LS. I got the drivers "OK" and everything, it works. But I use ventrilo, and when I talk on my mic, it's all weird. B4 with the CD I was able to install something like a "Surround Sound Mixer" that had a bunch of different levels that I could change say the volume, or my input and what not, is there a way to download this by itself? Thx for any and all help!Message Edited by smp on 07-28-2005 09:42 PM

    If you want to treat left and right separately, like the left channel of your first pair is NOT hard left, then you should make dual mono versions, and then you will get a panner for each, one for the left, and one for the right. But if you want them hard left and right, you can either use the surround panner and put the dot center-forward and center-rearward, or you can assign the tracks to go discreet to outs 1-2 for the front, and 3-4 for the rear. But one dot in the center full forward will give you full stereo in the front. I also use the Quadro setting in the panner, as opposed to the 5.1 with a center channel, assuming of course that there isn't a center channel.

  • Surround Sound Mixing

    I am editing a concert and using 4 tracks of audio. 2 tracks come from the live mixing board and 2 come from the mics on the camera. I mixed the 4 audio channels in FCP and it sounds beautiful in stereo. Now I want to make a surround sound mix. I took the mixed audio into Soundtrack Pro and used the surround sound mixer for each channel. Imported back in FCP, burned a DVD, took it home and listened last night and it sounded pretty good but the crowd applause was not loud enough.
    I just need to know what the proper way to surround sound a concert would be. Should I do all my mixing in STP? Any help on this issue would be greatly appreciated. Thanks.

    Unlike film, there aren't too many rules when mixing 5.1 or surround in music. I would suggest you get a few concert DVDs or DVD-A or SAC-D music releases and listen to the many different approaches. Some are mostly stereo with ambience in the rear. Some are more what used to be called Quadraphonic, L,R,Ls,Rs, and some are more 5.1 like film with vocal in the C and selected music in L,R,Ls,Rs.
    Since you only have stereo and ambience you probably gonna have to stick with the stereo front, ambience rear approach unless you use some upmixing technology. You could also use reverb and delays to create more of a rear channel.

  • How to Marry Video to Surround Sound Mix?

    We're getting a surround sound mix from our post house and we have the choice of .AIFF, AC3, OMF, DAT. How can I take that mix and marry it to the video we have in order to make one MPEG 2 program stream file? And is Compressor the right app for it? Or should I use DVD Studio Pro? I'm reluctant to use DVDSP because we don't need .vob files, just a MPEG 2 video stream.

    I have often "married" AIF audio files to MPEG 2 video using only the Quicktime Player App (Pro license needed, though). I take the separate output files from Compressor and open each in Quicktime Player.
    Then Select All of the AIF file, copy, then click on the window for the MPEG 2 file and choose "Add to Selection & Scale" from the edit window, then save the MPEG 2 file. You can look at the movie properties of the MPEG2 file to verify that it now has an audio track. You should probably play it all through as well just to be sure it's not out of sync (I've never found that to be the case, though).
    Ok, so here are the caveats:
    Surround sound typically is an AC3 file and I don't think you can open those in Quicktime.
    Even if you can, I think AC3 has a rule about being evenly divisible (or something like that) so it rounds up or down on the time. That could lead to sync problems. The advantage with AIF in using output from Compressor files is, assuming they were exported to the batch correctly, you know they'll be the same time length and thus syncable.
    Finally, consider how you are distributing the file if not via DVD. Most people don't have MPEG 2 codecs with their Quicktime player. Even if the movie has a standard .mov extension, they will not be able to open MPEG2 movies with or without sound tracks. To make it playable for the masses you'll need to export the new movie using a more ubiquitous codec.
    But, overall, the marriage of MPEG2 and an audio track is easily done as described, above.
    Dual 2GHz PowerPC G5, Dual 500MHz PowerPC G4, G3 iBook   Mac OS X (10.4)  

  • I have just got this error on my Windows 8.1 PC in Adobe Premiere Elements 13:"Premiere Elements has encountered an error" -- [c:\adobe\pre\main\mediacore\mediafoundation\api\inc\Keyframe/Keyframe.h-142]

    I have just got this error on my Windows 8.1 PC in Adobe Premiere Elements 13:"Premiere Elements has encountered an error" --> [c:\adobe\pre\main\mediacore\mediafoundation\api\inc\Keyframe/Keyframe.h-142]. I have found different solution on how to fix it, but it's still hard to find where to change "," to ".". When I try to change my .prel file to a .xml it all shows symbols, letters and numbers, not only numbers like a have seen others. I have a LLOOONNNGGG movie to fix. Can anyone help?

    Hoerup
    Thanks for the update. Sorry that the news was not better.
    There are several cases of keyframe error 142 being reporting, some for version 12 and some for version 13.
    In your case, we may be able to get some help from Adobe via its Adobe Chat since you have purchased, registered, latest version
    Premiere Elements.13. Let us see what Adobe Chat can do for us. Please click on the following link
    Contact Customer Care
    Premiere Elements
    Premiere Elements
    Adobe ID, Signing In
    Adobe ID, Sign In, Account Help
    Chat Panel
    If the link does not hold its set, then you will need to navigate to Chat Panel using the above links.
    As of a moment ago, the Chat Panel was seen to be active. The titles are not ideal, but they do lead
    to an active Chat Panel. I am hoping that the representative whom you reach can answer your question more
    fully or transfer you to an Adobe group which can.
    We will be watching for further developments.
    Best wishes
    ATR

  • Ideal Surround Sound Mixing Levels for Music

    Hi all,
    When using Soundtrack Pro and you mix in Surround sound there are little dots by each speaker and there are more dots for how louder you want the sound to be by that speaker.
    My earlier attempts at surround sound have finally worked but the music is so low in the rear speakers that you'd never hear it unless you put your ear to the speaker. Then again I don't want to up it too loud either.
    Is there anyone that's familiar with professional audio editing that have any suggestions on typical ideal levels (in dots) by each speaker so that the music really fills the room?

    Have you tried posting this question here...
    http://discussions.apple.com/forum.jspa?forumID=743
    Someone here may have answers, but the STP forum should have some core users with info as well.
    K

  • Have I done this right? (Restoring from Time Machine Backup)

    This morning I turned on the iMac, it came up with the apple logo and a loading bar, which fills up within about 5-10 minutes and then the computer turns off.
    After research apparently this was harddrive problems.
    As I have Time Machine Backups I went into Disk Utility, (this was after reading some previous answers to questions) erased Macintosh HD, left disk utility and now have started a full restore of Time Machine Backup of a few days ago - says it will take 4 hours. Have I missed anything? Was I mean't to install a clean version of lion and then make the time machine backup? or have I done it right and gone straight to restoring a time machine backup
    Thanks

    You've done it right, but you may still have problems. The internal drive has malfunctioned once and may do so again. In that case, you'll have to replace the drive (or less likely, some other component.)

  • Want to check if Iv'e got this right:  PC External Drive    PC Mac

    Hi,
    I'm going to attempt something and I just want to make sure I'm doing it right (I've searched the forums and this is what I've come up with).
    I have an iPod formatted to a Windows XP computer and all my iTunes on that computer.
    STEP 1:
    I want to move my entire iTunes library off the C drive and onto an external hard drive (I'm out of space on my computer and will erase the library from the C drive once the transfer is done, leaving the library only in the external drive).
    I assume this is what I need to do?
    http://docs.info.apple.com/article.html?artnum=301748
    I've read in the forums that sometimes there are problems with the iPod recognizing/synching to the new drive -- but I'm assuming if I follow the procedures in that tutorial then any problems I have can be fixed (i.e., By transferring in that way I'm NOT doing any permenant damage to my library, filelists, labels, etc.) -- correct?
    I just want to check this before I do Step 1.
    STEP 2
    About 6 months from now I expect to get a new computer, and I expect it to be a Mac. I would want to transfer all my music to the Mac and discard my current PC. There's lots of stuff on the board about doing this. E.g.,
    http://docs.info.apple.com/article.html?artnum=93367
    My one question now -- which is probably a silly one -- is this: Is the fact that all my music will need to be transferred from my PC's external hard drive (as opposed to the internal C drive) cause any significant additional problems? I think the answer is no but I just want to make sure.
    Any clarification you can give on this would be appreciated. Thanks.
    iPod   Windows XP Pro  

    Thanks. I've got one related one.
    Let's say I copy everything to my external hard drive but -- for the time being -- still leave the original on my c drive. Is there a way to test that the iTunes is working off of the external drive?
    In other words, before erasing the songs on the C drive, can I do this and check to see that iTunes works with the external, the iPod interfaces with the external, etc. And then when I'm sure, erase the stuff on the C drive?
    If so, how do I go about verifying this?
    By the way, all of these songs are in mp3 format.
    thanks,

  • Have I got the right set-

    I'm a VERY new owner of a Zen Touch 40gb. I have bought it because I teach dancing and wanted it to replace my portable stereo that I've borrowed from my daughter and hasn't got too much volume to it. I bought the Creative Megaworks 2. speaker system to go with it and have plugged the player into the speakers via the headphone socket and it sounds quite loud when you've got the volume up on the player. I am wondering, though if this is going to be powerful enough to play in a community hall and also if I can connect a head-michrophone to it as well. Can anybody give me any guidance on these matters, please.

    Well, it really depends on the power (wattage) of the speaker system that you intend to connect the player to, and also how big the area is that you want to fill with sound. I can't guarantee that your potable sound system will be sufficient for the task. It maybe wise to use a bigger stereo system (with a line-in input) so that you can plug players output into the amplifier.
    I used my player in a large hall awhile back and used a separate amplifier and speakers, this did the trick but if the area is rather large and then when full I would recommend that you use something with a bit more power (25 Watts at least)
    using a headphone splitter, available from most good Hi-Fi stores you can plug in you stereo and headphones too so you can monitor the sound, if you want to speak in to a microphone then you'll need a separate connection to your stereo.
    Hope that this is of some help to you.
    2027746 - A proud owner of a Creative Zen Touch 40 GB

  • Why have I got this small gap?

    Hello.
    In IE6 I'm seeing a small white gap above the crest in the
    sidebar on
    www.hcmm.org.uk. I know that this is something to do with the
    #top div
    that I've got there but I can't fix it. It looks fine in FF
    and Safari.
    Can anyone suggest anything please?
    Thanks
    Vix

    OK. here it is:
    <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
    <!--#include file="../Connections/hcmm.asp" -->
    <%
    Dim rsGetBanner__MMColParam
    rsGetBanner__MMColParam = "Active"
    If (Request("MM_EmptyValue") <> "") Then
    rsGetBanner__MMColParam = Request("MM_EmptyValue")
    End If
    %>
    <%
    Dim rsGetBanner
    Dim rsGetBanner_numRows
    Set rsGetBanner = Server.CreateObject("ADODB.Recordset")
    rsGetBanner.ActiveConnection = MM_hcmm_STRING
    rsGetBanner.Source = "SELECT * FROM tblBanners WHERE Status =
    '" +
    Replace(rsGetBanner__MMColParam, "'", "''") + "' AND
    StartDate <= Now()
    AND EndDate >= Now()"
    rsGetBanner.CursorType = 0
    rsGetBanner.CursorLocation = 2
    rsGetBanner.LockType = 1
    rsGetBanner.Open()
    rsGetBanner_numRows = 0
    %>
    <%
    Dim MM_paramName
    %>
    <%
    ' *** Go To Record and Move To Record: create strings for
    maintaining
    URL and Form parameters
    Dim MM_keepNone
    Dim MM_keepURL
    Dim MM_keepForm
    Dim MM_keepBoth
    Dim MM_removeList
    Dim MM_item
    Dim MM_nextItem
    ' create the list of parameters which should not be
    maintained
    MM_removeList = "&index="
    If (MM_paramName <> "") Then
    MM_removeList = MM_removeList & "&" &
    MM_paramName & "="
    End If
    MM_keepURL=""
    MM_keepForm=""
    MM_keepBoth=""
    MM_keepNone=""
    ' add the URL parameters to the MM_keepURL string
    For Each MM_item In Request.QueryString
    MM_nextItem = "&" & MM_item & "="
    If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then
    MM_keepURL = MM_keepURL & MM_nextItem &
    Server.URLencode(Request.QueryString(MM_item))
    End If
    Next
    ' add the Form variables to the MM_keepForm string
    For Each MM_item In Request.Form
    MM_nextItem = "&" & MM_item & "="
    If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then
    MM_keepForm = MM_keepForm & MM_nextItem &
    Server.URLencode(Request.Form(MM_item))
    End If
    Next
    ' create the Form + URL string and remove the intial '&'
    from each of
    the strings
    MM_keepBoth = MM_keepURL & MM_keepForm
    If (MM_keepBoth <> "") Then
    MM_keepBoth = Right(MM_keepBoth, Len(MM_keepBoth) - 1)
    End If
    If (MM_keepURL <> "") Then
    MM_keepURL = Right(MM_keepURL, Len(MM_keepURL) - 1)
    End If
    If (MM_keepForm <> "") Then
    MM_keepForm = Right(MM_keepForm, Len(MM_keepForm) - 1)
    End If
    ' a utility function used for adding additional parameters to
    these strings
    Function MM_joinChar(firstItem)
    If (firstItem <> "") Then
    MM_joinChar = "&"
    Else
    MM_joinChar = ""
    End If
    End Function
    %>
    <%
    ' *** Logout the current user.
    MM_Logout = CStr(Request.ServerVariables("URL")) &
    "?MM_Logoutnow=1"
    If (CStr(Request("MM_Logoutnow")) = "1") Then
    Session.Contents.Remove("MM_Username")
    Session.Contents.Remove("MM_UserAuthorization")
    MM_logoutRedirectPage = "../index.asp"
    ' redirect with URL parameters (remove the "MM_Logoutnow"
    query param).
    if (MM_logoutRedirectPage = "") Then MM_logoutRedirectPage =
    CStr(Request.ServerVariables("URL"))
    If (InStr(1, UC_redirectPage, "?", vbTextCompare) = 0 And
    Request.QueryString <> "") Then
    MM_newQS = "?"
    For Each Item In Request.QueryString
    If (Item <> "MM_Logoutnow") Then
    If (Len(MM_newQS) > 1) Then MM_newQS = MM_newQS &
    MM_newQS = MM_newQS & Item & "=" &
    Server.URLencode(Request.QueryString(Item))
    End If
    Next
    if (Len(MM_newQS) > 1) Then MM_logoutRedirectPage =
    MM_logoutRedirectPage & MM_newQS
    End If
    Response.Redirect(MM_logoutRedirectPage)
    End If
    %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN"
    http://www.w3.org/TR/html4/loose.dtd">
    Gary White wrote:
    > On Thu, 04 Jan 2007 16:40:48 +0000, Vix
    <[email protected]> wrote:
    >
    >> I can't get rid of that gap. In DW I have some ASP
    code directly above
    >> it, but the doctype immediately follows the final
    %> so I don't know
    >> what to do to get rid of it.
    >
    >
    > Show me what you have above the doctype.
    >
    > Gary

Maybe you are looking for

  • Change printing default presets?

    Whenever I print, currently on an Epson NX420, I have to go in and change one of the presets for color options to OFF (no color adjustments) and I'd like this to be the default. Some pages seem to take a very long time to print if I haven't changed t

  • Mouse and Apple TV issue

    My mouse is not working on my mac, I changed the batteries and followed the support info but nothing worked. I have a solid green light and am able to click but it will not move the arrow location. Also I just tried to log into my apple tv to watch a

  • Mathematical formula for even dashed lines?

    Is there a mathmatical formula for getting evenly distributed dashed lines in Illustrator? Something involving Pi, I assume. I usually get double dashes next to each other or unevenly distributed dashes. For example, I have a stroked circle with a wi

  • Access registry (read/write) from java

    Hi folks, I'm struggeling with a Java/COM bridge to read/write the registry from my java application. The documentation from Sun on this is very sparely. Would be grateful for any hints! Regards, C.H. Liljegren

  • Suddenly can't publish to Business Catalyst

    I'm suddenly unable to upload my site to Business Catalyst. When I try to do so, I get a dialog box named Publish, that says "Signing into Business Catalyst," with a spinning ball. Intermittently, I also get an error dialog box labeled "Adobe Busines