Attaching user details to an image with asp

Hello i have a site done in asp that i have to try to fix
myslf so any help will be great.
bassically i have a page that should have an image that will
then have the user that is logged in pasted on it so they can print
it out but it doesnt work.
all i get when i sign in is a image place holder but no
image.
this seems to be the code that would create the image. any
help would be really good as i am running out of hair to pull.
src="cgi-bin/showthumb-discount.asp?JpegName=discount.jpg
and this is the showthumb-discount.asp
<%
dim frmfirst, frmlast, frmmembershipno, frmweddingdate,
frmpartnerfirst, frmpartnerlast
frmfirst=Request("text1")
frmlast=Request("text2")
frmmembershipno=Request("text3")
frmweddingdate=Request("text4")
frmpartnerfirst=Request("text5")
frmpartnerlast=Request("text6")
Response.Expires = 0
Response.Buffer = true
Response.Clear
Set Image = Server.CreateObject("csImageFile.Manage")
Set Image = Server.CreateObject("aspSmartImage.SmartImage")
Image.ReadFile Image.CurrentDir & "..\img\" & _
Request.QueryString("JpegName")
Image.TextOpaque = false
Image.Antialias = true
Image.TextFont = "Times New Roman"
Image.TextSize = 17
Image.TextColor = "000000"
Image.TextBold = true
Image.TextJustify = 0
Image.JpegQuality = 100
Image.Text 12, 110, frmfirst+" "+frmlast+" &
"+frmpartnerfirst+" "+frmpartnerlast
Image.TextFont = "Arial"
Image.TextSize = 12
Image.TextColor = "997e6b"
Image.Text 12, 142, "Wedding date: "+frmweddingdate &
vbCRLF & "Membership no. "+frmmembershipno
Response.ContentType = "image/jpeg"
Response.BinaryWrite Image.JPGData
thanks in advance for any help.

rizzlarus wrote:
> yes
> that sounds about right. the image will always be the
same, it is a card that
> once the user logs in the card then has certain details
put onto the card then
> the user can click the image and it should print out as
it is on the screen.
> thanks
>
You might want to look at a dynamic pdf creator maybe, like
www.asppdf.com, it can load an image into a new pdf and put
dynamic text
where ever you want. The PDF can be streamed into the browser
for the
user to print.
Depending on your server technology you could also use a
dynamic image
library, which will do the same as above but directly with
images.
Steve

Similar Messages

  • User Registration in internet: Image with random digits and letters

    Hi All,
    as one want to register himselft on a website, last days he sees next to personal infomation fields an image with randon letters and digits. He must enter in a field manually what he sees, to let the web-application know that he is no robot.
    Question 1. What is the name of it?
    Question 2. Is there any free jars to generate this images?
    Thanks to all.

    > :whisles: what?
    Okey nothing happend
    Stop talking about that
    -- Raddadi, "Reply #10"�

  • Where do 9i Lite user details reside when used with 9iAS?

    Hi there,
    Please can someone clarify the following for me. I understand that when using the 9i Lite Mobile Server in standalone mode, all the user definitions live in the mobile server repository schema.
    I'm wondering about where this information lives when running the 9i Lite Mobile Server as part of 9iAS. Does the user information HAVE to go into the OID (ie the LDAP directory), or can it remain in the mobile server repository schema?
    Thanks in advance for any information,
    Simon.

    No problem. We are working on publishing extensive resources for Lite on OTN. Feel free to let us know if there are specific areas you would like covered.
    --kalle                                                                                                                                                                                                                                                                                                                                           

  • Is it possible to attach image with specific size?

    Hi,
    My company is very interested in Adobe LiveCycle Reader Extensions, as it suits most of our requirements. However, we want to know more about it.
    When our users submit their forms, they need to attach an image for submission as well. The image we need is fixed size, e.g. 800x600 pixels. Can Adobe LiveCycle Reader Extensions define the requirements of the attachment/image, i.e. if the user submit a 640x480 image, the acrobat reader will return an error so that the image with incorrect format won't be able to submit?

    I don't think that LiveCycle Reader Extensions is the product that you need to accomplish this.
    Can you give a bit more details of what you are trying to accomplish?
    Mike
    Mike Potter
    Adobe Enterprise Developer Relations

  • User Details iView - show an image as property

    Hi,
    I would like to add an image to the user details iView showing the gender of the person (e.g. male = blue icon, female = red icon).
    So the shown image must be depending on the users gender.
    Do you know if this is possible? Is it only a "simple" Layout render or something else?
    Showing icons should be possible I think (the collaboration visible status is also there). But how can I add own Icons representing a property?
    Would be great if you could tell me if this is possible and how.
    Thanks in advance.
    Stefan

    Hi Stefan,
    how do you add the text? As plain HTML? This would explain why it looks different from the rest of your text since plain HTML by default doesn't get the font style that is applied to other HTMLB elements.
    Three ways to style the text the way you want it:
    1) Use an HTMLB control which renders the font the way you want it (e.g. label)
    2) View the source code of your generated HTML. Find a text snippet which looks the way you want your text to look. Copy the CSS class and add it to your text for example with a span:
    <span class="classnameyoulookedup">Your Text</span>
    3) Add the styling you want directly inline to your text:
    <span style="font-size:...">Your text</span>
    I hope this helps,
    Esther

  • Help with ASP Connections - New User

    I just set up a hosting account with 1 and 1 for a simple
    website to catalog a series of yo-yo contest that we coordinate. I
    have a simple MS Access database for organizing contest information
    that we are trying to get online.
    I am new to the application side of this and know very little
    about connection strings, DSN, etc. I am experiencing problems with
    connecting to the MS Access database that I have uploaded to the
    1and 1 servers. If I hardcode the Javascript into the page, I can
    connect and pull information but I definitely want to take
    advantage of the design interface that Dreamweaver MX 2004 offers.
    This is the code from the page that I can get working based
    on the FAQ Sheet that 1and 1 offers for database connections:
    <html>
    <title>Database query using ASP</title>
    <body bgcolor="FFFFFF">
    <h2>Query table <b>Products</b> with
    ASP</h2>
    <%
    Set dbaseConn = Server.CreateObject("ADODB.Connection")
    dbaseConn.Open "DRIVER={Microsoft Access Driver
    (*.mdb)};DBQ=" & Server.Mappath("\db\League.mdb") & ";"
    SQLQuery = "SELECT * FROM Contest_Information"
    Set RS = dbaseConn.Execute(SQLQuery)
    %>
    <%
    Do While Not RS.EOF
    %>
    <%=RS("cStartDate")%>, <%=RS("cName")%>,
    <%=RS("cWebsite")%> List
    <p>
    <%
    RS.MoveNext
    Loop
    RS.Close
    Set RS = Nothing
    dbaseConn.Close
    Set dbaseConn = Nothing
    %>
    </body>
    </html>
    If I put in a "Custom Connection String" using the previous
    code:
    "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" &
    Server.Mappath("\db\League.mdb") & ";"
    Dreamweaver can connect to the database when the connection
    is 'tested' but cannot pull any tables and therefore cannot create
    bindings.
    Guidance...help...I'm stuck...
    Thanks in advance.

    Hello Lucky.da.boss,
    And welcome to Apple Discussions!
    is asking can I or is there anyway i can transfer my music off that iPod to my touch?
    See this article for tips on how to copy music from your 5th generation iPod to your iTunes library. Once you have successfully done that, you can sync them over to your iPod Touch. There is no way to do it directly.
    http://macs.about.com/od/backupsarchives/ss/ipodcopy.htm
    Also, I have two applications that aren't downloading I want to know how to delete them.
    Tap your finger on one of them and hold it there until you see all your Apps start to wiggle. You will also see a small x in the upper right hand corner of the Apps you can delete. Go ahead and tap this to delete the App. When you are finished, hit the Home button to make the Apps stop wiggling. It might also help to have a look at your iPod's *User Guide.
    http://manuals.info.apple.com/enUS/iPod_touch_iOS4.1_UserGuide.pdf
    Can you have constant internet service or do they run solely off wi-fi?
    Only Wi-fi.
    B-rock

  • HELP!!!! I have spent hours trying to find out how to embed an image with a link or a Microsoft Word document with a hyperlink built within the document -- not as an attachment! Does ANYONE know the secret? Can it be done, or not! My PC clients do it.

    HELP!!!! I have spent hours trying to find out how to embed an image with a link, or embed a Microsoft Word document with a hyperlink built within the document -- not as an attachment into my email -- but where it shows as the email content when opened! Does ANYONE know the secret? Can it be done, or not? My PC clients do it all the time easily. Then I want to be able to send the embedded image/document (not as an attachment, but visable within the email when opened) to many email contacts at once, BUT the individuals receiveing them DO NOT SEE the other email contacts. Cannot seem to be able to find anything on being able to do these 2 tasks.PLEASE, SOMEONE, HELP!!!

    Don't know if this applies to Lion, but read here:
    http://www.makeuseof.com/tag/create-html-announcement-mail-iweb-mac/

  • Update Request User Details with updateRegistrationUserDetails

    Hi,
    I have the following scenario: The Self-Registration form is defined with the fields First Name, Middle Name, Last Name, Manager Login. When the request is created, based on the Manager Login, the other user's attributes are set according to the Manager's Attributes. So when the manager goes to approve the request, most of the user information are already set. To update the User Details in the request, I can call the updateRegistrationUserDetails of Request API.
    Problem: I can not update the fields other than those defined in the FormMetadata.Xml. So I have to add the fields and set them as optional but I don't want to show non required fields to the end-user. I wish to have those attributes as not visible in the self-request form. Then I can update the information using the API.
    Question: How to add fields to the User Details of the request and not show them in the self-request form?
    Thanks,

    As I've said, I could not update the request fields that were not declared in the FormMetadata.xml. You can try set them as not visible but I am not sure the visibile attribute works for the SelfRegistration form. If it is not a problem, you can show the fields and set them as optional true. In my exaple, the SelfReg form has a manager employee code field.
    Create an entity adapter and assign it to the Request object, pre-insert.
    1) create two variables: requestKey, requestObjecAction, managerEmpCode (in my example)
    2) test if the request object action is Create Entity.
    3) call the method to update the request. below is my example:
         // Updates the request with the information of manager: Manager Login,
         // Location, Department and Organization
         public String updateRequestWithManagerInfo(long requestKey, String managerEmpCode) {
              String result = JavaTaskBase.EXECUTION_ERROR;
              logger.debug("******** Starting updateRequestWithManagerInfo *************");
              logger.debug("requestKey: " + requestKey);
              logger.debug("managerEmpCode: " + managerEmpCode);
              try {
                   HashMap<String, String> filter = new HashMap<String, String>();
                   filter.put(JavaTaskBase.USR_UDF_EMPLOYEE_ID, managerEmpCode);
                   String[] columns = new String[] { JavaTaskBase.USER_KEY_FIELD,
                             JavaTaskBase.USER_LOGIN_FIELD, JavaTaskBase.USR_UDF_LOCATION,
                             JavaTaskBase.USR_UDF_HR_DEPARTMENT,
                             JavaTaskBase.ORGANIZATION_ATTRIBUTE_NAME };
                   logger.debug("Querying User by EmpCode...");
                   // Update Request Attributes: requestKey, ManagerId
                   tcResultSet resultSet = this.getUserOperations().findUsersFiltered(filter, columns);
                   logger.debug("tcResultSet.getTotaRowCount(): "+ resultSet.getTotalRowCount());
                   resultSet.goToRow(0);
                   String organizationName = resultSet.getStringValue(JavaTaskBase.ORGANIZATION_ATTRIBUTE_NAME);
                   String managerLogin = resultSet.getStringValue(JavaTaskBase.USER_LOGIN_FIELD);
                   String managerLocation = resultSet.getStringValue(JavaTaskBase.USR_UDF_LOCATION);
                   String managerDepto = resultSet.getStringValue(JavaTaskBase.USR_UDF_HR_DEPARTMENT);
                   String managerKey = resultSet.getStringValue(JavaTaskBase.USER_KEY_FIELD);
                   logger.debug("Manager Organization: " + organizationName);
                   logger.debug("Manager Login: " + managerLogin);
                   logger.debug("Manager Location: " + managerLocation);
                   logger.debug("Manager Department: " + managerDepto);
                   logger.debug("Manager Key: " + managerKey);
                   // Prepares the information to update the request
                   HashMap<String, String> values = new HashMap<String, String>();
                   values.put(JavaTaskBase.ORGANIZATION_ATTRIBUTE_NAME, organizationName);
                   values.put(JavaTaskBase.USR_UDF_LOCATION, managerLocation);
                   values.put(JavaTaskBase.USR_UDF_HR_DEPARTMENT, managerDepto);
                   values.put(JavaTaskBase.USER_MANAGER_LOGIN, managerLogin);
                   logger.debug("Updating Request Info...");
                   // Updates the request
                   this.getRequestOperations().updateRegistrationUserDetails(
                             requestKey, values);
                   logger.debug("Request Updated Successfulfy.");
                   result = managerKey;
              } catch (Exception ex) {
                   logger.error("Error in updateRequestWithManagerInfo method", ex);
                   ex.printStackTrace();
                   result = JavaTaskBase.EXECUTION_ERROR;
              return result;
    thanks,
    Renato.

  • Load image from SQL database with ASP?

    Hello,
    Does anyone know a tutorial where you can load an image from
    a SQL database ?
    I would like to show this image in Flash, but i don't know
    how to load in from a SQL database using ASP.
    Regards,
    Micheal

    Flash cannot load images from an SQL database.
    Flash can load JPEG, PNG, GIF, SWF, MP3, and FLV files.
    An SQL database can be used to store the file names and their
    location. ASP can retrieve that data from the SQL and return to
    Flash to load the above file formats.
    For Flash to do the communication with ASP you need to
    determine if you are using URL Encoded or XML data structures.
    For URL Encoded data you look at
    LoadVars.sendAndLoad
    For XML Encoded data you look at
    XML.sendAndLoad
    Then in their onLoad methods you use
    MovieClip.loadMovie
    to load JPEG, GIF, PNG and SWF;
    Sound.loadSound
    for MP3,
    NetConnection.connect,
    Video.attachVideo and NetStream.play for FLV.
    For the ASP side the work with the database has nothing to do
    with Flash other than using any search variable sent from Flash
    with LoadVars.sendAndLoad or XML.sendAndLoad. In other words it
    could be an HTML form sending the same variable and calling the
    same ASP script. Same with returning values except with Flash only
    URL Encoded or XML data structures are sent back and not
    HTML.

  • My lock screen just shows a black background and a User Name/Password dialog after opening the screen from sleep. How do I get it back to where it blurs my desktop image with the dialog and my account image displayed?

    I'm not sure when it began, but now my Macbook Air only shows a black background and a User Name and Password dialog box when I wake it from sleep. It used to show my desktop background blurred with my user name and icon displayed with only a text field for entering my password. I'm currently using Yosemite (OS X 10.10.1) and all updates have been done. Any help or suggestions would be greatly appreciated as I know this isn't a real problem, just an annoyance since I couldn't find how to change it back in the System Preferences.

    I just have to point out that after looking at a related post (https://discussions.apple.com/message/22661092#22661092), it brought to memory that my issue most certainly began happening after I added some DoD certificates to the keychain. This obviously has something to do with it, but it still leaves me wondering what actually causes this to happen. :/

  • Importing images with Lightroom 2  & Camera RAW 4.5

    The following query has been raised with Adobe Technical Support (5 days ago and I am still waiting for a response/reply. They claim to reply within 24 hours but they have not on this occasion......they seem to be ignoring me
    Perhaps a fellow user can help to identify or resolve the problem.
    Operating System:
    Windows XP Professional (Service Pack 3)
    Software:
    Adobe Design Premium CS3 (10.0.1); Photoshop Lightroom 1.4 (which was working fine) and Lightroom 2 (on trial and not working particularly well)
    I am using a trial download of Photoshop Lightroom 2 (with Camera RAW 4.5 in Photoshop CS3).
    I am having a few problems with editing Lightroom 2 images in Photoshop CS3 but I understand that Adobe is currently investigating a solution to this problem.
    I have also noticed another potential problem since I have started to import images from a computer drive to Lightroom 2 and converting the Manufacturers RAW files to DNG (with the option to leave the files at their current location/drive).
    My RAW and JPEG files open ok in Camera RAW (v 4.5) for basic editing and subsequently to Photoshop for more detailed work. The problem is that all my images are now opening as Smart Objects by default in Photoshop CS3, as opposed to opening as a Background layer". (I have not knowingly opted to use the Open as Smart Object option.
    I am not entirely sure how this came about but I have also lost the capacity to edit images with empty Levels adjustment layers or percentage (%) grey fill option).
    I am able to highlight the respective layer and create the empty Levels adjustment layer, change the blend mode to either Multiply or Screen, fill the Layer Mask with Black (Alt & backspace), change the opacity level as desired, select the brush tool and change the foreground colour to white to enable the applicable Dodge or Burn processes.
    Unfortunately, it does not function irrespective of the preferred opacity level. The Dodge or Burn feature is static with no effect on the image.
    I cannot recall any settings to open all files as Smart Objects in Photoshop CS3 but would welcome some help in identifying such a setting if it exists. Alternatively, I would welcome any other suggested methods of correcting the above difficulties.
    The same difficulties are evident when I try to use the Dodge or Burn features via the Edit and Fill option with a percentage of Grey and the Overlay Blend Mode.
    The "Common Denominator" of the above difficulties appear to be Lightroom 2 and Camera RAW 4.5 (individually and or collectively) and now I am stuck between a rock and a hard place.
    Are any other users experiencing similar issues or have any suggestions about how I might correct or resolve these problems? ......
    I am not afraid of hearing or accepting that the "Dummy Factor" has played some part or how I may release myself from the said "Dummy Factor".....any help is welcome help.
    Adobe Technical Support seems to be ignoring me......I wonder why?
    Regards
    Bob Wallace

    Essentially you are wrapping the raw image data into a special type of layer, a "smart object". You can then revisit and fine tune the Camera Raw conversion as often as you want and take advantage of working directly on the raw data in its pre-Photoshop purity. You can also apply to this smart object layer a number of Photoshop adjustments and filters - and again redo and fine tune them as often as you wish.
    You'll find them explained in a number of recent books. I know Scott Kelby is keen on them, there are examples on Russell Brown's site, and my own book last year on B&W strongly advocated their use.
    Have a play.
    John

  • Create a PDF form to allow users to upload an image in Adobe Reader?

    Heres my MAC workflow.
    CS4 Indesign > Acrobat Pro 9 >
    Forms > Add Edit Form Fields
    then I create a button. (where I want the image placed)
    Options > Icon Only, Push
    Action > Run Javascript
    event.target.buttonImportIcon();
    Extend features for Reader.
    But no joy.
    The image will upload in Pro
    But I get an Error in reader
    NotAllowedError: Security Settings prevent access to this property.
    Really, it seem like an image upload would be such a standard requirement?
    anyway how can I make this happen?
    or if I am fighting a losing battle, tell me to quit wasting my time.
    Small company, an enterprising solution is not in the budget.
    Thanks!

    You're fighting a losing battle, at least if you want to use a button for this. It is silly that they restrict Reader this way, and I always urge folks to submit a feature request in the hope that it may get restored in the future. You used to be able to do this with Reader, but they took it away. You can add to my feature request I made (again) last year: http://forums.adobe.com/thread/743823
    The best you can do with Reader now is to Reader-enable the form. This will allow the user to be able to paste an image that they somehow manage to get copied to the clipboard onto a page in the form of a stamp. You just have to instruct them how to copy an image to the clipboard. They are allowed to resize, move, and rotate, which is less than ideal.
    The other option is to attach a file as a comment, though the image is not then visible on screen, but at least it gets included in the document and is easily accessible to the recipient.
    The final option is to create the form using LiveCycle Designer, which is available with the Windows version of Acrobat Pro but not the Mac. It has an image field that allows the user to select an image, much as with a button in Acrobat. The fact that you can do it with an XFA form but not an AcroForm makes this restriction even sillier.

  • No images with isight ? ?

    Hi,
    I cant see any images with the isight camera on my new imac, the green light is on, but no images in Photo Booth, imovie and ichat. Need help. Thanks.

    Welcome to Apple Discussions, Christian Rodier
    Your problem may be hardware related, but until you get better suggestions from iNtel Mac users, here are some common solutions that help most avoid a visit to their Apple Service Technician.
    None of the suggestions is complicated, but the only way to find which one will work for you is to try each relevant item one-by-one until you find the one that fixes your Mac.
    (0) Disconnect any unnecessary peripherals while you do your testing to rule out possible conflicts. 
    (1) Restart your Mac. Sometimes that is all that is required.
    (2) If you use VMware Fusion to run Windows on your Mac, consider disconnecting iSight from your Virtual Machine as recommended by user "The.VCI" in this post.
    (3) If you use an HP printer/scanner with your Mac, consider the "daemon" suggestions from user "parkersal" in this post.
    (4) Check for any running applications, Login Items, or widgets that can use your iSight. (It is easy to forget widgets like Mirror in your Dashboard.) As explained in Apple's iSight "Your camera is in use by another application" message, iSight can be used by one application at a time.
    (5) Try every suggestion re: Built-in iSight in How to Troubleshoot iSight. You have already verified that the problem is not "application-specific." Be sure to also check whether the problem is "user-specific".
    Click here if you need help creating a new user account to check whether your problem is "user-specific" during Troubleshooting.
    (6) If resetting or the other troubleshooting suggestions do correct your problem, try the following:
    • Backup your Home Folder, or at very least, your important files.
    • Repair permissions. (Click here if you need help.)
    • Then download and apply the Mac OS X 10.4.10 Combo Update v1.1 (iNtel).
    • Finish with another Permissions Repair, and then check your iSight again.
    Users have reported fixes to a variety of audio, video, connectivity, and software conflicts and unreliability issues after properly applying Combo Updates.
    (7) Some iNtel Mac laptop users have also reported success after unplugging their Macs and leaving the battery out for half-an-hour to overnight. You might want to try unplugging EVERYTHING from your iMac to see if that might help you.
    (8) If none of these suggestions help, I suggest that you take your iMac to your Apple-Authorized Service Provider for a professional check.
    Please let us know what fixes it for you. That information may help others who also have your problem.
    If you must post back for clarification or more information, please tell us if you are seeing any error messages when you try to use "Photo Booth, imovie and ichat". Perhaps you are seeing a message that no camera is connected or that your camera is in use by another application. Perhaps you see green or black screens where your iSight's image preview should be. The more details you can give, including whether your iSight shows as a USB device in your System Profiler, the more likely our next suggestions can be helpful.
    EZ Jim
    PowerBook 1.67 GHz   Mac OS X (10.4.10)    G5 DP 1.8  External iSight

  • Capturing image with electronic signature.

    A new functionality of electronic signature is provided with webcenter content. We can create metadata for electronic signature but its type can only be text, int, checkbox, lontText etc. It does not allow capturing image.
    As per our requirement we want a process like
    1. System will allow every user to upload an image of his signature. (We can do it by normal check in so no problem here)
    2. Electronic signature should be configured to take image as a metadata. (Currently I believe signature can't take image)
    3. When user signs a document, image metadata should get automatically populated with users signature as checked in in first step. (Currently I believe we can't set default value for signature metadata)
    4. User should provide password and other metadata information and document should get signed. (No problem here)
    5. As part of water mark we should be able to show image of signature on document.
    How should we achieve it?
    Thanks
    Sanjeev.

    I believe there's a disconnect between what an official "electronic signature" is vs. other electronic signatures. There is a defined regulation that states what an official electronic record signature is: 21 cfr part 11 .
    putting an image isn't a 'real' esig.
    I do not believe that WCContent's new esig feature is what you're after.
    I'm not sure exactly what the last few lines of your previous post were after, but you might be able to get away with only using the PDF Watermark component if you just want to stamp specific content into the pdf.
    If you want to stamp images into pdfs, you'll have to create a custom component that does some custom image manipulation, I believe.
    If you have a requirement for 'real' electronic signatures. you should check if your requirement needs to follow 21 cfr part 11. if so, then you should use what WCContent offers out of the box.
    This document seems to cover the topic in very good detail:
    http://www.usdatamanagement.com/attachments/article/274/Oracle-ECM-Part-11-Certification-White%20Paper.pdf
    Does this help separate what UCM offers as an esig vs. stamping an ink-signature image into a pdf?
    -ryan

  • Push image with Podcast - metadata required?

    Hi there,
    I am testing out my new podcast within iTunes.
    I have my RSS feed, and within iTunes I have done the following:
    - Go to the "Advanced" menu
    - Click "Subscribe to a podcast"
    Once I enter the URL to my RSS file, the file begins to download in iTunes.
    Once the file is successfully downloaded, I right-click on it in my podcast menu, and choose "Get Info". This is where my problem is. There is no album artwork available.
    I know that I can manually add atrwork as an end user, but I don't want that.
    I want to send out the image with the podcast, so that it is automatically downloaded and entered in the album atrwork space.
    I have subscribed to many podcasts manually that seem to send out an image which is automatically downloaded and entered in the image artwork area.
    Can anyone tell me know this is done? Is this specified in the XML file? I'm a little confused.
    Any help would be great.
    Kind regards
    K

    Hi there,
    Its the "Cover Art" that isn't working. I added the artwork to the mp3 file through iTunes music library, and I then re-uploaded the mp3 file to the server (with the artwork attached). I then manually subscribed to the RSS feed. The mp3 downloaded successfully, but the artwork was still not included when I right clicked on the track and chose "Get info". It seems to be getting stripped out somewhere, but I can't figure out where.
    I am waiting to see if my podcast is submitted to iTunes....I only did it yesterday. It can take 5 days can't it? Here it is: www.jonathanpilling.co.uk/kubik.xml
    Thanks for any advice.
    K

Maybe you are looking for

  • My computer is not authorized...

    Recently, my hard drive crashed, but I was able to save all previously purchased iTunes songs onto a disc. Now that I have had to completely clear my hard drive and reinstall Windows on my computer, I reinstalled iTunes in order to load my songs back

  • Account Determination based on Item category

    Hello Friends, My client needs the Free of Charge scenario. I configured the new item category and attached the R100 condition type in Pricing procedure. System is able to calculate the value for main material and the value is zero for Free goods. Bu

  • Manage integrators with "Desktop Integration Manager"

    Hi, I am trying to get to the Desktop Integration Manager menu as described in the Desktop Integration Framework Developer's Guide Release 12.1 (on page 17 / 2-1): To manage integrators: 1. Navigate to the Integrators page from the Oracle E-Business

  • Multiple itunes on ipad

    how can i set up my new ipad so that my kids can add apps without affecting my work iphone?

  • Adobe Premiere Pro CS6: Header error

    I have been using WMV files multiple times on Adobe Premiere Pro without any problems. My webcam videos are the WMV files, and I have been able to edit them before, until now all of a sudden. Every time I import this one video in particular, it gives