How to browse folders within the ZenV plus player?

Is it possible to?play all songs in a particular?folder?with assorted songs without creating a playlist? I mean, when there are assorted songs in a folder, the sort by?albums/artists will?never display all?the songs together, you will have to create a playlist for that. Are there any updates around for that?

It's possible to trick it into doing this; here's what to do....
On your PC make the folder you want to have on the player, eg? reggae;
Copy to the folder all the individual tracks you want to have in it, from wherever you have them saved on your PC;
Use an MP3 tag editorto change all the album names in the tags to be the same as your folder name ('reggae' in my example).
I use Zortam, it's very good but you have to pay for it; it has a bulk editor for tags.
I'm not fussed about keeping the original album names on the MP3 player - prefer to keep track of folders.
Copy the folder to your MP3 player.
?Voila, now you have an album in your player, with the same name as the folder in your PC.
If you want to have the tracks play in a particular order, you would also need to edit the ID tag track numbers
with your tag editor.
Hope this helps you.

Similar Messages

  • Am I able to stream from sub folders within the VOD?

    Hi guys,
    I have Flash Media Server 3.5 on a Windows server, but I don't no much about how to make it work. Until know we have only used it for live streaming.
    I have let myself guide through the beginners pages and they're helpful, testing everything locally (applications/babyvultures/streams/_definst_/vultures.mp4).
    The problem is when I copy my project to the server; same structure, but no video. If I move the file to the applications/vod/media, and change the path in the script, there is no problems.
    So the big question is: am I able to have sub folders within the applications/vod ?
    The thing is, that I want to publish videos from different sites that is also located on the server, and what I thought I could do, was to make sub folders, one for each site and then people can access their streaming folder via FTP, being able to publish their own videos with the advantage of rtmp streaming.
    Is it a limit in FMS? Or is there a solution?
    Thank in advance

    My case is that I have FMS 3.5 (not FMIS) installed on a webserver with a bunch of sites who each have their videos, (some more than others).
    Right now they all publish their videos via each their site root or videos folder with progressive download, so to improve the viewers experience and to decrease the level uploaded Gb from the server, I want to use the FMS with RTMP streaming.
    On the webserver we have a few sites, who has a large quantity of videos and very long ones, and they need to have a sub folder structure to administrate their videos, so it could look like this:
    FMSroot/
            applications/
                         vod/
                             site1/
                                   folder1
                                   folder2
                                   folder3/
                                           subfolder1
                             site2/
                                   folder1
                                   folder2
                                   folder3/
                                           subfolder1
    I am not planning to make something very complicated with scipts and such. Just a Joomla site and a module where I type in the address of the videos.
    I have tested with Adobe Flash, and the beginners samples, to make a script that shows a video from applications/BabyVultures/streams/_definst_/, but I cannot make it work unless I place the video in the VOD.
    I have the same problem publishing videos thruogh a Joomla module - I cannot get access to the video.
    The funny thing is that, in the Flash Administration Console, it detects and accepts the request, but yet nothing happens.
    What is confusing is the MEDIA folder inside the VOD, but it is not part of the stream path name.
    What should be the path of the file: vod/subfolder/video.f4v or vod/media/subfolder/video.f4v or something else?
    Thanks in advance

  • In Lightroom mobile how can move photos within the collection????

    In Lightroom mobile how can move photos within the collection????

    What you can do is to move (or copy) a photo form one collection to another. This can be triggered via the top right app menu item from grid view. Same menu is available when you open up an image for editing. Hope that helps. -Guido

  • How to set FileSystemWatcher powershell script to exclude folders within the root path being monitored?

    All,
    I want to use a pre-fab script to monitor the OS folders on a Windows 2008 R2 Domain Controller and send any changes into the Event Log.  But there are two folders in the file path I want to exclude because changes to them would fill up the Event Logs
    too quickly.  Thus, I want to monitor all folder in C:\Windows but want to exclude C:\Windows\Temp and C:\Windows\debug.
    The script I want to use is below.
    #This script uses the .NET FileSystemWatcher class to monitor file events in folder(s).
    #The advantage of this method over using WMI eventing is that this can monitor sub-folders.
    #The -Action parameter can contain any valid Powershell commands. 
    I have just included two for example.
    #The script can be set to a wildcard filter, and IncludeSubdirectories can be changed to $true.
    #You need not subscribe to all three types of event.  All three are shown for example.
    # Version 1.1
    $folder = 'C:\Windows' # Enter the root path you want to monitor.
    $filter = '*.*'  # You can enter a wildcard filter here.
    # In the following line, you can change 'IncludeSubdirectories to $true if required.                          
    $fsw = New-Object IO.FileSystemWatcher $folder, $filter -Property @{IncludeSubdirectories = $true;NotifyFilter = [IO.NotifyFilters]'FileName, LastWrite'}
    # Here, all three events are registerd.  You need only subscribe to events that you need:
    Register-ObjectEvent $fsw Created -SourceIdentifier FileCreated -Action {
    $name = $Event.SourceEventArgs.Name
    $changeType = $Event.SourceEventArgs.ChangeType
    $timeStamp = $Event.TimeGenerated
    Write-Host "The file '$name' was $changeType at $timeStamp" -fore green
    Out-File -FilePath c:\scripts\filechange\outlog.txt -Append -InputObject "The file '$name' was $changeType at $timeStamp"}
    Register-ObjectEvent $fsw Deleted -SourceIdentifier FileDeleted -Action {
    $name = $Event.SourceEventArgs.Name
    $changeType = $Event.SourceEventArgs.ChangeType
    $timeStamp = $Event.TimeGenerated
    Write-Host "The file '$name' was $changeType at $timeStamp" -fore red
    Out-File -FilePath c:\scripts\filechange\outlog.txt -Append -InputObject "The file '$name' was $changeType at $timeStamp"}
    Register-ObjectEvent $fsw Changed -SourceIdentifier FileChanged -Action {
    $name = $Event.SourceEventArgs.Name
    $changeType = $Event.SourceEventArgs.ChangeType
    $timeStamp = $Event.TimeGenerated
    Write-Host "The file '$name' was $changeType at $timeStamp" -fore white
    Out-File -FilePath c:\scripts\filechange\outlog.txt -Append -InputObject "The file '$name' was $changeType at $timeStamp"}
    # To stop the monitoring, run the following commands:
    # Unregister-Event FileDeleted
    # Unregister-Event FileCreated
    # Unregister-Event FileChanged
    Is there a command line I can use to exclude thos two folders?
    Thanks

    First, thank you to everyone who has been helping me.  I've gotten a little bit further in what I need to do.  I still have two problems that I really need help in sorting out:
    1. The script will run on Windows 7 with no errors but will not run on a Server 2008 R2 Domain Controller.  On the DC, I get an error for the SourceIdentifier:  "A parameter cannot be found that mataches parameter name 'SourceIdentifier'."
    2. Even though the script runs on Windows 7 with no errors, I tested it by making changes to the Temp and debug folders and the changes were still being recorded in the logs.
    A copy of the updated script I am running is below:
    #This script uses the .NET FileSystemWatcher class to monitor file events in folder(s).
    #The advantage of this method over using WMI eventing is that this can monitor sub-folders.
    #The -Action parameter can contain any valid Powershell commands.  I have just included two for example.
    #The script can be set to a wildcard filter, and IncludeSubdirectories can be changed to $true.
    #You need not subscribe to all three types of event.  All three are shown for example.
    # Version 1.1
    $folder = 'C:\Windows' # Enter the root path you want to monitor.
    $filter = '*.*'  # You can enter a wildcard filter here.
    # In the following line, you can change 'IncludeSubdirectories to $true if required.                          
    $fsw = New-Object IO.FileSystemWatcher $folder, $filter -Property @{IncludeSubdirectories = $true;NotifyFilter = [IO.NotifyFilters]'FileName, LastWrite'}
    # Here, all three events are registerd.  You need only subscribe to events that you need:
    $Script:excludedItems = 'C:\Windows\Temp','C:\Windows\debug'
    Register-ObjectEvent $fsw Created -SourceIdentifier FileCreated -Action {
    If ($excludedItems -notcontains $Event.SourceEventArgs.Name) {
    $name = $Event.SourceEventArgs.Name
    $changeType = $Event.SourceEventArgs.ChangeType
    $timeStamp = $Event.TimeGenerated
    Write-Host "The file '$name' was $changeType at $timeStamp" -fore green
    Out-File -FilePath c:\scripts\filechange\outlog.txt -Append -InputObject "The file '$name' was $changeType at $timeStamp"} }
    Register-ObjectEvent $fsw Deleted -SourceIdentifier FileDeleted -Action {
    If ($excludedItems -notcontains $Event.SourceEventArgs.Name) {
    $name = $Event.SourceEventArgs.Name
    $changeType = $Event.SourceEventArgs.ChangeType
    $timeStamp = $Event.TimeGenerated
    Write-Host "The file '$name' was $changeType at $timeStamp" -fore red
    Out-File -FilePath c:\scripts\filechange\outlog.txt -Append -InputObject "The file '$name' was $changeType at $timeStamp"} }
    Register-ObjectEvent $fsw Changed -SourceIdentifier FileChanged -Action {
    If ($excludedItems -notcontains $Event.SourceEventArgs.Name) {
    $name = $Event.SourceEventArgs.Name
    $changeType = $Event.SourceEventArgs.ChangeType
    $timeStamp = $Event.TimeGenerated
    Write-Host "The file '$name' was $changeType at $timeStamp" -fore white
    Out-File -FilePath c:\scripts\filechange\outlog.txt -Append -InputObject "The file '$name' was $changeType at $timeStamp"} }
    # To stop the monitoring, run the following commands:
    # Unregister-Event FileDeleted
    # Unregister-Event FileCreated
    # Unregister-Event FileChanged
    Thanks in advance for any help you can give.

  • Wanting additional folders within the photo album folder

    Hi, i want to create several folders within Photo Albums, ie holiday pics, movies etc etc.
    Currently in itunes, i have 'sync photos from' and i have selected iphone (a folder on my desktop on my pc) and have selected all folders and videos. Within this folder, ther are several folders.
    When i sync, under photo albums i get 'Photo Library' and this contains 3 photos from my iphone folder on my PC. There are no folders appearing that i have created etc.
    If i choose 'slected folders' instead and then select all the folders it displays on itunes, then sync, under photo albums, the photo library vanishes!
    Any ideas of how i put some folders on?
    Thanks

    Same thing happened to me.  The latest update (9.3.1) didn't undo the damage. Not crazy about trying to rearrange all the photos back to their original events (if I can find them.....)

  • Can't get any sound I deleted the folders within the folder "Music"

    I just got this shuffle I have everything but the softwhere. It had a few songs on it too I erased the songs by opening the music folder and dragging three folders within to the trash. Then I loaded the music folder with a bunch of songs. It would not play. I tried putting them back in folders named 01 02 03 04 still nothing. I downloaded the IpodUpdater but I can't use it.
    Do I need to rename these folders as they were before? If so what were the names?
    Do I need to get the softwhere? As I said I've downloaded the updater which does nothing.
    THis thing worked fine untill I did this.

    So as I said before I dragged a bunch of songs onto the ipod. So now those songs are useing up 75% of my space I can't access them I can't get back to folder to take them off. Once I get this fixed though I think it's smooth sailing. I know folder it's in but It won't let me get there.
    How do I just wipe this thing clean.
    I have the newest Itunes and I still can't figure out what the IpodUpdater does. am I still missing a peice of the puzzle.
    Thanks by the way for your help

  • How to merge pages within the same document?

    Can I merge pages within the same pdf document? I have two large maps, an east and west, can I put the two pages together to make one map?

    How different are the layouts?
    You can vary the left and right pages:
    +Inspector > Layout > Section > Configuration > Left and right pages are different+
    But the position of the headers, footers and margins will be the same.
    You could make different designs and capture those but each would have to be its own section. This sort of thing works better in Layout mode, where every page is a different section, but you won't get automatic text flow nor TOC, footnotes etc.
    Pages rapidly gets very clumsy when you try to do detail layout to this extent.
    Peter

  • How to move elements within the master region of a Master/Detail spry data set?

    Hi there,
    I am unsure of how to move the different items within the master region of a master/detail spry dataset. The default style is such that if I include 3 or more elements e.g. Thumb, etc., they are stacked vertically :
    How do I move them so that they can be positioned differently? The look I am going for is one where the thumb image is positioned to the left while the other items are stacked alongside it so that the end effect for the master region would look like this:
    I greatly appreciate the help! Thanks!

    This is the complete page
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xmlns:spry="http://ns.adobe.com/spry">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Check :: Fashion+Lifestyle</title>
    <link href="styles.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryEffects.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryData.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryHTMLDataSet.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMasterDetail_final.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript">
    <!--
    var cal4 = new Spry.Data.HTMLDataSet("calendarList.html", "calendarList", {sortOnLoad: "When", sortOrderOnLoad: "ascending"});
    cal4.setColumnType("Thumb", "html");
    cal4.setColumnType("Picture", "html");
    cal4.setColumnType("When", "date");
    function MM_effectAppearFade(targetElement, duration, from, to, toggle)
        Spry.Effect.DoFade(targetElement, {duration: duration, from: from, to: to, toggle: toggle});
    function closeAd() {
        document.getElementById('adRollover').style.visibility='hidden';   
    function MM_effectBlind(targetElement, duration, from, to, toggle)
        Spry.Effect.DoBlind(targetElement, {duration: duration, from: from, to: to, toggle: toggle});
    function MM_effectSlide(targetElement, duration, from, to, toggle)
        Spry.Effect.DoSlide(targetElement, {duration: duration, from: from, to: to, toggle: toggle});
    function MM_effectGrowShrink(targetElement, duration, from, to, toggle, referHeight, growFromCenter)
        Spry.Effect.DoGrow(targetElement, {duration: duration, from: from, to: to, toggle: toggle, referHeight: referHeight, growCenter: growFromCenter});
    //-->
    </script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="pageContainer">
        <div id="adBanners">
            <div id="halfBanner"><a href="#" onClick="document.getElementById('adRollover').style.visibility='visible';"><img src="images/banner_half_1.jpg" alt="Half Banner" width="237" height="90" /></a></div>
            <div id="leaderboardBanner"><a href="#"><img src="images/banner_leaderboard_1.jpg" width="728" height="90" alt="Leaderboard Banner" /></a></div>
            <div class="clearFloats"></div>
        </div><!--div#adBanners-->
        <div id="mainHeader">
            <div id="homepageLink"><a href="index.html"><img src="images/spacer.gif" width="400" height="100" /></a></div>
            <ul id="MenuBar1" class="MenuBarHorizontal">
                <li><a href="feature.html">FEATURES</a></li>
                <li><a href="#">FASHION</a></li>
                <li><a href="calendar.html" class="on">CALENDAR</a></li>
                <li><a href="#">VIDEO</a></li>
                <li><a href="blog.html">BLOG</a></li>
            </ul>
        </div><!--div#mainHeader-->
        <div class="MasterDetail">
          <div class="DetailContainer" id="event" spry:detailregion="cal4">
            <div class="DetailPicture">{Picture}</div>
            <div class="DetailColumn DetailTitle">{What}</div>
            <div class="DetailColumn"><div class="DetailLabel">WHEN:</div> {When}
            </div>
            <div class="DetailColumn"><div class="DetailLabel">WHERE:</div> {Where}
            </div>
            <div class="DetailColumn">{Details}</div>
          </div>
          <div id="calHeader"><p><img src="images/calendar_hdr.gif" width="492" height="100" /></p></div>
          <div spry:region="cal4" class="MasterContainer" onclick="MM_effectAppearFade(this, 1000, 0, 100, false); MM_effectBlind('event', 1000, '0%', '100%', false);">
            <div class="MasterColumn" spry:repeat="cal4" spry:setrow="cal4" spry:hover="MasterColumnHover" spry:select="MasterColumnSelected"><div class="MasterColumnPicture">{Thumb}</div>
              <div class="MasterColumnTitle">{What}</div>
              <div class="MasterColumnText"><div class="DetailLabel">WHEN:</div> {When}</div>
              <div class="MasterColumnText"><div class="DetailLabel">WHERE:</div> {Where}</div>
              <div style="clear:both"></div>
            </div>
          </div>
          <br style="clear:both" />
        </div>
    </div><!--div#pageContainer-->
    <div id="footer">
        <div class="text">Use of this site constitutes acceptance of our User Agreement and Privacy Policy. &copy; 2008 Adobe All rights reserved. The material on this site may not be reproduced, distributed, transmitted, cached, or otherwise used, except with the prior written permission of Adobe is a trademark owned by Adobe.</div>
    </div><!--div#footer-->
    <div id="adRollover" style="visibility: hidden;">
    <script language="javascript">
        if (AC_FL_RunContent == 0) {
            alert("This page requires AC_RunActiveContent.js.");
        } else {
            AC_FL_RunContent(
                'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
                'width', '536',
                'height', '479',
                'src', 'watch_ad',
                'quality', 'high',
                'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
                'align', 'middle',
                'play', 'true',
                'loop', 'true',
                'scale', 'showall',
                'wmode', 'transparent',
                'devicefont', 'false',
                'id', 'watch_ad',
                'bgcolor', '#ffffff',
                'name', 'watch_ad',
                'menu', 'true',
                'allowFullScreen', 'false',
                'allowScriptAccess','sameDomain',
                'movie', 'watch_ad',
                'salign', ''
                ); //end AC code
    </script>
    <noscript>
        <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="536" height="479" id="watch_ad" align="middle">
        <param name="allowScriptAccess" value="sameDomain" />
        <param name="allowFullScreen" value="false" />
        <param name="movie" value="watch_ad.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" />
        <param name="wmode" value="transparent" /><embed src="watch_ad.swf" quality="high" bgcolor="#ffffff" width="536" height="479" name="watch_ad" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
        </object>
    </noscript>
    </div>
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    </body>
    </html>

  • YOSEMITE IS SLOW: How to browse folders quickly in Finder?

    Hi all, I've noticed my Mac Mini mid2011 is slow at browsing folders and files in Finder. How can I make this process snapier? I just switched to browsing via "list mode" instead of Cover Flow and this seems to have helped. What else can I do?
    Thanks!

    I don't understand you?    

  • How to access MailItems within the Message View?

    I'm working on an Outlook 2013 plugin that needs to access the emails currently displayed in the Message View.
    I already searched around a lot but I could only find ways to list emails by folder (and also the current folder). E.g.
    Outlook.MAPIFolder curFolder = this.Application.ActiveExplorer().CurrentFolder;
    Outlook.Items mailItems = curFolder.Items;
    MailItem item = mailItems.GetFirst();
    This would work fine if the user didn't apply any search filters; but if a filter is applied via the instant search bar this code would produce the same list of MailItems as if the filter wasn't applied.
    I thought of two ways of potentially solving this but couldn't find any resources online that worked for either. 1) Preferably, get direct read access to the MailItem list currently rendered within the Message View. 2) Alternatively, read the value in the instant
    search text-box and apply that to the currently selected folder using the Items.Find()
    command.
    From what I've read I don't think either of these elements have supported direct access in the Outlook Object Model; but there must be some way to solve this problem. I've also tried using
    this.Application.ActiveExplorer().Filter;
    but this appears to output a DASL query in the format ("http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-C000-000000000046}/85700003" = 0) so I'm unsure if this is could be reformatted or be used as a filter.
    Any guidance or explanations would be greatly appreciated; thanks in advance.

    Hello Davon,
    The Filter property is useless in that case. I spent some time researching that and found the following way:
    The
    GetTable method of the TableView class returns a Table object
    that represents all of the Microsoft Outlook items that are contained in a TableView object.
    Here is what MSDN states:
    The GetTable method of the TableView object
    returns a table of items from one or more folders in the same store or spanning over multiple stores, in an aggregated view. For example, an aggregated view obtained by a search across all mail items by using Instant Search. This behavior differs from the GetTable method
    of the Folder object,
    which obtains a table object that contains items from the same folder.
    private void DemoViewGetTable()
    // Obtain the Inbox folder.
    Outlook.Folder inbox =
    Application.Session.GetDefaultFolder(
    Outlook.OlDefaultFolders.olFolderInbox)
    as Outlook.Folder;
    // Set ActiveExplorer.CurrentFolder to Inbox.
    // Inbox must be the current folder
    // for TableView.GetTable to work correctly.
    Application.ActiveExplorer().CurrentFolder = inbox;
    // Ensure that the current view is a table view.
    if (inbox.CurrentView.ViewType ==
    Outlook.OlViewType.olTableView)
    Outlook.TableView view =
    inbox.CurrentView as Outlook.TableView;
    // No arguments are needed for View.GetTable.
    Outlook.Table table = view.GetTable();
    Debug.WriteLine("View Count="
    + table.GetRowCount().ToString());
    while (!table.EndOfTable)
    // First row in Table.
    Outlook.Row nextRow = table.GetNextRow();
    Debug.WriteLine(nextRow["Subject"]
    + " Modified: "
    + nextRow["LastModificationTime"]);

  • BT Cloud - creating folders within the Web uploads...

    On the Help pages the question, "Can I upload a folder or multiple files to the BT Cloud Web Client" is answered by explaining how to upload multiple files and then says you can create a new folder within the Web uploads folder to store them. Unfortunately it does not explain how to create the said folder - and as yet I have not been able to. Help please.
    Solved!
    Go to Solution.

    This is an old thread, but still relevant to my current issue.
    I've just joined BT and have activated the BT Cloud. I've tried to create a folder by clicking on the three little dots, but it's disabled. I uploaded a file and then it became enabled. Clicking on it though only allowed me to move it to trash. I moved it to trash and the 3 little dots became disabled again.
    How do I enable this to create a folder? Surely it can't be that hard!!
    Cheers,
    Graham

  • I am unable to use the browse feature within the store on an iPad 1

    The browse by author feature within the iBooks store will not show titles by author.  When I touch an author's name the app does not pull up books it remains with the "Choose an Author" prompt. 

    We have the same problem and just use the search bar instead.  We don't have the same problem on our new iPad 3.  We did uninstall and reinstalled the new iBooks but still the same problem.  Have you had any fixes?

  • How to get rank within the row in SQL

    I have an a key orderid and 4 other columns with orderdate&time in (16/12/2011 16:15:24 format) within a table.
    the orderid has an average of 1million rows every week hence could not do this in excel for a 15 day period .
    ORderid.........: mail........................................ : telephone ............................:online ........................................ store.......................... Agency
    A3456...........15/12/2011 16:15:24 ............... 16/12/2011 14:12:01.............16/12/2011 16:14:00..........17/12/2011 11:22:55 ............12/12/2011 22:20:30
    B678
    C555
    i want to create a new table which ranks each row according to the max orderdate and time say in another table
    i want to capture the rank
    KEY.......Mail............Tel............online.........store..........Agency
    A3456.....4 ...............3...............2...............1............... 5
    Is there any way either within the same table or in other table i wiould be able to get the rank based on the rows in SQL.
    thnks
    Edited by: UOOLK on 29-Dec-2011 06:46

    Something like this I think:
    create new_order_table as
      select order_id
            ,rank() over (order by mail desc) mail
            ,rank() over (order by telephone desc) telephone
            ,rank() over (order by online desc) online
            ,rank() over (order by store desc) store
            ,rank() over (order by agency desc) agency
        from old_order_table;Assuming you want the most recent date to be ranked number 1. If you want number 1 to be the oldest then remove all the 'desc's from the order by clauses.

  • How to remove dust within the touchpad on Satellite U920T

    I have a U920T, using only the touchpad, combined with the touchscreen.
    But the touchpad got dirty, with some dust inside.
    It is quite annoying on a daily use.
    I could not clean it with a vacuum cleaner, nor by blowing air with a bike pump.
    Does somebody knows a way to remove dust from within the touchpad?
    Thank you
    LT

    Sorry for being out for some days.
    Yes indeed, the touchpad is not closed, there is a gap between the plate
    and the case of the computer. (I have taken a picture to explain the problem.)
    No, there is no way to paste a picture or attach a file on this forum!
    I have been able to improve the situation by blowing air, but it does not last.
    Using a vacuum cleaner could not do much better.
    I have asked the question to Toshiba, but without any answer yet.
    Thanks for your help.

  • How can i make RealPlayer the default video player?

    I use safari 3.0.4
    When it accesses sites containing video, it plays it in Flash (eg YouTube)
    How do I get safari to use realplayer instead? (Even my Firefox 2.0 uses flash) (I have RP 10)
    I am teaching a course in media literacy and show some of the uploaded old tv commercials to my students. i want to show next year's class some of the same commercials, so i want to save the ones I find this year while they're available.
    At school, I work on a pc, and it plays video back in RealPlayer which gives me a 'download' option, so i can save these commercials.
    But when i find good clips at home, on my mac, all I can do is note the urls, then do it all again at school to get to them to download. it would be much easier if i could download them as I find them, then take them to school on my portable drive.
    any solution?
    Thank you
    Elizabeth

    At school, I work on a pc, and it plays video back in RealPlayer which gives me a 'download' option, so i can save these commercials
    RealPlayer v. 11.0.0 (may still be in beta) now includes that Downloader - a very useful item!
    It is a free download but they will ask for money in July. Must be why they call it RealPlayer Plus!
    You can get it here:
    http://uk.real.com/player/mac/
    I have had it for a couple of weeks and have had no problems.
    As for making RealPlayer the default video player, IMO that is not a good idea. There is a lot of stuff out there that RealPlayer would not be able to handle.
    These are the downloads and the settings you need in order to view/hear pretty much everything that the net can throw at you: The setup described below has proved repeatedly successful on both PPC and Intel macs, but nothing in life carries a guarantee!
    It is known to work in the great majority of cases with Safari 3.0.4, QT 7.3 or 7.4 and OS 10.4.11. (If you are running Leopard, ensure that all plug-ins have been updated for OS 10.5.2, but please see my footnote).
    Assuming you already run Tiger versions OS 10.4.9 or above (this has not yet been verified with Leopard) and have Quicktime 7.2 or above, and are using Safari 2 or 3, download and install (or re-install even if you already had them) the latest versions, suitable for your flavor of Mac, of:
    RealPlayer 10 for Mac from http://forms.real.com/real/player/blackjack.html?platform2=Mac%20OS%20X&product= RealPlayer%2010&proc=g3&lang=&show_list=0&src=macjack
    The new RealPlayer Plus (v.11) is still in beta and therefore free, but works well on Tiger. It includes a download function, and you can get that here:
    http://uk.real.com/player/mac/
    Flip4Mac WMV Player from http://www.microsoft.com/windows/windowsmedia/player/wmcomponents.mspx (Windows Media Player for the Mac is no longer supported, even by Microsoft)
    Perian from http://perian.org/
    You should read this support page http://perian.org/#support in case you need to delete older codecs.
    Adobe FlashPlayer should first be uninstalled using the appropriate uninstaller available here: http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14157&sliceId=2 and then the latest version obtained from here: http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlash and installed.
    (You can check here: http://www.adobe.com/products/flash/about/ to see which version you should install for your Mac and OS, but please see my footnote if you are running Leopard.)
    In earlier versions than QT 7.1.3 in Quicktime Preferences, under advanced, UNcheck Enable Flash, and under Mime settings/Miscellananeous only check Quicktime HTML (QHTM).
    You should also ensure, if you are running Tiger 10.4.11 or Leopard, that you have downloaded and installed the correct version for your Mac of Security Update 2007-009.1.1, which also deals with the Quicktime/Flash issues you may have experienced, such as the '?'. What happened was that both Quicktime as well as Adobe FlashPlayer tried to play the Flash video at the same time. This no longer happens. (N.B. Security Update 2007-009 1.1 requires both a restart and a permission repair.)
    If you get problems with viewing video on a website try moving this file to your Desktop:
    Hard drive/Library/Internet Plug-Ins/QuickTime Plugin.webplugin
    and then restarting Safari. If all now works, you can trash that file.
    In Macintosh HD/Library/Quicktime/ delete any files relating to DivX (Perian already has them). However it should be noted that Perian is not an internet plugin and will not play DivX files imbedded on a website. For that you will need the DivX Player browser plugin available from http://www.divx.com/divx/mac/
    Now go to Safari Preferences/Security, and tick the boxes under Web Content (all 4 of them) to enable Java.
    Lastly open Audio Midi Setup (which you will find in the Utilities Folder of your Applications Folder) and click on Audio Devices. Make sure that both Audio Input and Audio Output, under Format, are set to 44100 Hz, and that you have selected 'Built in Audio'.
    Important: Now repair permissions and restart.
    You should also consider having the free VLC Player from http://www.videolan.org/ in your armory, as this plays almost anything that DVD Player might not.
    FOOTNOTE
    If you are running Leopard:
    Some users have mentioned that the latest Flash Player (v.9.0.115.0) conflicts with Leopard, and that they have needed to revert to v. 9.0.47. This can be downloaded from here:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14266&sliceId=1

Maybe you are looking for

  • Pasted image not printing in Acrobat Pro 9

    I had no problems printing PDF pages with pated into them images in Acrobat 8. Now in version 9 I can still paste the image into the document, save doc and see it on the screen with no problem - but when printing the pasted image is gone. Any clues?

  • The system is not reachable, the login data could not be considered

    Hello I'm trying to connect via Hana Studio to a Hana One instance I have configured in AWS, following the guides & videos in the Hana Academy. When adding the system in Hana studio, I get an error message after inputting the SYSTEM password: The sys

  • Selecting and loading songs into an already full Nano (8G)

    Hello: I had loaded months ago my Nano with all my songs in the Library as it was less than 8G. Now I want to connect my Nano and 'reload' (not sure the right term) songs I want on it (along with Playlists). My current Library has many more songs now

  • Error when installing cs6

    When im installing cs6 on my laptop, im getting a error that says u need to reboot your laptop to continue the installation. So i did that end the installtion of cs6 freezes. I tryed this 6 times already on the same laptop, It runs windows 8 and it i

  • Field VSBED empty in IDOC DELVRY03

    Hi, I'm generating an outbound idoc DELVRY03 for a delivery. The field LIKP-VSBED is filled. Normally the value in LIKP-VSBED is supposed to be copied in field E1EDL20-VSBED of DELVRY03 idoc. But when the idoc is generate the field E1EDL20-VSBED is e