I know this might be off-topic but ..

What's a compilation? I notice that on my iTunes ...

A compilation is just that: a compilation of songs and not a "regular" album.
An example would be the "Now That's What I call Music".
If it is not marked as a compilation, all the individual artists shows up under the Artist section.
Marked as a compilation, the album will show up under Artist -> Compilations by album name.

Similar Messages

  • Sorry this is way off topic...NYC Petition, please have a look

    I know this is WAY off topic for this forum, but this is the only forum I follow and contribute to. And since we will ALL be affected by this at some point or another if we visit NYC I think it is worth all of our attention.
    Here is the text from the email I got from the APA...(link at bottom)
    The Mayor's office in New York City is seeking to instate a new rule that would require permits and proof of insurance for any group of 2 or more persons using a camera in a public area. The regulations would require that anyone using a tripod or shooting in one location for more than 30 minutes (including set-up and break down time) must obtain permits and show proof of insurance of at least 1 million dollars per occurrence. Read more about the new rules here: http://www.nyc.gov/html/film/html/news/080107_proposed_permit_rules.shtml
    We all need to act now to fight these proposed regulations which will place absurd restrictions on the freedom to photograph in New York City's public spaces.
    This affects not only professional photographers but the First Amendment rights of anyone with a camera to spontaneously document what happens on the streets of this city.
    Due to pressure from advocacy groups, the Mayor's Office has agreed to extend the period that it will allow public commentary until August 3rd.
    Picture New York has initiated an online petition opposing the new rules, which over 12,000 indidivuals have signed so far. The petition is closing on August 3rd. Please take a moment to sign if you have not already done so.
    Here is the link to sign the petition:
    http://www.pictureny.org/petition/index.php

    you have to be careful with your variables:
    the declared variables inside the actionlistener(s) are not these in your main class!!
    what you might do:
    a) let your main-class implement ActionListener
    public class MainClass extends PARENTCLASS implements ActionListener {
       public static void actionPerformed(ActionEvent ae) {
    }b) create your own event handler
    public class MainClass extends PARENTCLASS {
       public MainClass() {
          insert.addActionListener(new YourActionListener(this));
    public class YourActionListener extends ActionListener {
       private MainClass main;
       public YourActionListener(MainClass parent) {
          main = parent;
       public void actionPerformed(ActionEvent ae) {
          main.year = "abc";
          main.id = "id";
          // or implement setXXX methods -> main.setYear("abc"); main.setId("id"); ...
    }hope it helps...

  • WebAssist Cart help? I know it's off topic but... Could really use some help...

    I've got a shopping cart that is working and I'm trying to update the
    quantities in inventory by subtracting the quantity ordered from the total
    inventory in a table called ITEMS.
    I can update a record after a sale in the cart, but right now it is
    updating by completely replacing the value of the items in inventory with
    the quantity in the checkout cart. So, if there are 800 items, after the
    update, there are -1 total in inventory, not 799.
    The problem is that I don't know how to coordinate the item(s) in the stored
    shopping cart with a call to their ID and quantity in the online database.
    Here's what I have so far:

    Ahhhhhhhh Jeff...<br />If I can get this going...<br /><br />I spent days looking for this solution.<br />Thank you very much.<br />Just bought Dreamweaver CS3 and am battling through the bells and whistles.<br /><br />Liz<br /><br />----- Original Message ----- <br />From: "jefferis" <[email protected]><br />To: <[email protected]><br />Sent: Tuesday, June 19, 2007 9:50 AM<br />Subject: Re: WebAssist Cart help? I know it's off topic but... Could really <br />use some help...<br /><br />>A new message was posted by jefferis in<br />><br />> ADDT - PHP Application Development --<br />>  WebAssist Cart help? I know it's off topic but... Could really use some <br />> help...<br />><br />> On 6/16/07 3:06 PM, in article [email protected],<br />> "[email protected]" <[email protected]> wrote:<br />><br />>> Hi jefferis....<br />>><br />>> How did you solve the problem?<br />>> I am having the same problem trying to incorporate an inventory code into <br />>> a<br />>> shopping cart that will deduct the number of items purchased from my <br />>> total<br />>> inventory to let me and my customers know how many items I have remaining <br />>> in<br />>> stock.<br />>><br />>> Ex:<br />>> inventory: 500 plants<br />>> purchased: 20 plants<br />>> remaining inventory: 480 plants<br />><br />> Yes I did.<br />><br />> I've been struggling with this piece of pie for about 5 days and<br />> thought it might benefit others, so here's a way to update your quantities<br />> in INVENTORY after a checkout success.  I read another thread but found it<br />> way too complex and depended on holding inventory in the session:<br />> http://www.webassist.com/professional/support/kbcompletethread.asp?DiscID=33<br />> 046<br />> But you may lose the info when you go offsite to Paypal, e.g., to complete<br />> the transaction.<br />><br />> Here's my approach using the "checkout_success.php" page.  Using this page<br />> works because user arrives here ONLY after a successful purchase.<br />> First of all, I used the BSM php sample store as a starting point.  I <br />> added<br />> an ItemQuantity field to the items DB to track the stock or items in<br />> inventory in the store.<br />><br />> In order for this automatic deduction of sold items to work, it must be<br />> placed within the do while {  area of the  display page for the cart's<br />> items. } The code is commented below:<br />><br />> <?php<br />> //WA eCart Show If Start<br />> if (!$eCart->IsEmpty())     {    // IF CART NOT EMPTY...<br />> ?><br />>    <h2>Order Receipt </h2>  // STANDARD STUFF TILL NEXT COMMENT<br />>    <br /><br />>    <h3 class="eCart_OrderHeaderInfo">Order number: <?php echo <br />> session_id();<br />> ?></h3><br />><br />>    <p class="eCart_OrderHeaderInfo">This is your order receipt. Please <br />> make<br />> a copy for your records. An email will also be sent to you. </p><br />>    <table class="eC_ShoppingCart" border="0" cellspacing="0"<br />> cellpadding="0"><br />>            <tr><br />><br />>                    <th>Name</th><br />><br />><br />>                    <th>Price</th><br />><br />><br />>                    <th  class="eC_FormItem" >Quantity</th><br />><br />><br />>                    <th>Total</th><br />>            </tr><br />>        <?php<br />> while (!$eCart->EOF())      {  // DO WHILE FOR EACH ITEM IN CART<br />> ?><br />>            <tr><br />><br />>                    <td><img src="/images/thumbs/<?php echo<br />> $eCart->DisplayInfo("Thumbnail"); ?>" alt="" width="100" height="100"<br />> class="eC_ProductThumb" /><br />>                        <p class="eC_ItemLabel"><?php echo<br />> $eCart->DisplayInfo("Name"); ?></p><br />>                  <p class="eC_ItemDescription"><?php echo<br />> $eCart->DisplayInfo("Description"); ?></p>  <p<br />> class="eC_ItemDescription"><?php echo $eCart->DisplayInfo("ID");<br />> $idCall = $eCart->DisplayInfo("ID");?>>  // CREATE A VARIABLE FOR<br />> //THE ITEM's ID NUMBER in the DB<br />> //USE DISPLAY ID TO GET ID # and make it = $idCall<br />> </p></td<br />>                    <td  class="eC_PriceItem" ><?php echo<br />> WA_eCart_DisplayMoney($eCart, $eCart->DisplayInfo("Price")); ?></td><br />><br />><br />>                    <td  class="eC_FormItem" ><?php echo<br />> $eCart->DisplayInfo("Quantity");<br />> $solditems = $eCart->DisplayInfo("Quantity");?>  //DO THE SAME FOR <br />> QUANTITY<br />> //SOLD, MAKE QUANTITY SOLD  = $solditems<br />> </td><br />><br />> // NOW UPDATE THE DATABASE. SUBTRACT $solditems from ItemQuantity ( YOUR<br />> //INVENTORY OR STOCK)<br />> //FOR EACH ITEM IN CART. SELECT the item's ID  by $idCall:<br />> <?php<br />> mysql_select_db($database_connBSM, $connBSM);<br />> $query_itemQ = "Update items SET  items.ItemQuantity = <br />> items.ItemQuantity -<br />> $solditems WHERE items.ItemID = $idCall";<br />> $itemQ = mysql_query($query_itemQ, $connBSM) or die(mysql_error());<br />><br />> ?><br />>                    <td  class="eC_PriceItem" ><?php echo<br />> WA_eCart_DisplayMoney($eCart, $eCart->DisplayInfo("TotalPrice")); ?> </td><br />>            </tr><br />>        <?php<br />>  $eCart->MoveNext();    //// REPEATS BEHAVIOR FOR EACH ITEM IN CART<br />> }<br />> $eCart->MoveFirst();<br />> ?><br />> BTW, once the items in inventory = 0, the items do not appear in the<br />> catalog.  That is set in the catalog page's recordset.<br />> Jeff<br />> ~~~~~~~~~~~~<br />> Jefferis Peterson, Pres.<br />> Web Design and Marketing<br />> http://www.PetersonSales.com<br />><br />><br />><br />><br />> ------------------------------------------------------<br />> View/reply at <<a href="/cgi-bin/webx?13@@.3bc3e9d6/5">jefferis, "WebAssist Cart help? I know it's off topic but... Could really use some help..." #6, 19 Jun 2007 6:50 am</a>><br />> You must visit the conference to reply. Email replies are not allowed and <br />> will be returned.<br />> Use the unsubscribe form at <br />> <a href=http://www.adobeforums.com/cgi-bin/webx?280@@.3bc3e9d6!folder=.3bc3909c> <br />> to cancel your email subscription.

  • Sort of off topic, but same old question looking for a new answer

    Ok I'm ready to start a new site. I'm going cheap as it's all coming out of my pocket including hosting. I want to put a video chat room on my site. Is there anyway to capture a webcam in this fashion in director. I've done tons of searching but I can't really find anything. I'm trying to avoid using the flash communication server for three reasons. 1) I already have the director multiuser server that will host up to 1000 users (the room will never be anything close to that big 50 peeps tops) and my web host will support it and install it for me. 2) I can't find anything at a really cheap price. I'm looking at 25 cam users at once... 3) Actionscript is nothing I've every really worked with before, but I could do the lingo programming.
    I have a few questions First of all I read something about putting a flash element on the stage, and that the flash player is what captures the webcam. But I assume that it still needs flash communication sever to upload the video. Is this correct?
    Is there an xtra that will do what I  want?
    I read something about encoding the video to realvideo, but I have no clue how as I've never done anything like that before. Will this work and do you know of a tutorial for this?
    Do you know of a really really cheap flash comm host?
    Really off topic but, I could write the text chat end of it in cold fusion. Is there a known way to easily add the video in this way?
    Does anyone know of a cheap off the shelf video chat room that I can put up on my site and just pay for the bandwidth overage that it uses?
    Thanks for any help any of you could give me.
    Cane

    There are several 2.4 GHz MacBook pros shipped over several years.
    If this is your Mac (2007 model) scroll down to the memory section and read:
    http://www.everymac.com/systems/apple/macbook_pro/stats/macbook-pro-core-2-duo-2 .4-15-santa-rosa-specs.html
    Standard RAM:
    2 GB
    Maximum RAM:
    6 GB*
    Details:
    2 GB installed as two 1 GB modules. No slots free.
    *Apple officially supports a maximum of 4 GB of RAM but third-parties have been able to upgrade the system to 6 GB of RAM using one 2 GB and one 4 GB memory module.
    Site sponsor Other World Computing sells MacBook Pro memory, as well as hard drives, batteries, carrying cases, and accessories.
    ... and that sponsor is not a bad place to get RAM at all. They are experts, and back it up with a "money back if it does not work in your Mac" guarantee.

  • Slightly off topic but a query on open type fonts

    Hi all
    I went to buy the frutiger fonts (9fonts) from adobe. The format is open type which is what I want. B ut when going to buy them I am asked whether I want mac or windows format. I thought open type fonts were cross platform? We have both MACs and PCs, if I want the font on both do I have to buy both formats ?
    Link to font:
    http://store.adobe.com/type/browser/P/P_1186.jhtml
    Thanks for any help, sorry for this being off topic but I couldn't see where else to post.
    gerryR

    Yes, that's it, pretty much. Also, our download manager needs to know whether you're using Mac or Windows. The *contents* of the purchased file are the same.
    T

  • I currently have a DROID RAZR M and I'm 1 year into my 2 year contract.  Since the Kitkat update, the phone won't stay charged and it's very buggy.  I know this is not Verizons fault but it's also not mine. I would like to change my phone to an iPhone 5s

    I currently have a DROID RAZR M and I'm 1 year into my 2 year contract.  Since the Kitkat update, the phone won't stay charged and it's very buggy.  I know this is not Verizons fault but it's also not mine. I would like to change my phone to an iPhone 5s and keep my same plan but switch to the Edge program. Is this possible? I don't think I should have to pay an early termination fee or anything like that since my phone has become almost unusable. I know under normal circumstances you have to wait 2 yrs to upgrade but due to the update and the poor service I'm now getting I hope Verizon can make an exception. Thank you.

    How recently did you switch?  If it's less than 60 days, then Verizon simply reinstates your previous account.  The fact that you were on the EDGE plan and mailed the devices back, and they apparently are somewhere in the system, could cause complications, and it might just work out that you just go back on the same plan and they set you up with the same devices.  I'm not sure how it will go - but since you are still being billed for the devices... 

  • I know this is supposedly not possible, but I need to retrieve a specific voicemail from my iPhone which was also "cleared" from the Deleted Messages box. Any suggestions?

    I know this is supposedly not possible, but I need to retrieve a specific voicemail from my iPhone which was also "cleared" from the Deleted Messages box. Any suggestions?
    This is highly important. I know the number from which the voicemail arrived, but have not been able to figure out how to retrieve it. I accidentally had the voicemail in the Deleted Messages folder, and then Cleared this folder. If there is any possible way I might be able to retrieve this message, even if there is a cost associated with it, please help me.
    Thank you.

    I think you maybe able to restore from backup if that voicemail was included in the backup. http://support.apple.com/kb/HT1766

  • Maybe off topic, but.....

    hope this isnt too of topic, but looking for suggestions
    I have a BFG 6800 gt and want to replace the cooler as it is running hot, which is a better cooler? 
    1.  ARCTIC COOLING VGA Silencer AVC-1000 120mm VGA Silencer  or
    2.  Zalman VF700-AlCu  ?
    the zalman looks more substantial, but not sure which would be a better one to get
    any suggestions would be appreciated
    Muad'Dib

    Yea, they do, but they give worthless information like you just gave me, thanks 
    I've been comming here for a long time, and value the advice of alot of the people that come here, hence the community question....  pnly useful information would be good

  • I know this has been asked before But I Deleted 6 mths worth of Bookmark folders, Cant use Undo,

    I know this has been asked before But I Deleted 10 mths worth of Bookmark folders, Cant use Undo & havent backed up (live & learn) Someone posted do a restore from "Import & Backup" My listing in Restore is only 2010-6-29 back to 2010-6-22. Is this the way to go to retrieve as much as possible or is there another solution?

    Those dates are when a backup was automatically made by Firefox, not dates when you saved specific bookmarks. Try restoring the backup from the day before you deleted all those bookmarks. It will restore the entire backup file - not just what you deleted, you will lose any bookmarks that you saved after the date of the file you restore.
    [https://support.mozilla.com/en-US/kb/Lost+Bookmarks]

  • I know this is a stupid question but can u put movies on thi 5G ipod?

    i know this is a stupid question but can u put movies on thi 5G ipod? like longest yard, anchor man, ect.
    Nano 4GB black,Moto RAZR V3 black, PSP, all kinds of cases for nano,radio/remote   Windows XP   <img src="http://i36.photobucket.com/albums/e13/superman5656/s.gif"align="right"</span>

    i dont have one yet i was just wondering i was thinking about it thanks
    Nano 4GB black,Moto RAZR V3 black, PSP, all kinds of cases for nano,radio/remote   Windows XP   <img src="http://i36.photobucket.com/albums/e13/superman5656/s.gif"align="right"</span>

  • I know this is the wrong forum, but- (Mac question)

    I know this is the wrong forum, but…
    Can anyone enlighten me?
    How did a folder named just "Adobe", containing only something called "Acrobat.com.app"), end up in my root Applications folder?
    Double clicking on "Acrobat.com.app" launches an installer that wants to install something called "AIR".  What is that and what is it needed for?
    What forum should I be posting this in?
    A global search and searches in the Acrobat Macintosh forum were not helpful.
    Can I just delete that Adobe folder or ignore it?  It has identical Creation and Modified dates of January 15, 2010 17:56, which raises more questions than it answers.
    Any input will be appreciated.
    Wo Tai Lao Le
    我太老了

    pwillener wrote:
    …Adobe Reader 9.0 came with two installers: one bundled with Acrobat.com and Adobe AIR (AdbeRdr90_en_US.exe, 34302 KB), the other one without any bundled software (AdbeRdr90_en_US_Std.exe, 25772 KB).
    …<snip>…
    P.S. what I wrote above is about the Windows version; I assume that the Mac versions are the same.
    Maybe… kinda, sorta…  There are no ".exe" files in the Mac world. 
    I've never downloaded or installed either Acrobat.com or Adobe AIR.  It has to have been the Acrobat Reader 9.3 update for the Mac that installed that sucker on my Mac. I had certainly never seen it before.
    That, on top of the inexcusable, abominably surreptitious "Growl" installed by Adobe behind my back, strengthens my resolve not to acquire any more Adobe products, free or otherwise. 
    What in blazes are the Adobe corporate folks thinking? 
    Wo Tai Lao Le
    我太老了

  • A bit off topic, but what time should I arrive at the Keynote?

    I'm posting this in the FCP forum because this is the only one I read. I'm attending Macworld for the first time and I have the cheap tickets for the Keynote (user's conference). I have no idea how early I need to show up to wait in line to guarantee I get into the Keynote.
    Thanks and sorry for the off topic post.

    Just showing a pick of what I look like...hee.
    I will have an exhibitors pass, so I wonder if I can get in any later and still get good seats? HA! I will bring my lappy, to keep me occupied (I hope they have wireless access).
    For iChat reports I'd need all your iChat accounts. That would be one BIG group chat.
    Shane

  • Off-topic but I don't know where to put this...

    I have what should be an easy activity but I'm spending more time than it's worth.  Below is a clipping from a photo of a stained glass window.  The unseen figure above the text is Aristotle and presumably the clipping is a quote of his words in ancient Greek.  Can anyone provide an English translation for me?
    By the way, my initial frustration is in loading the Greek alphabet onto my iMac.  The selection menu lists the languages in the actual languages.  The word "Greek" is not there and I don't know how to spell "Greek" in Greek!

    Thanks.  I was in the wrong menu.  I went to Preferences > Language & Text > Language
    I should have gone to Preferences > Laguage & Text > Input Sources
    In any event, my problem now is the difference between modern Greek and ancient Greek.  It's either that or, more likely, the text is not a quote but, instead, an almost random collection of Greek letters.  The beginning of the statement refers to the human soul and energy but the kicker is the last two words.  I can't find a meaning anywhere, including one dictionary for ancient Greek.  I tried Google Translate and others on the web as well as a local translator on my Mac.

  • Off-topic but I don't know where to ask this...

    I have what should be an easy activity but I'm spending more time than it's worth.  Below is a clipping from a photo of a stained glass window.  The unseen figure above the text is Aristotle and presumably the clipping is a quote of his words in ancient Greek.  Can anyone provide an English translation for me?
    By the way, my initial frustration is in loading the Greek alphabet.  The selection menu lists the languages in the actual languages.  The word "Greek" is not there and I don't know how to spell "Greek" in Greek!

    It'x close but I don't think that I've got the cigar yet.  As near as I can determine, the beginning refers to the human soul but the words at the end don't translate to anything.  I'm beginning to suspect that the text is not intended to be real and is merely a random collection of Greek letters!
    I translated your hunch into Greek and the Greek words in the second half don't even come close to what's on the window.
    I do appreciate the effort, though.

  • JDBC connection in EJB (Sorry i know this is a JSP forum but someone might have the a

    In EJBs, we can always spawn a JDBC connection using the internal server side driver through defaultConnection() or kprb. My question is, can we spawn any other kind of connection from an EJB to another database on some remote machine, this would involve using the thin or oci drivers, i try but get security exceptions and access privilege exception though the account i use is privilegded for database operations. Can someone answer my question please.

    see reply in one of the four other forums you posted the same question to !!

Maybe you are looking for

  • Using Remote app on iPhone 5 without a separate internet connection and wifi router.

    Hi, I need to be able to control iTunes within my MacBook Pro remotely. Using my mobile broadband service and wireless router I've been able to get the Remote app to allow my iPhone 5 to do the job nicely through Home Share.  So I went and bought a s

  • I cannot look at any PDF files. Yesterday on Pogo the Java quit working and cannot play any games

    since having Firefox, I have been unable to look at any PDF files. Everything possible has been done and my son(computer nerd) was unable also. Yesterday, when I went to play Pogo games the games would not come up. I have been playing these for years

  • Will a parser be running on Linux?

    I'm sorry.. I have a poor english.... Will XML parser be running on Linux? null

  • Windows 8.1 narrator issues

    i activated the narrateur and now i can't disable it in fact i can't even go further than my lock screen i don't know how to use it is kinda weird, please if someone has the same proble or has a solution help me thank you

  • Exporting RAW Files

    I am sure there is an easy answer to this but I can't find it...I'm afraid I'm pretty new to Aperature and RAW. I shoot in RAW and my Aperture files are in the NEF format. How do I export them as RAW? Or, what is the highest res format I can export?