Podcast help for a noob

Hey guys, noob to podcasts.
My problem:
I subscribe to a podcast, and it starts downloading the podcast program. It downloads for a bit, then stops, so I go to the podcast part of the library, and double click the program to play it, but all it does is start downloading again.
I've tried various programs, but it just does the same thing with each one.
Help!

Can you include any kind of actionscript in the swf's that
you can create? If so, then that would probably be all you'll
need.

Similar Messages

  • Help for a noob please...

    OK, before I start, if this is in the wrong section of the
    forum I hope a mod can move it.
    I am very VERY new at flash. Here' s what I would like to
    accomplish...
    I have a graphic of a sandy like texture. I have a second
    graphic of the same material with the word "Home" or "Links"
    written into it ,like a finger writing in sand. I would like the
    menu to behave like this. It will be vertical on the left side and
    look like a box of sand, as you mouse over the box each menu
    'button' will morph into the written-in-sand word. Then on the
    mouse out action it goes back to a sandy texture.
    Hope that made sense....I am guessing flash can't morph
    graphics like that. I have software that can morph the images and
    create a .swf file. If I made 2 morphing .swf files (one from sand
    to word and another from word to sand) can I use them to create the
    action with mouse over /mouse out/ and url link that I am looking
    for in flash? I'm guessing I'm in waaaay over my head for a noob
    trying to figure this out....but hey , I like a challenge...as long
    as it's a do-able challenge.
    Thanks in advance
    B

    Can you include any kind of actionscript in the swf's that
    you can create? If so, then that would probably be all you'll
    need.

  • Podcast Help for xml file!

    Hi!
    I am creating a podcast for my primary school that I work at.....yet I am having difficulties getting the text file to go with it.
    We used epodcast producer to make the mp3 file - but where do i go from here?
    Ultimately we want to list the podcast on itunes, but at the moment - people go to our website www.westonpoint.ik.org and download it manually from there in the documents choice.
    Where do we go from here?
    Cheers
    Chris
      Windows XP  

    http://www.podcast411.com/howto_1.html
    Read this tutorial - including all the comments at the bottom.
    Then let me know if you have any other questions.
    Rob @ podCast411

  • To Sleep or not to Sleep... help for a noob

    Hi there,
    New to macs and needed to know wether its better to put my new iMac intel to sleep or to log it off...
    Hope you can help....

    You have to look at other things too when considering whether to put to sleep or switch off.
    Power Supply Issues
    Do you live in a country which has a good, regular and reliable power supply. Which does not suffer, brown outs or black outs or power spikes.
    If you do live in a country with a good supply then I would invest in a Surge protection Power strip, plug your Mac into that and then just put it to sleep.
    The Weather
    Do you live somewhere where storms are very frequent? If you do then you are probably used to pulling electrical equipment from the wall when a lightening storm is happening. So the same precaution should be done here.
    Security and location
    Would it be more secure to put switch the Mac off? For example is it's location going to present itself to anything liquid or which could otherwise damage the machine.
    Remember putting a system to sleep, especially if you haven't logged out and then pulling it out from the wall will certainly do it damage.
    Mark

  • Help for JRUN Noob

    I have never run Cfusion in multi-server config and want to
    start. I have installed the multi-server config on my dev box using
    the built-in server. I am totally confused (yes, i've been reading
    docs/websites) about where I now put my .cfm templates for
    processing.
    I have one instance "Samples" running at
    c:\JRUN4\servers/samples on port 8200. I don't see it in the
    Coldfusion Administrator Instance Manager, but in the JRUN manager
    there are two more instances CFusion on 8300 and Admin on 8100.
    I have been unable to server a cf template under any of these
    directories.
    I also tried to server a page from 127.0.0.1:8500 and still
    get the "Page cannot be displayed" error.
    I'd appreciate it if someone could point me in the right
    direction. In addition I'm going to need to run this setup on IIS
    at work and have found even less clear instructions on that setup.
    I really appreciate your help in this.
    MF

    You're going to want to put your cfml in a directory common
    to your IIS install. You'll then use the web server configurator
    located under Program Files -> Macromedia to bind your web site
    to your clustered CF install.

  • Source help for a noob please!

    I just got an ipod and my sis had an I pod hooked up to this computer too, but I thought her stuff (source) was deleted but it just showed up out of no where and just disapears again in the source menus. she don’t have that ipod anymore so I dunno what I can do with that source, I cant delete it I cant use the songs in it to put in my library cant do anything with it any ideas??

    "uninstall itunes, then reinstall with new ipod hooked up."
    i have gone one step better i had reformated the hard drive and a new install of itunes so its still came back if i delet i tunes and put it back im sure it will come back again!?! anyone else have any ideas! help!

  • Some help for a noob please

    public class MilesandFurlongs
    private int miles;
    private int furlongs;
    public MilesandFurlongs(int longDistance, int shortDistance)
    miles = longDistance;
    furlongs = shortDistance;
    public int getFurlongs()
    return furlongs;
    public int getMiles()
    return miles;
    public void printDetails()
    System.out.println("Miles: "+ miles + "Furlongs: "+furlongs);
    public void print()
    System.out.println("Miles: "+ miles);
    System.out.println("Furlongs: " + furlongs);
    if (furlongs == <8 && value == 7){
    value = 8;
    else {
    miles = (miles + 1) % miles;
    this is all the code I have so far, and am a bit stuck on my 'if' statement. Im trying to set a limit to furlongs to 8 and when that is reached 1 is added to mile and furlongs is reset to 0. i know this sounds basic but im just starting out, many thanks

    This should be what you are trying to do based on what I read..
        public class MilesandFurlongs
          private int miles;
          private int furlongs;
           public MilesandFurlongs(int longDistance, int shortDistance)
             miles = longDistance;
             furlongs = shortDistance;
           public int getFurlongs()
             return furlongs;
           public int getMiles()
             return miles;
           public void printDetails()
             System.out.println("Miles: "+ miles + "Furlongs: "+furlongs);
           public void print()
             System.out.println("Miles: "+ miles);
             System.out.println("Furlongs: " + furlongs);
             if (furlongs <= 8){
                value = 8;
             else {
                furlongs = 0;
                miles += 1;
       }Basically, you made these mistakes:
    You had a variable you did not use.
    You had a { from out of nowhere.
    And you did ==< when it should have been <= because, lets work this one out, less than(<) or equal to(=) makes a <=.
    Hope that helps...
    btw, what's a furlong? :-D

  • A little help for a noob

    I have all sorts of sounds and samples in a folder called loops. Many of these are from the AMG jam packs. I just purchased a new macbook pro and when I go to use mainstage it will not find the sounds in this folder. On my previous macbook I had used many of these sounds in mainstage. Can anyone tell me why I can not load these sounds? Is there a way to load these sounds directly into mainstage? Thanks.

    that would be a really cool idea (jam along to drum loops) but I don't believe Mainstage is built for that. You can manage it fine with Logic Pro though by enabling Software Monitoring and record-enabling your guitar track while playing a loop.

  • I realize I must be the last person looking for THE PODCAST APP for my new iPod touch, but after looking 4 times, I have given up thinking that app must be long retired now...thanks to anyone who could help a late-bloomer.

    I realize I might be one of the last first-time buyers of an iPod Touch (latest version) but I cannot find the PODCAST APP for it anywhere! After wasting a total of an hour on 4 separate occasions today, I've given up, thinking perhaps I AM the last person who would need this app & it's 'retired'. Even typing in PODCAST APP & hitting the magnifier 10X's did NOTHING but hurt my finger tip. Could some nice person please help CONFUSED & CRAZED in CONNECTICUT? Thank you in advance!  Oh, one more question- How does 'one' get their older iPod players like the BOSE & 2 other good ones I have, WITH the Bluetooth music receivers I bought already on them, to actually DO what its designed to? Now add clueless, to my previous sign-off & not BORN in 1995! But, hey, I'm trying! ; )

    You can connect the iPod to a computer and download the Podcast app using iTunes >  https://itunes.apple.com/us/app/podcasts/id525463029?mt=8
    Or, on your iPod, tap the App Store then type in Podcast then download the app. (It has the same purple icon as the one at the iTunes Store on a computer).
    Only iPods with Bluetooth capability can, "pair" with Bluetooth BOSE devices.
    On an iPod touch, tap Settings > Bluetooth.

  • In the former version of iTunes there was an option by means of which I could see the most recent podcast even for those I did not subscribe to. Apparently, with 11.2 this option is gone. Any help?

    Hi folks,
    in former versions of iTunes I could update the list of available podcasts even for those I did not subscribe to.
    Where is this feature in iTunes 11.2?
    Help is appreciated!
    Regards
    Klaus

    well nobody bothered to give me a hint on what to do, maybe because the problems with the new version of iTunes are really a lot, there is an enormous amount of people out there that have all sort of different problems including mine  so I have decided to return to the previous version which works fine and wait untill the apple people come up with a decent product ....

  • Does apple have an email contact for podcast help?

    anyone know an apple email contact for podcast help? cos there's not much help here lets face it, pretty much everything is unanswered

    iTunes Support
    For future reference this forum is for discussing Developer issues. If you have more problems with iTunes you should direct you questions to the forum for iTunes

  • Have a 3rd gen nano, when I plug in  I get "Podcasts on this IPOD cannot be synced because all of the podcasts selected for syncing no longer exist." I have no podcasts in my IPOD or queued in library. Help pls. Thx

    Wnen I plug in my IPOD, I gret the error message " Podcasts on this IPOD cannot be synced because all of the podcasts selected for syncing no longer exist. I have no podcasts in my IPOD or queued in I tunes at pfresent. When I did try to sync a current podcast, nothing happened although the podcasts did show in my library. I did play around with podcasts several months ago, but just listened to them on the computer, the IPOD was plugged in at times though, although not set up...thx

    Click here and follow the instructions.
    (27971)

  • I'm planning on making my own Podcast channel for my world of warcraft videos, how to I get started?

    I'm planning on making my own Podcast channel for my world of warcraft videos, how to I get started? I'm using my MacBook, Mac OS X (10.6) for my video editing and using my HP Pavilion, Windows 7, g6t-2000 Notebook PC 64-bit for my video recording.

    You may find my 'get you started' page on podcasting helpful.
    http://rfwilmut.net/pc
    It's written with audio podcasts in mind but will explain the general principles for you - ths concept of a 'feed' is the same for audio and video.
    You should also check this Apple Tech note for information about formatting video
    http://www.apple.com/itunes/podcasts/specs.html#formattingvideo

  • Where can I download the Apple Podcast app for my iPad?

    HELP!!! Where can I download the Apple Podcast app for my iPad? I urgently needed space to snap some photos, so I quickly deleted several low priority apps to make space.  One of those was the apple Podcast app which I now can't find anywhere.

    There is no Podcasts app that "comes with" the iPad. It is made by Apple but you have to download it. See if this direct link works:
    https://itunes.apple.com/us/app/podcasts/id525463029?mt=8

  • Can i save a podcast without taking up space on nano 6, i keep getting error message space is used up but I don't want to lose the podcast episode for the future

    can i save a podcast without taking up space on nano 6, i keep getting error message space is used up but I don't want to lose the podcast episode for the future

    Sorry to be such a moron with this, but I just don't have much experience with this iPad.  I have had it for over a year and I just keep adding stuff to it and it has worked great.  Now that the memory is used up, I am trying to figure out how to free up space and not lose what I have paid for. 
    So, Step 1 is complete, as I have "Transferred" all of the purchases.
    What is Step 2?  I unchecked the concert on the iTunes library, did a sync, but it's still on my iPad.
    Thanks again for the help!!!

Maybe you are looking for

  • How to find status of rows (changed or not)

    Hi, Is there any way to find if a row status is changed (but not commited) and which user has made the change? we need to avoid lock so we want to check if there is a row in our select statement that may cause the lock. your answer is so appreciated

  • On startup itunes library empty!! - help

    A friend called me just now he's a new Mac user on an inherited ibook G3, 10.3.9. He started up his ibook today and the itunes library is empty. Understandibly he is freaking out and learnig the lesson of reasons to have a good backup strategy. Howev

  • IOS Developer Program - Enrollment In Review

    My Apple Developer Connection application for my business has been stuck in the "Enrollment In Review" stage for a month now. I've faxed over all required info, have called and emailed a few times, but get no reply over email and on the phone no one

  • Fact columns in dimension table

    In OBIEE, Can we use a fact column in related dimension table in case this column is just an description column? Yup I know that use fact columns in fact and dimension in dimension.. But what exactly will be issue if we do this? I observed it in one

  • Wrong email content

    Once or twice a week I get an email from a trusted source and the content is junk. When I check the same email on my MacBookPro it has the correct content. (By junk I mean incorrect content, sometimes an ad sometimes content from another trusted sour