How can I add custom artwork to my playlists?

 This is something I would love to see introduced. The only way you can achieve this just now is to join the Community Rock Star programme (see link on my profile) and get active in the community to become a Rock Star. Once you have this status you are allowed to add artwork.
Hope this helps!

Hello A1exei, right now the feature isn't available, but it is under consideration. Add your kudos to the thread I linked, and toss in a comment to keep the suggestion alive. Please don't hesitate to let me know if you have any other questions! 

Similar Messages

  • How can i add custom attributes to a new Class Object using the API ?

    Hello everyone,
    Here is my problem. I just created a subclass of Document using the API (not XML), by creating a ClassObjectDefinition and a ClassObject. Here is the code :
    // doc is an instance of Document
    ClassObject co = doc.getClassObject();
    ClassObjectDefinition cod = new ClassObjectDefinition(ifsSession);
    cod.setSuperclass(co);
    cod.setSuperclassName(co.getName());
    cod.setName("MYDocument");
    ClassObject c = (ClassObject)ifsSession.createSchemaObject(cod);
    Everything seems to be OK since i can see the new class when i use ifsmgr. But my question is : how can i add custom attributes to this new class ? Here is what i tried :
    AttributeDefinition value = new AttributeDefinition(ifsSession);
    value.setAttribute("FOO", AttributeValue.newAttributeValue("bar"));
    c.addAttribute(value);
    But i got the following error message :
    oracle.ifs.common.IfsException: IFS-30002: Unable to create new LibraryObject
    java.sql.SQLException: ORA-01400: impossible d'insirer NULL dans ("IFSSYS"."ODM_ATTRIBUTE"."DATATYPE")
    oracle.ifs.server.S_LibraryObjectData oracle.ifs.beans.LibrarySession.DMNewSchemaObject(oracle.ifs.server.S_LibraryObjectDefinition)
    oracle.ifs.beans.SchemaObject oracle.ifs.beans.LibrarySession.NewSchemaObject(oracle.ifs.beans.SchemaObjectDefinition)
    oracle.ifs.beans.SchemaObject oracle.ifs.beans.LibrarySession.createSchemaObject(oracle.ifs.beans.SchemaObjectDefinition)
    void fr.sword.ifs.GestionDocument.IFSDocument.createDocument(java.lang.String)
    void fr.sword.ifs.GestionDocument.IFSDocument.main(java.lang.String[])
    So, what am i doing wrong ?
    More generally, are we restricted in the types of the attributes ? (for example, would it be possible to add an attribute that would be an inputStream ? Or an object that i have already created ?).
    Any help would be appreciated. Thanks in advance.
    Guillaume
    PS : i'm using Oracle iFS 1.1.9 on NT4 SP6 and Oracle 8.1.7
    null

    Hi Guillaume,
    you're welcome. Don't know exactly, but assume that ATTRIBUTEDATATYPE_UNKNOWN
    is used to check for erronous cases only
    and it shouldn't be used otherwise.
    Creating your own objects could be simply done via
    ClassObject ifsClassObject;
    DocumentDefinition ifsDocDef = new DocumentDefinition(ifsSession);
    // get class object for my very own document
    ifsClassObject = ClassObject.getClassObjectFromLabel(ifsSession, "MYDOCUMENT");
    // set the class for the document i'd like to create
    ifsDocDef.setClassObject(ifsClassObject);
    // set attributes and content for the document...
    ifsDocDef.setAttribute("MYFOO_ATTRIBUTE",....);
    ifsDocDef.setContent("This is the content of my document");
    // create the document...
    PublicObject doc = ifsSession.createPublicObject(ifsDocDef);
    null

  • How can i add Custom fields into the

    Dear Experts
    We have Ecc6.0 system,
    How can i add Custom fields into the Infotype Screen(PA30),i heard that we do it by PM01 Tcode.
    But in PM01 i am unable to find the enhance infotype tab.
    How can i do it ....pls help.....
    Regards
    Sajid

    Hi,
    Do it thru the third tab : Single Screen.
    There write down the infotype number (e.g. 0022) and say generate objects.
    Regards,
    Dilek

  • How can I add customer's information?

    I can add user to the wlcs_user table with jsp now .
    <um:createuser.............>
    But
    1. How can I add user to customer with jsp?
    2. How can I add user's information eg:cardid,e_mail,address etc) with jsp?
    which table these information will put into ?
    Thank in advance.

    I can add user to the wlcs_user table with jsp now .
    <um:createuser.............>
    But
    1. How can I add user to customer with jsp?For WLCS 2.0.1, look at the example code that came with the MyBuyBeans demo in
    <wlcs-install-dir>/src/examples/buybeans/client
    In particular, look at UserInformation, which is used to collect information
    for your Customer and look at RegistrationHelper, which has a
    register(userInformation) method that is used to create a new Customer.
    For WLCS 3.1 the Customer extends User, so that the Unified User Profile (see
    the documentation) can be used to easily integrate customers with WLPS users.
    2. How can I add user's information eg:cardid,e_mail,address etc) with jsp?
    which table these information will put into ?Look at _userreg.jsp.  These are properties that have not been registered with
    the "exampleportal" property set using the administration tool, so you cannot
    set them with the administration tool. You must use JSP tags or the API to set
    them.
    Ture Hoefner
    BEA Systems, Inc.
    2590 Pearl St.
    Suite 110
    Boulder, CO 80302
    www.bea.com

  • How can i add custom document properties in Content Services?

    Hello guys.
    I have question. I need to add custom attributes of document uploaded in CS.
    I know about categories, and it will help me.
    But i need it on the properties page? in main tab, where docname, creationdate, etc. appears. Is it possible?
    Ideally it should appears in main window of CS, without any additional clicks.
    Is there any way organize it without development new Web Services?
    Thank you.

    One possible way of doing this would be to use the $A mapping in the send_access mapping table. see http://docs.iplanet.com/docs/manuals/messaging/ims52/ag/filter.htm#15965
    This will depend on what value you wish to use in the header and when and where during the message routing you want to add the header.
    You can use channel level filters on the send_access or orig_send_access mapping table to control at which point the header is added but without knowing more about what you wish to do and which conditions you wish to use to add the header it is difficult to say more. It is possible to use a "customer supplied routine (in the form of a shared object call) from the mapping process, but during the mapping process the only information available to the routine is the sender and recipient info so that probably isnt suitable for your purposes.
    Another method of header manipulation in IMS is channel header option files but these should be used with caution and will only operate on "known" headers and as a result are probably not of too much use to you either.
    The conversion channel does have access to the original message headers http://docs.iplanet.com/docs/manuals/messaging/ims52/rm/mta_conf.htm#1044412
    but Im afraid I cant point you at an example of where it has been used like this - perhaps someone else can.
    WRT moving the message to the top of the message list - I presume this is from the clients perspective - How did you accomplish this in NMS as message views and sorting are almost exclusively a client responsibility ?
    Also have you looked at the ENS service available with IMS?
    Sorry I cant offer anything more than that but without knowing what functions your previous SMTP plugin performed its a bit difficult.
    Ciaran

  • Can't Add Custom Artwork for Imported Movies...

    I recently made a home video and exported it to iTunes with iMovie HD. I want to add my own picture for the artwork, but whenever I try to, iTunes always freezes. When I restart iTunes, I cannot edit the artwork and I can't play the movie. Any ideas on how to fix this?
    -M.R.P.

    When I've added artwork to movies it takes a long time to load depending of the files size. If you wait long enough it should load. Sometimes iTunes will crash. But if you just reopen it, play your movie, the artwork should show up.
    It also sounds like you broke the file. Just re-export it and add the artwork again.
    Good luck
    Charlie

  • How can I add new artwork like backgrounds & graphics, to the content list??

    I would like to add some of the images that i have created to the list of backgrounds, graphics etc under the Content-> Artwork lists.
    How can i do this?

    The effects tab contains special filters and smart objects, so you can’t simply add a jpeg. You need an image, an XML file and a thumbnail. It’s probably easier to keep your artwork in a separate folder and then when you want to add a background to an open image click File à Place
    Then navigate to your background and click Place. That will automatically open as a smart object on a separate layer and you can easily scale it to size or use blend modes/opacity, without loss of quality.

  • How can I add a song to a playlist on my iPod?

    Since I upgraded to iTunes 12, I can't seem to add a song from my music to a playlist on my iPod.
    I tried two different ways:
    1) Click on Music, then click on Playlists, and show Songs. Open up the iPod in the sidebar by twirling the arrow next to the iPod. I can add a song to the iPod by dragging it over iPod / Music, but I cannot add a song to a playlist by dragging it directly over the playlist name.
    2) Click on iPod / Music. Try to drag the song from the iPod's music list to the iPod's playlist. Again, it won't let me.
    So, how on earth do I add a song to a playlist???
    Thanks

    Hey ElisabethR,
    I see that you wish to edit some of the playlists on your iPod from your computer and add some songs to them. The best way to do this would be to change the playlist as you wish in iTunes on your computer:
    iTunes 11 for Windows: Create a playlist
    http://support.apple.com/kb/PH12340
    Then, you can sync these playlists onto your iPod using the information in this article:
    Sync your iPhone, iPad and iPod with iTunes using USB - Apple Support
    http://support.apple.com/en-is/HT201253
    Thanks for using the Apple Support Communities!
    Cheers,
    Braden

  • How can I add custom toolbar buttons to load different TOCs?

    In my WebHelp output, I want to have custom buttons on the toolbar that when clicked load a specific TOC in the left navigation pane. For example, when the user clicks the PC button, the PC TOC loads in the left pane. When the user clicks the VM button, the VM TOC loads in the left pane. All of the help files are managed in one project and some files will appear in both TOCs.
    I think this should be possible but not sure how to make it happen. Is there some JavaScript that I should add to the custom toolbar item to load the TOC on click? How do I specify the TOC that I want to show for each button?
    BTW - I'm using RoboHelp 8 (8.0.2) to generate WebHelp output. Thanks in advance for your help!

    Hi there
    If you were to upgrade to RoboHelp 9 it would simplify your issue. Version 9 offers a new feature called Dynamic User-Centric Content (DUCC) and provides a nifty little drop-down selector in the Navigation Mini-toolbar.
    As you are on version 8 the only way I can fathom you would manage this is by generating two different outputs. Each output would use its respective TOC. The Toolbar button in each project could be configured to open the other project.
    You might first decry having to manage two outputs and all the files. But if you pick apart DUCC and the way it is configured by Adobe, it works in much the same manner. It's just hidden from your initial view.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • How can I add custom captions to a waveform graph scale?

    I have an application that displays one or more signals in a WvfmGraph.  The X Axis is set by a hardware encoder giving signals vs. distance (measured length).  I would like to change the caption of the XScale according to the values of one of the signals.  Its similar to an XY graph, but differs in that I want to see the data unrolled.
    The problem is that the X Axis scale markers are fixed.  I would like to ask the graph what is range property of the X Axis scale.  Then use that information and a derived position signal to replace the marker values with values from a derived signal that includes relative motion. 
    For example, measuring a unit 100 feet long results in measurements of 200 feet worth of data (out and back).  The customer would like to see this data unwrapped 0, 50, 100, 50, 0. 
    One alternative is to use an XY Graph, but the data on top of itself.  Not necessarily a bad thing, but not the same as what they have always had.
    I found a similar post to display the scale at a rotation (CW or CCW) and was able to get it to work for my specific case.  The problem is that my picture marker values are not aligning nicely with the corresponding gridlines. 
    Attachments:
    Position vs MeasuredDistance.PNG ‏43 KB
    Position vs. PseudoPosition.PNG ‏37 KB

    Stephen,
    Thanks for replying to my post.  XScale.Range does not handle this situation.  In "rigorous" terms, LV does the right thing with X axis scale markers and put them where you want.  I tried to set custom Marker values as: {0, 50, 100, 50, 0} and only saw the first three values.  My guess is that under the hood, the spacing is set to 'Arbitrary' and my custom values are overwritten.  Not what I intended, but I admit my task is not the normal use case.
    Today I am prototyping the entire application with each WvfmGraph replaced with XYGraph's.  Good thing I used a modular design and passed Refnums around to all my subVI's.  Depending on a review of this prototype, I might skip this graph scale formatting.
    FYI, the original graph issue wanted to rotate the marker labels CCW.  They hid the graphs XScale and used a custom picture to display the new scale.  There is a VI that formats an axis with custom labels, where the font, text, etc. can be customized.  I have a working example of that custom scale on a Wvfm graph.  I stopped refinement when I tried to consider use cases for how the user would zoom on the data, how the graph's label's would appear if the DAQ signal indicated that the part reversed on itself.  All the data is better visualized on an XY Graph.
    p.s. are you one of the Waterloo Labs engineers?  Great stuff!

  • How can i add custom art to playlist cover on iPad/iPhone/iPod?

    I make a lot of custom playlists, with songs from multiple albums and sometimes multiple artists in one playlist.
    Most are created on my Macbook Pro OS 10.6.8 (iTunes 10.6.1) and manually copied over to the devices- i don't automatically synch because my music libary is too big and complex. IE, iTunes is set to Manually Manage Music for these devices.
    On my i-devices (primarily iPad 2 and iPhone 4), the playlists show up without art work for the playlist, just a generic picture of a musical note, even tho on the source Macbook the songs have cover art.  I find this actually dangerous for use in my car, because it forces me to read the playlist titles. Just glancing at pictures would be much safer, quicker, and easier. But i can't find a way to make all the playlists show cover art.
    Playlists i create on the devices themselves DO show a tiled image of all the album covers for the art work.... which is fine. but i can't figure out a way to get playlists that are copied over from my Macbook to show art... and that's the main source of my playlists.
    help?
    i have too many devices -there's also an older iPod Touch i use in addition to the iPad and iPhone- and too many playlists to create each playlist on each device from scratch so that it shows artwork.
    Anyone have suggestions?
    (btw, if solution involves upgrading to Lion, i can't; i have software i have to use that doesn't work in Lion).

    ps iPad 2 is iOS 5.1

  • How can I add custom right-click-menu to column headers in JTable?

    Can anyone point me to a topic on how to customize a popup menu for column headers in JTable? Specifically, I want to add things like "auto-size column" and "hide column".
    Thanks,
    Matt

    Right-click on your table.  Then go to Advanced->Runtime Shortcut Menu->Edit.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • How can I add customer partner function entries in LSMW?

    I am using SAP ECC 6.0 with best practices installed. I am able to create sold-to customers using the batch input program RFBIDE00. 
    When I try to add partner function entries using structure BKNVP, it appears that the partner ID stored in KTONR is not populating SAPMF02D screen 324 after it is entered on screen 2324. I receive a “Data is incomplete; check” error.  I could not find an SAP note or other solution to correct this problem. 
    While searching for a solution, I found a few recommendations to use the IDOC message DEBMAS to create the partners function entries instead of batch input.  When I try to use this approach, I am receiving an error “Deletion is not allowed: SP is mandatory function”.  I was trying to add an SH (WE Ship-To) at the time. I found a reference that explained that all partners were replaced when this IDOC message is used.  It further explained that this should work if all partner references were included in the message.  This approach did not work either. I still receive this error if I omit or include an SP (AG Sold-To) record.
    Does anyone have a solution to either problem or another approach?

    Hi
       You can use LSMW :-
    1) Create a project , sub project and an object.
    2) execute it from 1 st screen to enter the object.
    3) You will find proces steps.
    4) In Maintain Object Attributes  choose Program Name RFBIDE00.
    or I-DOC or the way you want the input to be.
    5) You can proceed from there following the instruction..

  • How can I add a song that's playing to a play list easily

    How can I add a song to a playlist whilst the song is playing?  I was sown in a store have forgotten.

    There is a short cut.  I just cant remember what it is.

  • Podcast Problem - how can i add artwork to apple blog rss link

    hi,
    i create a wiki blog page on our mac server, on the blog page i add video for podcasting and i enable podcast service on wiki settings. Then i take rss link from safari and i subscribe to itunes but when itunes check my link, there isnt artwork and i cant change the rss link code cause of the link generated automaticly from java. What can i do for this problem or how can i add artwork to apple blog servers rss link ?
    Thank you

    Bonjour,
    The rules are simple: one entry = one page
    if an article needs several pages, start this article on blog entry then continue with a page made with welcome page template or blank page template.
    you can change the link of the buttons "next" and "previous" to visit the pages you choose.
    (select the link > inspector > Link > hyperlink > check enable as a hyperlink > choose "one of my pages" ).
    Don't include these other pages in navigation menu.
    (inspector > Page > Page > uncheck "include page in navigation menu").

Maybe you are looking for

  • Upgrade leopard to snow leopard with preexisiting snow leopard time machine backup

    I was using an old desktop Mac that had been upgraded to snow leopard from leopard a few years ago. Disk utility said I needed to repair my hard drive using the installation discs. I didn't have the snow leopard installation disc but still had the le

  • Redelivery of messages to JMS queue

    Hi,           I am using weblogic 9.2 JMS and MDB for processing messages from queue. Only one instance of Container Managed MDB is running and the important point is that queue sequence should be maintained. I have a problem now. Each message will b

  • Will mountain lion run powerpc (rosetta)

    hi im a student who needs powerpc to run on my mac is there any chance that mountain lion will run powerpc? thanks in advance

  • Which jar files for pcm.system.ISystems package?

    Hi , Which jar files are needed for the packages: com.sap.portal.pcm.system.ISystems com.sap.portal.pcm.system.ISystem and under which path I coul dfind them. Thnx Regards Meesum.

  • Can't use 3TB drive in Xserve drive caddy?

    I am using a 2006 Intel Xserve (10.6.8) at home for storing lots of multimedia. My 2 TB user drive, which is inside of one of the Xserve's drive caddies is nearly full. I purchased a $157 3 TB Seagate Barracuda (Model No. ST3000DM001) from Amazon and