HELP tweaking TV @nywhere

I was wondering if it is possible to tweak the settings on the TV @nywhere card. I mean settings like the PAL and NTSC settings. I need to have a setting for "artificial" PAL, wich would be regular PAL settings but with only 525 lines instead of 625 . Is this possible?

Sorry, I haven't used the software in months and it's installed on my dad's computer, so I'm going by memory here. In the settings panel (the wrench icon in MSIPVS), There's a tab I believe is called "Record." You will see a list of profiles that you can choose from (pre-defined and user defined). From here you should be able to clone the settings. Number of vertical lines should be one of them.
Hope this helps.

Similar Messages

  • [OT] Need Help Tweaking Photos in Photoshop

    Although I know Photoshop fairly well, I am a novice in this general area of tweaking photos ... and could use some help.
    I have some inferior photos that I would like to do my best to fix up in Photoshop CS2. Many of them somehow turned out quite faded ... I am not sure why.
    I have posted one of these photos as an example on the Web. I would be interested in finding out the best quick way to tweak these pictures and make them more presentable. Feel free to just take a look or, if you would like, download the photo into Photoshop and let me know the best way to proceed.
    Location:
    http://www.brainbeast.com/pic/
    - I have fooled with :
    Image - adjustments - levels ... and moved the left and right arrows to the edge of the data areas and that seems to help ... however I'm not sure what to do with the Middle arrow - etc...
    - Also - I fooled around with the exposure adjustment and also the shadow/highlight adjustment ... however from my limited knowledge - they all sort of seem to do the same thing - and I'm not sure which method or combination of techniques is best.
    Q: Can someone help give me some suggestions as to how to proceed?
    Any help would be greatly appreciated - RevDave

    I find that using the Levels control (Command-L) is a little more intuitive than the Curves. I would seem to have problems with dragging the right direction but that's my issue. The Levels has an auto button that will get you very close to what mebs produced. You can then move the sliders to fine tune it.
    Both ways will clean up the photo. It's just which way you're more comfortable with. Good luck.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.

  • Help tweaking Spry accordion panel code!

    Hello all,
    I'm currently working on an information portal for a client and am having trouble with creating code to open a specific accordion panel on another html page without messing up the code so that the accordion panels have adjustable heights based on content.
    The website has an Interactive Map page, which has some tooltips that have links to the Nurseries page. The Nurseries page has accordion panels with nursery entries ordered by province; anchor links were added to nursery entries that are linked to the Map page. In theory, when a user clicks on a "Click here for information" link on the Map page, the Nurseries page will load and automatically open the exact panel where the entry is housed with the exact entry showing at the top of the browser window. So I tested it out and it works exactly as I want it to, HOWEVER, the adjustable height feature that I added to the accordion panels on the Nurseries page now no longer works (now there are scrollbars on the right if the height exceeds the default height), AND all the panels by default are open instead of closed!
    Here is the pertinent code that I am using on the NURSERIES page:
    <script src="../SpryAssets/SpryAccordion.js" type="text/javascript"></ script>
    <link href="../SpryAssets/SpryAccordion.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript" src="SpryAssets/SpryURLUtils.js"></ script>
    <script type="text/javascript"> var params = Spry.Utils.getLocationParamsAsObject(); </script>
    <script type="text/javascript"> var Accordion1 = new Spry.Widget.Accordion("Accordion1", { useFixedPanelHeights: false, defaultPanel: params.panel ? params.panel: 0 });
    </script>
    This is the code I added to one of the tooltips on the MAP page:
    <a href="nurseries.html?panel=9#mangatarem" title="Go to native species nursery listing" target="_blank">
    What do I need to do in order for this to work? I tried reordering the code to read { defaultPanel: params.panel ? params.panel:
    0, useFixedPanelHeights: false  } and even tried combining the two { useFixedPanelHeights: params.panel ? true: false } but nothing worked. Any suggestions?
    Many thanks in advance for your assistance!!
    Joy

    Hi Joy,
    Without going to a lot of trouble in writing an onload event, the following method is feasable
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8" />
    <title>Untitled Document</title>
    <link href="SpryAssets/SpryAccordion.css" rel="stylesheet" />
    <style>
    .region {
        color: #090;
        font-size: 1.2em;
        font-weight: bold;
        line-height: 2em;
    </style>
    <script src="SpryAssets/SpryAccordion.js"></script>
    <script src="SpryAssets/SpryURLUtils.js"></script>
    <script> var params = Spry.Utils.getLocationParamsAsObject(); </script>
    </head>
    <body>
    <div id="acc" class="Accordion" tabindex="0">
      <span class="region">Luzon</span>
      <div class="AccordionPanel">
        <div class="AccordionPanelTab">Label 1.1</div>
        <div class="AccordionPanelContent">
          <div class="nurseryProfile">
            <table border="0" >
              <tr>
                <th width="122" class="nurseryCategory" scope="row" >Location:</th>
                <td width="422">Morong; Bataan</td>
              </tr>
              <tr>
                <th scope="row" class="nurseryCategory">Institution:</th>
                <td>Center for Biomolecular Science</td>
              </tr>
              <tr>
                <th scope="row" class="nurseryCategory">Contact Person:</th>
                <td>Dr. Lourdes J Cruz <br />
                  [email protected]</td>
              </tr>
              <tr>
                <th scope="row"  class="nurseryCategory">Species Available:</th>
                <td> </td>
              </tr>
            </table>
          </div>
        </div>
      </div>
      <div class="AccordionPanel">
        <div class="AccordionPanelTab">Label 1.2</div>
        <div class="AccordionPanelContent">Content 1.2</div>
      </div>
      <span class="region">Visayas</span>
      <div class="AccordionPanel">
        <div class="AccordionPanelTab">Label 2.1</div>
        <div class="AccordionPanelContent">Content 2.1</div>
      </div>
      <div class="AccordionPanel">
        <div class="AccordionPanelTab">Label 2.2</div>
        <div class="AccordionPanelContent">Content 2.2</div>
      </div>
      <span class="region">Mindanao</span>
      <div class="AccordionPanel">
        <div class="AccordionPanelTab">Bukidnon Province</div>
        <div class="AccordionPanelContent">
          <div class="nurseryProfile">
            <table border="0" >
              <tr>
                <th width="122" class="nurseryCategory" scope="row" >Location:</th>
                <td width="422">San Vincente; Baungon; Bukidnon</td>
              </tr>
              <tr>
                <th scope="row" class="nurseryCategory">Institution:</th>
                <td>Kalangan San Vincente Farmer’s Association</td>
              </tr>
              <tr>
                <th scope="row"  class="nurseryCategory">Contact Person:</th>
                <td>Mr.  Nonito Antoque <br />
                0926 904 7336</td>
              </tr>
              <tr>
                <th scope="row"  class="nurseryCategory">Species Available:</th>
                <td> </td>
              </tr>
            </table>
          </div>
          <hr width="565" align="center"/>
          <div class="nurseryProfile">
            <table border="0" >
                <tr>
                  <th width="122" class="nurseryCategory" scope="row" >Location:</th>
                  <td width="422">Brgy. Imbayao; Malaybalay City; Bukidnon</td>
                </tr>
                <tr>
                  <th scope="row" class="nurseryCategory">Institution:</th>
                  <td>DENR Community-Based Rainforestation Project</td>
                </tr>
                <tr>
                  <th scope="row"  class="nurseryCategory">Contact Person:</th>
                  <td>Mr. Felix Mirasol (CENRO &amp; PASU)<br />
                  [email protected]</td>
                </tr>
                <tr>
                  <th scope="row"  class="nurseryCategory">Species Available:</th>
                  <td> </td>
                </tr>
            </table>
          </div>
        </div>
      </div>
      <div class="AccordionPanel">
        <div class="AccordionPanelTab">Compostela Valley Province</div>
        <div class="AccordionPanelContent">
            <div class="nurseryProfile">
            <table border="0" >
                <tr>
                  <th width="122" class="nurseryCategory" scope="row" >Location:</th>
                  <td width="422">Maragusan; Compostela Valley</td>
                </tr>
                <tr>
                  <th scope="row" class="nurseryCategory">Institution:</th>
                  <td>Kasilak Development Foundation</td>
                </tr>
                <tr>
                  <th scope="row"  class="nurseryCategory">Contact Person:</th>
                  <td>Joemil Montebon<br />[email protected]</td>
                </tr>
                <tr>
                  <th scope="row"  class="nurseryCategory">Species Available:</th>
                  <td> </td>
                </tr>
            </table>
          </div>
        </div>
      </div>
    </div>
    <script>
        var acc = new Spry.Widget.Accordion("acc", { defaultPanel: params.panel ? params.panel: 0 });
    </script>
    </body>
    </html>
    Notes:
    Apart from the 14 errors created by the table elements and their style rules, the above document is HTML5 validated.
    The panels count include the <span>'s so that panel 0 is Luzon and panel 1 is the first accordion panel
    Because the <span>'s are part of the accordion, they take on the accordion style rules so that you will have to tweak them.
    I hope this helps.
    Ben

  • NEED HELP TWEAKING MY .mov - dunno if it can be done!

    Okay. PLEASE HELP ME I own a commercial photography studio and we do lots of retouching. One of the things we like to do from time to time is create little movies in either iMovie or iPhoto that show each individual layer in the photoshop file, almost like a flipbook animation from beginning to end. We've done this for our laptops, iPads, and even discs we mail out. But now we want to put these on our website:
    Here is what I need to be able to do:
    1. Need to customize the exported file so that it has a specific pixel dimension - so one might be 740w X 320h, and another 640w X 780h. Each would vary, but would be tight to the image (no border)
    2. Need to be able to have each slide/image play for less than 1 second! Preferably in the .2 ~ .5 range- sometimes, we add music and I like to adjust the speed so I can sync the beats to each slide rolling in.
    3. Need to be able to add music
    4. I WANT to be able to have NO TRANSITIONS between each image- for some reason, iPhoto keeps adding a dissolve between each and I can't seem to get rid of it- I uncheck the boxes, or even leave them checked with "none"
    5. Need to be able to export as a .mov
    Can you tell me what to use to create this? If I use iMovie, then I can't specify the dimensions- unless I'm missing something, I always end up with black bars horizontally or vertically, because my images aren't exact fits in their presets... Everything else would be perfect though, from accurate timing to music, etc. I wish I could use iMovie, but I can't seem to create exact dimensions... If I use iPhoto, then I can't change the slides to play less than 1 sec each, AND I can't get rid of the dissolves between each...
    Anyone?

    For that kind of close editing you need Final Cut Express.
    You can specify the the dimensions, you can do sub-second editing and you can have simple cuts between shots with no transitions.
    Regards
    TD

  • Need some help tweaking the supersized jquery plugin

    Hi, I'm using this plugin http://www.buildintearnet.com/2010/11/supersized-3-0-full-screen-background-slideshow-jque ry-plugin/ on my site here - http://www.blackpaint.co.uk/new/
    The plugin cycles through as many images as yuo tell it to, when it reaches the last image it starts from the beginning again. I would like to make it through 3 images and then stop on the last.
    here is the code:
    <!--START SCRIPT FOR BG IMAGES CHANGE -->
         <script type="text/javascript" src="supersized3/supersized.3.0.js"></script>
         <script type="text/javascript"> 
              $(function(){
                   $.fn.supersized.options = { 
                        startwidth: 640, 
                        startheight: 377,
                        vertical_center: 1,
                        slideshow: 1,
                        navigation: 0,
                        thumbnail_navigation: 0,
                        transition: 1, //0-None, 1-Fade, 2-slide top, 3-slide right, 4-slide bottom, 5-slide left
                        pause_hover: 0,
                        slide_counter: 0,
                        slide_captions: 0,
                        slide_interval: 200,
                        slides : [
                             {image : 'supersized3/slides/1.jpg'},{image : 'supersized3/slides/2.jpg'},
                             {image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},{image : 'supersized3/slides/3.jpg'},
                 $('#supersized').supersized();
         </script>
        <!--END SCRIPT FOR FONT BG IMAGES CHANGE -->
    As you can see, my clunky work-around is to simply to repeat the last image over and over again - not very elegant and I imagine it uses up the users RAM.
    Any suggestions of how to go about fixing this? Please note, I'm terrible with javascript syntax as of yet.
    Many thanks for any help,
    Luke

    I have an altered version of the .js file that is meant to be able to control playback etc. But it's not working for me if I just replace my existing file with this one (obviously).
    Any ideas on how to control this code? Here it is:
    (function($){
         //Resize image on ready or resize
         $.fn.supersized = function() {
              $.inAnimation = false;
              $.paused = false;
              var options = $.extend($.fn.supersized.defaults, $.fn.supersized.options);
              $.currentSlide = options.start_slide - 1;
              /******Set up initial images -- Add class doesnt work*****/
              //Set previous image
              var imageLink = (options.slides[options.slides.length - 1].url) ? "href='" + options.slides[options.slides.length - 1].url + "'" : "";
              $("<img/>").attr("src", options.slides[options.slides.length - 1].image).appendTo("#supersized").wrap("<a " + imageLink + "></a>");//Doesnt account for start slide
              //Set current image
              imageLink = (options.slides[$.currentSlide].url) ? "href='" + options.slides[$.currentSlide].url + "'" : "";
              $("<img/>").attr("src", options.slides[$.currentSlide].image).appendTo("#supersized").wrap("<a class=\"activeslide\" " + imageLink + "></a>");
              //Set next image
              imageLink = (options.slides[$.currentSlide + 1].url) ? "href='" + options.slides[$.currentSlide + 1].url + "'" : "";
              $("<img/>").attr("src", options.slides[$.currentSlide + 1].image).appendTo("#supersized").wrap("<a " + imageLink + "></a>");
              $(window).bind("load", function(){
                   $('#loading').hide();
                   $('#supersized').fadeIn('fast');
                   $('#controls-wrapper').show();
                   if (options.thumbnail_navigation == 1){
                        /*****Set up thumbnails****/
                        //Load previous thumbnail
                        $.currentSlide - 1 < 0  ? prevThumb = options.slides.length - 1 : prevThumb = $.currentSlide - 1;
                        $('#prevthumb').show().html($("<img/>").attr("src", options.slides[prevThumb].image));
                        //Load next thumbnail
                        $.currentSlide == options.slides.length - 1 ? nextThumb = 0 : nextThumb = $.currentSlide + 1;
                        $('#nextthumb').show().html($("<img/>").attr("src", options.slides[nextThumb].image));
                   $('#supersized').resizenow();
                   if (options.slide_captions == 1) $('#slidecaption').html(options.slides[$.currentSlide].title);//*********Pull caption from array
                   if (options.slide_autoplay == 0) $('#pauseplay').hide();
                   if (options.navigation == 0) $('#navigation').hide();
                   if (options.thumbnail_navigation == 0){ $('#nextthumb').hide(); $('#prevthumb').hide(); }
                   //Slideshow
                   if (options.slideshow == 1){
                        if (options.slide_counter == 1){ //Initiate slide counter if active
                             $('#slidecounter .slidenumber').html(options.start_slide);
                            $('#slidecounter .totalslides').html(options.slides.length); //*******Pull total from length of array
                        if (options.slide_autoplay == 1) slideshow_interval = setInterval(nextslide, options.slide_interval);
                        function resetSlideInterval() {
                             if (options.slide_autoplay == 1){
                                  clearInterval(slideshow_interval);
                                  if(!($.paused)) slideshow_interval = setInterval(nextslide, options.slide_interval);
                        if (options.thumbnail_navigation == 1){
                             //Thumbnail Navigation
                             $('#nextthumb').click(function() {
                                 if($.inAnimation) return false;
                                 nextslide();
                                 resetSlideInterval();
                                 return false;
                            $('#prevthumb').click(function() {
                                 if($.inAnimation) return false;
                                prevslide();
                                resetSlideInterval();                      
                                return false;
                        if (options.navigation == 1){ //Skip if no navigation
                             $('#navigation a').click(function(){ 
                                     $(this).blur(); 
                                     return false; 
                             //Slide Navigation
                            $('#nextslide').click(function() {
                                 if($.inAnimation) return false;
                                 nextslide();
                                  resetSlideInterval();
                                 return false;
                            $('#prevslide').click(function() {
                                 if($.inAnimation) return false;
                                prevslide();
                                resetSlideInterval();
                                return false;
                            $('#nextslide').mousedown(function() {
                                     $(this).attr("src", "images/supersized/forward.png");
                             $('#nextslide').mouseup(function() {
                                 $(this).attr("src", "images/supersized/forward_dull.png");
                             $('#nextslide').mouseout(function() {
                                 $(this).attr("src", "images/supersized/forward_dull.png");
                             $('#prevslide').mousedown(function() {
                                 $(this).attr("src", "images/supersized/back.png");
                             $('#prevslide').mouseup(function() {
                                 $(this).attr("src", "images/supersized/back_dull.png");
                             $('#prevslide').mouseout(function() {
                                 $(this).attr("src", "images/supersized/back_dull.png");
                             if (options.slide_autoplay == 1){
                                  //Play/Pause Button
                                  $('#pauseplay').click(function() {
                                       if($.inAnimation) return false;
                                       var src = ($(this).attr("src") === "images/supersized/play.png") ? "images/supersized/pause.png" : "images/supersized/play.png";
                                       if (src == "images/supersized/pause.png"){
                                            $(this).attr("src", "images/supersized/play.png");
                                            $.paused = false;
                                            slideshow_interval = setInterval(nextslide, options.slide_interval); 
                                       }else{
                                            $(this).attr("src", "images/supersized/pause.png");
                                            clearInterval(slideshow_interval);
                                            $.paused = true;
                                       $(this).attr("src", src);
                                       return false;
                                  $('#pauseplay').mouseover(function() {
                                       var imagecheck = ($(this).attr("src") === "images/supersized/play_dull.png");
                                       if (imagecheck){
                                            $(this).attr("src", "images/supersized/play.png");
                                       }else{
                                            $(this).attr("src", "images/supersized/pause.png");
                                  $('#pauseplay').mouseout(function() {
                                       var imagecheck = ($(this).attr("src") === "images/supersized/play.png");
                                       if (imagecheck){
                                            $(this).attr("src", "images/supersized/play_dull.png");
                                       }else{
                                            $(this).attr("src", "images/supersized/pause_dull.png");
                                       return false;
              $(document).ready(function() {
                   $('#supersized').resizenow();
              if (options.slide_autoplay == 1){
              //Pause when hover on image
                   $('#supersized').hover(function() {
                        if (options.slideshow == 1 && options.pause_hover == 1){
                             if(!($.paused) && options.navigation == 1){
                                  $('#pauseplay').attr("src", "images/supersized/pause.png");
                                  clearInterval(slideshow_interval);
                        if($.inAnimation) return false; //*******Pull title from array
                   }, function() {
                        if (options.slideshow == 1 && options.pause_hover == 1){
                             if(!($.paused) && options.navigation == 1){
                                  $('#pauseplay').attr("src", "images/supersized/pause_dull.png");
                                  slideshow_interval = setInterval(nextslide, options.slide_interval);
                             //*******Pull title from array
              $(window).bind("resize", function(){
                  $('#supersized').resizenow();
              $('#supersized').hide();
              $('#controls-wrapper').hide();
         //Adjust image size
         $.fn.resizenow = function() {
              var t = $(this);
              var options = $.extend($.fn.supersized.defaults, $.fn.supersized.options);
                return t.each(function() {
                   //Define image ratio
                   var ratio = options.startheight/options.startwidth;
                   //Gather browser and current image size
                   var imagewidth = t.width();
                   var imageheight = t.height();
                   var browserwidth = $(window).width();
                   var browserheight = $(window).height();
                   var offset;
                   //Resize image to proper ratio
                   if ((browserheight/browserwidth) > ratio){
                       t.height(browserheight);
                       t.width(browserheight / ratio);
                       t.children().height(browserheight);
                       t.children().width(browserheight / ratio);
                   } else {
                       t.width(browserwidth);
                       t.height(browserwidth * ratio);
                       t.children().width(browserwidth);
                       t.children().height(browserwidth * ratio);
                   if (options.vertical_center == 1){
                        t.children().css('left', (browserwidth - t.width())/2);
                        t.children().css('top', (browserheight - t.height())/2);
                   return false;
         function resetSlideInterval() {
              if (options.slideshow == 1){
                   clearInterval(slideshow_interval);
                  if(!($.paused)) slideshow_interval = setInterval(nextslide, options.slide_interval);
         //Slideshow Next Slide
         function nextslide() {
              if($.inAnimation) return false;
              else $.inAnimation = true;
             var options = $.extend($.fn.supersized.defaults, $.fn.supersized.options);
              var currentslide = $('#supersized .activeslide');
             currentslide.removeClass('activeslide');
             if ( currentslide.length == 0 ) currentslide = $('#supersized a:last'); //*******Check if end of array?
             var nextslide =  currentslide.next().length ? currentslide.next() : $('#supersized a:first'); //*******Array
             var prevslide =  nextslide.prev().length ? nextslide.prev() : $('#supersized a:last'); //*******Array
              $('.prevslide').removeClass('prevslide');
              prevslide.addClass('prevslide');
              //Get the slide number of new slide
              $.currentSlide + 1 == options.slides.length ? $.currentSlide = 0 : $.currentSlide++;
              /**** Image Loading ****/
              //Load next image
              loadSlide=false;
              $.currentSlide == options.slides.length - 1 ? loadSlide = 0 : loadSlide = $.currentSlide + 1;
              imageLink = (options.slides[loadSlide].url) ? "href='" + options.slides[loadSlide].url + "'" : "";
              $("<img/>").attr("src", options.slides[loadSlide].image).appendTo("#supersized").wrap("<a " + imageLink + "></a>");
              if (options.thumbnail_navigation == 1){
              //Load previous thumbnail
              $.currentSlide - 1 < 0  ? prevThumb = options.slides.length - 1 : prevThumb = $.currentSlide - 1;
              $('#prevthumb').html($("<img/>").attr("src", options.slides[prevThumb].image));
              //Load next thumbnail
              nextThumb = loadSlide;
              $('#nextthumb').html($("<img/>").attr("src", options.slides[nextThumb].image));
              currentslide.prev().remove(); //Remove Old Image
              /**** End Image Loading ****/
              //Display slide counter
              if (options.slide_counter == 1){
                  $('#slidecounter .slidenumber').html($.currentSlide + 1);//**display current slide after checking if last
              //Captions
             if (options.slide_captions == 1){
                  (options.slides[$.currentSlide].title) ? $('#slidecaption').html(options.slides[$.currentSlide].title) : $('#slidecaption').html('') ; //*******Grab next slide's title from array
             nextslide.hide().addClass('activeslide')
                  if (options.transition == 0){
                       nextslide.show(); $.inAnimation = false;
                  if (options.transition == 1){
                       nextslide.fadeIn(750, function(){$.inAnimation = false;});
                  if (options.transition == 2){
                       nextslide.show("slide", { direction: "up" }, 'slow', function(){$.inAnimation = false;});
                  if (options.transition == 3){
                       nextslide.show("slide", { direction: "right" }, 'slow', function(){$.inAnimation = false;});
                  if (options.transition == 4){
                       nextslide.show("slide", { direction: "down" }, 'slow', function(){$.inAnimation = false;});
                  if (options.transition == 5){
                       nextslide.show("slide", { direction: "left" }, 'slow', function(){$.inAnimation = false;});
             $('#supersized').resizenow();
         //Slideshow Previous Slide
         function prevslide() {
              if($.inAnimation) return false;
              else $.inAnimation = true;
              var options = $.extend($.fn.supersized.defaults, $.fn.supersized.options);
             var currentslide = $('#supersized .activeslide');
             currentslide.removeClass('activeslide');
             if ( currentslide.length == 0 ) currentslide = $('#supersized a:first');
             var nextslide =  currentslide.prev().length ? currentslide.prev() : $('#supersized a:last'); //****** If equal to total length of array
             var prevslide =  nextslide.next().length ? nextslide.next() : $('#supersized a:first');
              //Get current slide number
              $.currentSlide == 0 ?  $.currentSlide = options.slides.length - 1 : $.currentSlide-- ;
              /**** Image Loading ****/
              //Load next image
              loadSlide=false;
              $.currentSlide - 1 < 0  ? loadSlide = options.slides.length - 1 : loadSlide = $.currentSlide - 1;
              imageLink = (options.slides[loadSlide].url) ? "href='" + options.slides[loadSlide].url + "'" : "";
              $("<img/>").attr("src", options.slides[loadSlide].image).prependTo("#supersized").wrap("<a " + imageLink + "></a>");
              if (options.thumbnail_navigation == 1){
              //Load previous thumbnail
              prevThumb = loadSlide;
              $('#prevthumb').html($("<img/>").attr("src", options.slides[prevThumb].image));
              //Load next thumbnail
              $.currentSlide == options.slides.length - 1 ? nextThumb = 0 : nextThumb = $.currentSlide + 1;
              $('#nextthumb').html($("<img/>").attr("src", options.slides[nextThumb].image));
              currentslide.next().remove(); //Remove Old Image
              /**** End Image Loading ****/
              //Display slide counter
              if (options.slide_counter == 1){
                  $('#slidecounter .slidenumber').html($.currentSlide + 1);
              $('.prevslide').removeClass('prevslide');
              prevslide.addClass('prevslide');
              //Captions
             if (options.slide_captions == 1){
                  (options.slides[$.currentSlide].title) ? $('#slidecaption').html(options.slides[$.currentSlide].title) : $('#slidecaption').html('') ; //*******Grab next slide's title from array
             nextslide.hide().addClass('activeslide')
                  if (options.transition == 0){
                       nextslide.show(); $.inAnimation = false;
                  if (options.transition == 1){
                       nextslide.fadeIn(750, function(){$.inAnimation = false;});
                  if (options.transition == 2){
                       nextslide.show("slide", { direction: "down" }, 'slow', function(){$.inAnimation = false;});
                  if (options.transition == 3){
                       nextslide.show("slide", { direction: "left" }, 'slow', function(){$.inAnimation = false;});
                  if (options.transition == 4){
                       nextslide.show("slide", { direction: "up" }, 'slow', function(){$.inAnimation = false;});
                  if (options.transition == 5){
                       nextslide.show("slide", { direction: "right" }, 'slow', function(){$.inAnimation = false;});
                  $('#supersized').resizenow();//Fix for resize mid-transition
         $.fn.supersized.defaults = {
                   startwidth: 4, 
                   startheight: 3,
                   vertical_center: 1,
                   slideshow: 1,
                   navigation:1,
                   thumbnail_navigation: 1,
                   transition: 1, //0-None, 1-Fade, 2-slide top, 3-slide right, 4-slide bottom, 5-slide left
                   pause_hover: 0,
                   slide_counter: 1,
                   slide_captions: 1,
                   slide_interval: 5000,
                   start_slide: 1,
                   slide_autoplay:0,
    })(jQuery);

  • Need some help tweaking email sync between iPod Touch, MacBook Pro, please

    I'm hoping there are some settings I can tweak to prevent any already downloaded mail in my MacBook Pro Mail app from being deleted when syncing to my iPod Touch.
    For example, I had an email downloaded from an IMAP account onto my MacBook Pro Mail app. The email remained on the IMAP server. I ran a test drive of the iPod Touch for the first time, and it successfully downloaded the handful of items on the IMAP server. I deleted the email in question from the iPod. When I synched the two gadgets, the email also disappeared from my MacBook Pro.
    Ideally, I want the MacBook Pro Mail to be the primary archive for all incoming and outgoing emails. When I retrieve email on my BlackBerry, the mail remains on the server - when it downloads to the MacBook Pro Mail app, it just appears with an "already read," no blue dot status. I'd like to use the iPod in the same fashion - to send and receive emails when I'm away from the laptop.
    So, I guess the short version of the question is: How do I prevent mail that I delete from the iPod from also being deleted from the MBP?
    Thanks,
    Tim

    I am confused. you can ony sync to one computer/iTunes libray.  You can manage music among different computer though.  See:
    Using iPhone, iPad, or iPod with multiple computers
    What do you mean by "different user's name"?  Where is the user's name specified?

  • I need help tweaking an iTunes script to add comments

    Hi all,
    as I don’t want to carry all the tracks in iTunes on my iPod, I have it to update some playlists only. One of these playlists is a smart one, that looks for the comment "Go iPod". And I have an applescript that sets the comment for the currently selected song(s) to "Go iPod".
    It also skips to the next song in the library/playlist.
    The script worked for over a year now, but today it got a hiccup. Instead of altering the comment for the curryemtly playing song and skipping to the next one, it alters the comment for two songs and skips to the third. Has something changed in iTunes 8.1?
    Here’s the script:
    property separator : "
    tell application "iTunes"
    set thePlaylist to view of front browser window
    if selection is not {} then
    set sel to a reference to selection
    else
    if thePlaylist is not library playlist 1 then
    set sel to a reference to every track of thePlaylist
    else
    display dialog "Select a track or playlist" buttons {"Cancel"} default button 1 with icon 2 giving up after 15
    end if
    end if
    play (next track)
    repeat with this_track in sel
    set this_track's comment to ("Go iPod")
    end repeat
    reveal current track
    end tell
    What do I have to change?
    Message was edited by bambule: made everything in the script English and reformatted the post

    UPDATE:
    Apparently the script is ok. It works like a charm when I select it via the scriptsmenu.
    Alas, I have assigned it a keyboard shortcut. And scripts that are envoked by a keyboard shortcut are running twice in iTunes 8.1.
    Off to file a bug report.

  • Anybody there who can help tweak a code?

    I've constructed a GREP statement that nearly works for me. I need a kind-hearted genius to tell me where I've gone wrong. If anybody is willing, please comment and I'll post the code and an explanation. Thanks.

    You would know for a fact if the device is in use, but if you go back to the find my iPhone app in iCloud.com, you can either select to erase it, or place it in lost mode, in which case, once the device makes a connection to the internet, it will automatically go into that mode.

  • Help with FMLE Settings for Sports Broadcast

    Hello,
    I am in need of some help tweaking my settings in FMLE.  I put on various sports broadcasts, but one of my clients has limited bandwidth (avg ~2.5-3mbps upload).
    I'd like to keep the output pixel size at 640x360 so that it takes up our entire player and doesn't letter box it, but with the larger video size I sometimes run in to either buffering,or pixelated video depending on how the bandwidth is that particular day.   I'd like to stream between 800k-1000k.
    I am using VP6 codec and using an Osprey Card as my capture device.
    Some of my questions are:
    1) Should I capture my video bigger than 640x360 and have FMLE shrink it, or capture it at the same size I want to output it at?
    2) In the Format advanced encoder settings, What should I set as my keyframe, quality, and datarate window.  Ideally I would like to use keyframes every 1-2 seconds because I work with fast-paced video, but I know that sends a lot of extra data.  Same with Datarate Window.  Can someone help explain the significance of this one.
    3)Under the output panel, I am not currently using the auto adjust function.  Should I enable this when my bandwidth takes a hit?  If so, which is preferable, dropping frames or degrading quality? Any explanation wuold be very helpful.
    4)Should I deinterlace my video?  We have a 3-camera shoot using Canon XL2's and a DataVideo Switcher.  Everything is analog SD.
    I am able to drop by bitrate down to 600K and the stream does not buffer, but it starts to get pixelated.  I would think that 3mbps upload bandwidth is enough to stream at 800k.   Any help adjusting my settings to shapen the imagine would be greatly appreciated.
    Thanks.

    1) Should I capture my video bigger than 640x360 and have FMLE shrink it, or capture it at the same size I want to output it at?
    --> Always capture at the same size, unless the device/card doesn't support that size.
    2) In the Format advanced encoder settings, What should I set as my keyframe, quality, and datarate window.  Ideally I would like to use keyframes every 1-2 seconds because I work with fast-paced video, but I know that sends a lot of extra data.  Same with Datarate Window.  Can someone help explain the significance of this one.
    --> Data rate window is useful for unexpected source data that might not encode well within the specified bit-rates. For example, if you set data rate window to "tiny" and a complex frame (source data) arrives, then encoder will not allocate some extra bits to encode that frame in good quality. But if you set the window to huge, then that complex frame will be encoded in good quality by allocating more bits to it. So, basically, the "delta" around the specified bit-rate increases on moving from "tiny" to "huge" data rate window. Your output bit-rate will vary more in case of "huge" setting.
    3)Under the output panel, I am not currently using the auto adjust function.  Should I enable this when my bandwidth takes a hit?  If so, which is preferable, dropping frames or degrading quality? Any explanation wuold be very helpful.
    --> I can explain the difference between the 2 options and you can experiment with both and stick to one, which gives a better user experience under your bandwidth conditions.
    a. Once the auto-adjust feature triggers, Drop frames option will intelligently drop some frames. As a result of this, you might observe video stalling depending upon the severity of the bandwidth conditions.
    b. Once the auto-adjust feature triggers, Degrade quality option with a min. video bit-rate value of say 500 kbps will try to encode all the frames within this 500 kbps limit. As you are reducing the bit-rate from the original value of say 800 kbps, the quality is bound to degrade. If you check the "preserve per frame quality" option then the encoder will encode >=50% of the frames within the specified bit-rate of 500 kbps. As the no. of frames are less the per frame quality will be better than the previous case. There is a possiblity that even after degrading quality, the buffer is exceeding the given limit then the degrade quality option will automatically switch to the drop frames option.
    4)Should I deinterlace my video?  We have a 3-camera shoot using Canon XL2's and a DataVideo Switcher.  Everything is analog SD.
    --> Deinterlace option is only available for video sizes >= 640x480.
     

  • Spry menu & jquery tweak

    Hi!
    I have two items I need help tweaking.
    1) the page has the jQuery portfolio, and for some reason, just by having this inserted on the page has "blocked" my spry menu drop down for the portfolio links within.
    2) I've repeated the jQuery gallery twice on the same page so as to compartmentalize different works...the ability to choose how to view the portfolio samples is not working on the second one, but works for the top one. Don't know why when the exact script has been duplicated?
    Can you please help me address these issues so that I may tweak accordingly? Thank you!
    http://c2cstudios.com/c2cstudios_11/illustration/index.html

    The following is an example of placing two ad-gallery widgets in the one document.
    <!DOCTYPE HTML>
    <html>
    <head>
      <link href="jquery.ad-gallery.css" rel="stylesheet">
      <style type="text/css">
        font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Verdana, Arial, sans-serif;
        color: #333;
        line-height: 140%;
      select, input, textarea {
        font-size: 1em;
      body {
        padding: 30px;
        font-size: 70%;
        width: 800px;
      h2 {
        margin-top: 1.2em;
        margin-bottom: 0;
        padding: 0;
        border-bottom: 1px dotted #dedede;
      h3 {
        margin-top: 1.2em;
        margin-bottom: 0;
        padding: 0;
      .example {
        border: 1px solid #CCC;
        background: #f2f2f2;
        padding: 10px;
      ul {
        list-style-image:url(../jquery.ad-gallery.1.2.4/list-style.gif);
      pre {
        font-family: "Lucida Console", "Courier New", Verdana;
        border: 1px solid #CCC;
        background: #f2f2f2;
        padding: 10px;
      code {
        font-family: "Lucida Console", "Courier New", Verdana;
        margin: 0;
        padding: 0;
      #gallery, #gallery2 {
        padding: 30px;
        background: #e1eef5;
      #descriptions, #descriptions2 {
        position: relative;
        height: 50px;
        background: #EEE;
        margin-top: 10px;
        width: 640px;
        padding: 10px;
        overflow: hidden;
         #descriptions .ad-image-description, #descriptions2 .ad-image-description {
              position: absolute;
         #descriptions .ad-image-description .ad-description-title, #descriptions2 .ad-image-description .ad-description-title {
              display: block;
      </style>
      <title>A demo of AD Gallery - Coffeescripter.com</title>
    </head>
    <body>
      <div id="container">
        <div id="gallery" class="ad-gallery">
          <div class="ad-image-wrapper">
          </div>
          <div class="ad-controls">
          </div>
          <div class="ad-nav">
            <div class="ad-thumbs">
              <ul class="ad-thumb-list">
                <li>
                  <a href="http://c2cstudios.com/c2cstudios_11/jquery/images/1.jpg">
                    <img src="http://c2cstudios.com/c2cstudios_11/jquery/images/thumbs/t1.jpg" title="apolo ohno" class="image0">
                  </a>
                </li>
                <li>
                  <a href="http://c2cstudios.com/c2cstudios_11/jquery/images/2.jpg">
                    <img src="http://c2cstudios.com/c2cstudios_11/jquery/images/thumbs/t2.jpg" title="simone" class="image1">
                  </a>
                </li>
             </ul>
            </div>
          </div>
        </div>
        <div id="descriptions"></div>
        <p>Examples of how you can alter the behaviour on the fly;
        Effect: <select id="switch-effect">
          <option value="slide-hori">Slide horizontal</option>
          <option value="slide-vert">Slide vertical</option>
          <option value="resize">Shrink/grow</option>
          <option value="fade">Fade</option>
          <option value="">None</option>
        </select><br>
        </p>
        <div id="gallery2" class="ad-gallery">
          <div class="ad-image-wrapper">
          </div>
          <div class="ad-controls">
          </div>
          <div class="ad-nav">
            <div class="ad-thumbs">
              <ul class="ad-thumb-list">
                <li>
                  <a href="http://c2cstudios.com/c2cstudios_11/jquery/images/1.jpg">
                    <img src="http://c2cstudios.com/c2cstudios_11/jquery/images/thumbs/t1.jpg" title="apolo ohno" class="image0">
                  </a>
                </li>
                <li>
                  <a href="http://c2cstudios.com/c2cstudios_11/jquery/images/2.jpg">
                    <img src="http://c2cstudios.com/c2cstudios_11/jquery/images/thumbs/t2.jpg" title="simone" class="image1">
                  </a>
                </li>
             </ul>
            </div>
          </div>
        </div>
        <div id="descriptions2"></div>
        <p>Examples of how you can alter the behaviour on the fly;
        Effect: <select id="switch-effect2">
          <option value="slide-hori">Slide horizontal</option>
          <option value="slide-vert">Slide vertical</option>
          <option value="resize">Shrink/grow</option>
          <option value="fade">Fade</option>
          <option value="">None</option>
        </select><br>
      </div>
      <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
      <script src="jquery.ad-gallery.js"></script>
      <script>
      $(function() {
              var galleries = $('#gallery.ad-gallery').adGallery();
        $('#switch-effect').change(
          function() {
            galleries[0].settings.effect = $(this).val();
            return false;
              var galleries2 = $('#gallery2.ad-gallery').adGallery();
        $('#switch-effect2').change(
          function() {
            galleries2[0].settings.effect = $(this).val();
            return false;
      </script>
    </body>
    </html>
    Notice that the ID's for the second widget have changed as well as a second constructor and the addition of style rules for the extra ID's. Note also that the selector has changed to target the relevant gallery with the addition of #gallery and #gallery2
    Gramps

  • I  need help with Shatter effect

    For the first time in my life I've chosen this effect. I'll be quick, I need to blow up Moon, but when I put shatter to it I can't see the moon anymore, I tweaked those settings, nothing. I can only see the trajectory of Moon's revolution I created. Any help tweaking those settings?

    There are resources here that show you how to use the Shatter effect.
    You description of your problem isn't very clear (Screenshots help.), but I'll venture a guess:
    You haven't set View to Rendered in the Effect Controls panel for the effect. So, you're just seeing the wireframe representation of the forces and such.
    Please, do us all a favor and read the documentation for features before using them and while you use them. There's a search box in the upper-right of the application window.

  • Need help with PS

    Hey guys,
    I am trying to figure out how I can search AD for accounts that haven't logged in for 90 days and disable and move them. What I would like to do is have it put out a report and I clean up the report some and then have a command to disable the accounts in
    that report. If that makes sense. Here is a command that I found that will spit out the report, buts its not very clean. Can anyone help tweak this? I have very little knowledge of PS.
    PS C:\> get-aduser -filter * -properties lastlogondate | Where-Object {$_.enabled -eq "true"-and $_.lastlogondate -lt (get-date).adddays(-90)} >C:\users.csv
    Thanks!!
    Adam

    Use a select between the command and the export-csv and specify the fields you want to show:
    get-aduser -filter 'lastlogondate -lt $date -and Enabled -eq $true' | Select Name,sAMAccountName,lastlogondate | Export-CSV c:\users.csv -NoType
    I just have Name, sAMAccountName, and lastlogondate here, but you can include whichever you need.
    I hope this post has helped!

  • How could I change the heade in Flash Help

    Hi everybody,
    I am pretty new to this forum, that is I just began to probe
    with RH7, and it is going well so far, because of your help and the
    technical service's help from Adobe.
    I tried different layers to see which one is the most
    appropriate for my project, and the Flash is very interesting.
    However, I would like to put a logo or a text in the header
    (the coloured one), and I have no clue how, and what tool I should
    use.
    Is anybody familiar with Flash Help tweaking?
    Thank you,
    Bogdan

    I'm not familiar with the .fsw file type. Where are you
    finding that file? Is it named skin_background_tb?
    Try searching for skin_background_tb.fla in your project's
    source files. I think .fla is your best bet.
    It's been long enough since I've started a brand new
    FlashHelp project that I can't remember if the "FlashHelp Default"
    skin is included in the project automatically or if you have to
    generate the layout with a skin from the gallery before any Flash
    skin files appear in your source files. If you haven't done so
    already, open the FlashHelp layout dialog, select a skin, and
    generate the layout. Once you've done this, you should see a folder
    within the !SkinSubFolder! directory that has the name of the skin
    you selected. That skin folder should contain all the .fla and .swf
    files for the skin. Those .fla files are the ones you would edit to
    change the skin. (Whenever you edit a .fla file, you then export it
    as a .swf movie to that same skin folder, then generate the layout
    again to see the results.)

  • Need Help getting games working...

    So I am having trouble getting basically any games working correctly on my arch setup.  This wouldn't really bother me but my gf likes playing them and I had a few working when I was using Bodhi Linux so she now thinks that Arch is not as good as Bodhi lol. 
    Please help me either get one of the games I have working or find some that will work.
    Right now, the games I have been trying and problems I'm having with each are as follows:
    Supertux: Really slow; I had this working on Bodhi
    DJL: Not really a game but this is what I used to use to get games; I found in AUR but it hasn't been updated for awhile; When I try to run it I get the following error (although I think it is generic msg):
    File "/usr/share/djl/djl/config.py", line 212, in config
    loc = locale.getdefaultlocale()[0].split("_")[0]
    AttributeError: 'NoneType' object has no attribute 'split'
    bsnes: All the ROMs I find are .smc format and bsnes will only work with .sfc
    Anyone have any ideas on how to get any of these working?  It would be greatly appreciated.  I love Arch so much more than any other distro I've tried because I can set it up exactly how I want and it runs so efficiently on my older computer but if I can't get some games working I'm going to be nagged to switch back to Bodhi.
    The other option is to dump the gf lol, but its a tough decidion between Arch and her .
    ~Boz~

    Yeah, I know it definitely doesn't have 3D acceleration bc when I was running Linux Mint I would automatically be put into "Fallback mode" as the MGSE req'd 3d acceleration.  What I don't get is how I had the games working while running Bodhi. 
    It might have been something in Djl that helped tweak the configuration and allow games to work because that was where I was using the games that I did.  I just had assumed that using Super Tux w/o Djl would be the same.  I do think that Djl not working has something to do with it needing Python 2 but I have tried and can't figure out how to force it to use only that.  Not sure if that is bc it is hard to or just bc I don't know how .
    I did try to install Zsnes but got an error during the build.  I tried the 'zsnes-netplay' version bc it had been updated more recently (although still almost a year ago).  I'll give the other version a try today to see if it makes any difference. 
    Going to leave this as unsolved until after I try that so if anyone else has any suggestions, please feel free.  If no progress by EOD, I will mark as solved and take it that the fact that I don't have 3d acceleration is the cause of my problems.  As I mentioned at the beginning, I really could care less about the games.  Just was trying to keep the gf happy but not always possible .
    Thanks again,
    ~Boz~

  • SB Audigy Series Support Pack 5.3 (02/24/2015)

    This software/driver pack is unofficial, not supported by Creative Labs.
    Use it at your own risk.
    Supports any model of the following Sound Blaster cards (based on Emu10kx DSP):
    - Audigy
    - Audigy 2
    - Audigy 2 ZS
    - Audigy 4
    - Audigy 5/RX
    For Audigy SE/LS/Value and Live! 24-bit cards, click here for a compatible version.
    Operating systems supported:
    32-bit and 64-bit editions of Windows 10 / 8.1 / 8 / 7 SP1 / Vista SP2 / XP SP3
    Included in the pack:
    - Audigy series driver 3.01.0039 (Windows Vista or later) (**)
    - Audigy series driver 2.09.0016 (Windows XP)
    - ALchemy 1.45.03
    - Audio Console 1.41.00
    - DDL and DTS Connect License Activation 1.00.04 (*)
    - Dolby Digital Live Pack 3.03.08 (*)
    - EAX Console 3.00.60 (Windows Vista or later)
    - EAX Console 3.00.59 (Windows XP only)
    - Feature Mode Selection Utility 2.10.07
    - Graphic Equalizer 2.10.01
    - MediaSource DVD-Audio Player 2.00.78 (***)
    - SoundFont Bank Manager 3.21.02
    - Speaker Calibrator 1.60.14 (Windows XP only)
    - Speaker Settings 2.10.05 (Windows Vista or later)
    - Speaker Settings 2.10.04 (Windows XP only)
    - Surround Mixer 4.00.76 (Windows XP only)
    - THX Setup Console 2.20.08 (Windows XP only)
    (*) Purchase and activation required, more info at http://buy.soundblaster.com.
    (**) - For Audigy 5/RX (SB1550) and Audigy 4 Series II (SB0612) this driver also supports Windows XP.
    (***) - Requires Audigy 2, Audigy 2 ZS ou Audigy 4
    Does this driver improve sound quality or performance Are there any tweaks ?
    No, this driver does not improve sound quality nor increase performance.
    No, there are no tweaks.
    If someone states that its driver improves sound quality and performance, you are being fooled, cheated.
    It is even worse that the so called tweaks come from a person who is not EVEN technically acknowledged, does NOT know anything about Windows internals, software engineering and sound fidelity that all audiophiles always look for.
    If you "feel" the sound better, that is the infamous placebo effect and there is no real proof that any tweaks work.
    In fact, I have yet to see a driver that states in its release notes that it improves sound quality.
    I've disassembled about every single .SYS driver, .DLL libraries and .EXE executables and found nothing.
    There are some undocumented registry values, but nothing related to sound quality or performance.
    Would the so called tweaks even exist, they would be in my Support Packs, you can bet that.
    Fixes and improvements:
    - Fixed Audigy 5/RX support.
    - Readded "EndPoint Utility" to enable the use of other digital devices to output Dolby Digital Live encoded audio.
    - Fixed driver installation issues on Windows 10.
    - Fixed Audigy "1" or Audigy 2 mute issue.
    - Audigy RX is now fully supported.
    - EAX Console now works on Windows Vista or later.
    - Karaoke effects now work properly on Windows Vista or later, just use EAX Console to enable them. Effects will only be applied to the Microphone input.
    - Sound Blaster Audigy Control Panel now available for all cards, but it lacks many settings available on Audio Console, so use the later.
    - Added instructions on how to install the Gameport.
    - Fixed missing speaker settings strings on Windows XP when DDL is enabled.
    - Improved driver installation, less confirmation prompts.
    - Improved setup procedure and scripts.
    - Removed Encode switcher for now, only DDL is available.
    - Installation now customizable, select what you want to install.
    - New integrated Post Driver Install Helper tweaks the driver without tampering certificate.
    - CMSS2 is now available.
    - OpenAL 64-bit support.
    - Dolby Digital Live now works on Windows 8.1 (update 1). Creative Audio Service was not being installed on that OS.
    - Special FX, Advanced EQ, Studio and Custom presets now available on Windows Vista or later.
    - Audio Console does not crash anymore on non-English localized installs. Localized resources for Online Karaoke tab were missing; added mostly localized Korean and Chinese (Traditional) resources.
    - Online Karaoke page is available for all Audigy cards on Windows Vista or later; this is NOT a new feature, but an easier way to configure the Microphone.
    - EAX Settings for Windows Vista or later includes EAX Studio, a fancy version of EAX Control Panel, no changes in functionality, except the Test button now works.
    - Added fully localized Korean and Chinese (Traditional) resources for EAX Studio, which were missing.
    Undocumented fixes by Creative (not listed in the release notes):
    - Headphone mode now sticks and does not revert automatically to Speakers mode on Windows Vista or later.
    - Special FX, Advanced EQ and Studio presets were not working on Windows Vista or later.
    Release Notes:
    IMPORTANT: Driver uninstall on Windows Vista or later
    The included driver for Windows Vista or later has a bug that causes a stop (blue screen) error when unloaded by disabling the Audigy or uninstalling the driver.
    To workaround this issue, run the KillDrv.exe utility included and restart when asked to do so. Proceed normally and uninstall all the software or only the driver.
    If you have previously installed the Audigy 5/RX driver, you MUST run this utility.
    As the KillDrv verify the driver version installed, running it won't do any harm, even if the driver version is not affected.
    HOW TO INSTALL THE GAMEPORT DRIVER
    You can find a Gameport\ReadMe.htm file in the folder where you unpacked the Support Pack.
    Just follow the steps shown in the screenshots.
    WINDOWS 8.1 OR LATER DOES NOT SAVE SETTINGS
    - Configure all settings and shutdown. Your settings will be saved.
    - This does not work if you disable Fast startup permanently or temporarily (by holding the Shift key while shutting down).
    - On Windows 10 you need to run the application with Administrator privileges (right-click and choose Run as Administrator). This is valid for all applications used to configure the card.
    OpenAL 2D benchmark in RightMark 3DSound crashes your system
    The included driver for Windows Vista or later has a bug that crashes your system if you run the OpenAL 2D benchmark using 63 buffers.
    No problem With 62 or fewer buffers.
    OpenAL 3D and OpenAL 3D + EAX benchmarks are not affected.
    Details: DRIVER_IRQL_NOT_LESS_OR_EQUAL (0x000000D1) - ctoss2k.sys
    There is no DirectSound hardware acceleration on Windows XP 64-bit (x64) with 4GB RAM or more
    The Audigy driver does not support 64-bit addressing, disabling the DirectSound hardware acceleration and causing multichannel sound to be played only in the stereo channels (front left/right).
    Workarounds:
    - install the 32-bit (x86) version of Windows XP.
    - limit to less than 4GB the amount of RAM available to Windows.
    - enable the "Memory Hole" setting in the BIOS Setup, if your motherboard supports it.
    - install and use Creative ALchemy to convert the DirectSound API calls into OpenAL, which is not affected by this issue.
    Karaoke effects make the audio play in mono
    You can avoid this issue by using EAX Console to enable Karaoke effects. Audio Console is affected by the issue.
    Optionally, follow the steps below.
    Open EAX Settings, select a Karaoke effect, then click the Edit button.
    Click on the Source (Wave) tab and change the Original sound to 100% and Pitch Shift to 0%. Click the Save environment button.
    Repeat the steps for all Karaoke effects.
    These changes will be valid only for the current speaker configuration. If desired, repeat the same process for each speaker configuration.
    MediaSource DVD-Audio Player system requirements
    - 32-bit edition of Windows XP or later
    - any Audigy 2, Audigy 2 ZS or Audigy 4 card
    Built-in Decoder on Windows Vista or later
    To use the built-in decoder, make sure it is enabled in Audio Console.
    Select "SPDIF Out (Creative SB Audigy (WDM))" as the output device of your player and then configure the AC3/DTS filter to send the stream through SPDIF.
    When you restart your computer, the Tone settings (Bass and Treble) are not applied.
    Just readjust one of the controls one time per boot.
    Equalizer and EAX effects are not available when using OpenAL or ALchemy
    Only Tone (Bass and Treble) and CMSS 3D (CMSS, CMSS2 and Stereo Surround) features are available.
    There is no sound in games with OpenAL support
    Disable Advanced EQ and Special FX by selecting "No effect" before running the game or program.
    Equalizer settings are not applied after using OpenAL or ALchemy
    After you run a game with OpenAL support or using Creative ALchemy, the Equalizer settings are applied.
    Just run Equalizer and the saved setting is loaded automatically.
    Tone settings are lost when speaker configuration is changed
    Bass and treble settings reset to their default values when speaker configuration is changed.
    Download:
    Filename: Audigy_SupportPack_5_3.exe
    File size: 120 MB
    CRC32 hash: 76110093
    SHA- hash: 1001EB673EAF532EA10B2C986F1F4046D52F6771
    Mirrors: Google Drive
    All files are property of Creative Technology Ltd, unless otherwise noted.

    Originally Posted by Dave_
    Please help me daniel_K. All I want to do is send 5.1 sound to my Sony amp (SRT-DH520). I have purchased a new SB Audigy 5/Rx [CFC0] and when I install from your pack everything looks great until I toggle the "Enable Dolby Digital Live". Then I get no sound output at all. And when I try to test the signal through the audio settigs it says "The device is being used by another application. Please close any devices that are playing audio to this device". I cant think of any other device running. When I untick the Enable Dolby Digital Live I can get stereo sound again. The DDL is authenticated. The cable is working. The amp is fine. I neeeeed help....
    Unfortunately I don't have a sample card to test personally and don't know anyone with an Audigy 5/RX.
    Anyway, I have a suggestion.
    Run EndPtUtl.exe found in the Audio Console installation folder.
    If the issue still persists, try to use the Digital Output (Coaxial/Optical) of another device, provided that you have any on your computer.
    EndPtUtl.exe enables the use of any device for outputting encoded audio.

Maybe you are looking for