AS3 Twitter Feed Error 1010

Hi
I'm trying to create a simple Twitter feed for a Flash website.  When I run the flash movie however I get the following messages appear in the Output window:
TypeError: Error #1010: A term is undefined and has no properties.
at Cinema_fla::MainTimeline/processXML()
at flash.events::EventDispatcher/dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at flash.net::URLLoader/onComplete()
I am using Flash CS6 and the AS3 code for my Twitter feed is shown below:
var myXMLLoader:URLLoader = new URLLoader();
myXMLLoader.load(new URLRequest("https://api.twitter.com/1/statuses/user_timeline.rss?screen_name=YahooMoviesUK"));
myXMLLoader.addEventListener(Event.COMPLETE, processXML);
function processXML(e:Event):void{
var myXML:XML = new XML(e.target.data);
txtTweet1.text = myXML.status[0].text;
txtTweet2.text = myXML.status[1].text;
txtTweet3.text = myXML.status[2].text;
I would be grateful if anyone could give me some advice as to why this error is occurring.  If you need any more info please let me know.
Thanks

Ok I just tried doing the trace like you said and the output showed me that the twitter XML was using different tag names than I thought.  However, after changing the AS code to reflect this (see below) I'm still getting the same error on the same line.  I also changed the order of the complete listener and load command:
var myXMLLoader:URLLoader = new URLLoader();
myXMLLoader.addEventListener(Event.COMPLETE, processXML);
myXMLLoader.load(new URLRequest("https://api.twitter.com/1/statuses/user_timeline.rss?screen_name=YahooMoviesUK"));
function processXML(e:Event):void{
var myXML:XML = new XML(e.target.data);
txtTweet1.text = myXML.item.title[0].text;
txtTweet2.text = myXML.item.title[1].text;
txtTweet3.text = myXML.item.title[2].text;

Similar Messages

  • Error #1010 While trying to link a button to a PDF

    Hi all, I am completely new to AS3 and Flash in general, but because of a project here at work I decided to venture in creating a site. I imported a Photoshop file into the stage and created buttons from some headings. I need to link the headings to PDF files when they are clicked, but when I wrote the code (actually in various different formats) I keep getting the following error (while permitting to debug):
    TypeError: Error #1010: A term is undefined and has no properties.
        at extras3_fla::MainTimeline/frame1()[extras3_fla.MainTimeline::frame1:9]
    My simple code is
    var pdfURL:URLRequest = new URLRequest("images\Other\LetterHansen.pdf");
    //PDF Link
    function pdfLink(event:MouseEvent):void {
        navigateToURL(pdfURL,"_blank");
    Text.daniels_btn.addEventListener(MouseEvent.CLICK, pdfLink);
    Any suggestions? I'm sure it's something simply, but I figured I'd ask for help instead of banging my head against the wall
    Thanks!

    Whichever line is line 9 of your code has a problem.  If it is the last line, chances are you have not named your daniels_btn inside the Text object, or it is not named in the first frame within Text.

  • HELP needed with Twitter-feed

    Hi everyone,
    I've searched on this forum for solutions but I see everyone have problems with placing a twitter feed in muse.
    That's not my problem ( anymore ) - the issue I have is that I want to place the twitter feed in a mouse-over.
    Which works.. once..
    When I drag my mouse to the place to be - I get to see the twitter feed.
    But the second time it doesn't seem to excist anymore.. Strange?
    Anyone who can help me with that?
    The site: x-concepts.illiesontwerp.nl

    Hi FunkyMonkey2,
    You want to perform validation against, say, P1_ITEM1 but show any error message against, say, P1_ITEM2?
    If so, you could perform the validation of P1_ITEM1 on P1_ITEM2 using PL/SQL as this can access any of the Items on the page.
    Regards
    Andy

  • Error #1010 on drag n drop game. Please Help

    Hello everyone,
    I am having been building a drag n drop flash game where you need to drag pictures of organisms into their position on a food web. The code was working when it was a simple food chain with each animals only have one position on the chain. I have no decided to make it a more complex and have things such as plants, having a couple of different positions in the chain. I have decided to try this using an array for each of the sets of pictures. At the moment the pictures can be picked up and moved around the screen, but not placed on any of the targets that I have put on the screen. My other problem is that the following error keeps coming up whenever I go to the frame.
    TypeError: Error #1010: A term is undefined and has no properties.
    at foodweb_fla::MainTimeline/activateDraggables()
    at foodweb_fla::MainTimeline/frame6()
    I have been trying for a couple of days now to work out whats going on withoutmuch luck due to my very average flash skills. The coding that I have done so far is below:
    [CODE]
    stop();
    var startX2:Number;
    var startY2:Number;
    var counter2:Number=0;
    score_txt.text=score;
    var dropTargetss = new Array();
    dropTargetss[0]=targetsun2_mc1;
    dropTargetss[1]=targetsun2_mc2;
    dropTargetss[2]=targetsun2_mc3;
    dropTargetss[3]=targetsun2_mc4;
    var dropTargetsp = new Array();
    dropTargetsp[0]=targetplant2_mc1;
    dropTargetsp[1]=targetplant2_mc2;
    dropTargetsp[2]=targetplant2_mc3;
    var dropTargetsi = new Array();
    dropTargetsi[0]=targetinsect2_mc1;
    dropTargetsi[1]=targetinsect2_mc2;
    var draggableObjectss = new Array();
    draggableObjectss[0]=sun2_mc1;
    draggableObjectss[1]=sun2_mc2;
    draggableObjectss[2]=sun2_mc3;
    draggableObjectss[3]=sun2_mc4;
    var draggableObjectsp = new Array();
    draggableObjectsp[0]=plant2_mc1;
    draggableObjectsp[1]=plant2_mc2;
    draggableObjectsp[2]=plant2_mc3;
    var draggableObjectsi = new Array();
    draggableObjectsi[0]=insect2_mc1;
    draggableObjectsi[1]=insect2_mc2;
    Next3_b.addEventListener(MouseEvent.CLICK, onGuessClick3);
    SA3_b.addEventListener(MouseEvent.CLICK, onSAClick3);
    bird2_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp5);
    snake2_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt5);
    bird2_mc.buttonMode=true;
    snake2_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp5);
    bird2_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt5);
    snake2_mc.buttonMode=true;
    //BUTTON FUNCTIONS
    function onGuessClick3(event:MouseEvent) {
    //if(counter2 == 11){
    gotoAndPlay(7);
    //} else {
    //reply2_txt.text = "You need to complete this food chain before moving forward!";
    function onSAClick3(event:MouseEvent) {
    gotoAndStop(1);
    //PICKUP AND DROP FUNCTIONS
    function activateDraggables():void {
    for (var i:int = 0; i < draggableObjectss.length; i++) {
      draggableObjectss[i].buttonMode=true;
      draggableObjectss[i].addEventListener(MouseEvent.MOUSE_DOWN, pickUp2);
    for (var j:int = 0; j < draggableObjectsp.length; j++) {
      draggableObjectsp[j].buttonMode=true;
      draggableObjectsp[j].addEventListener(MouseEvent.MOUSE_DOWN, pickUp3);
    for (var k:int = 0; k < draggableObjectss.length; k++) {
      draggableObjectsi[k].buttonMode=true;
      draggableObjectsi[k].addEventListener(MouseEvent.MOUSE_DOWN, pickUp4);
    activateDraggables();
    function pickUp2(event:MouseEvent):void {
    // add listener to stage to prevent stickiness
    stage.addEventListener(MouseEvent.MOUSE_UP, dropIt2);
    event.target.startDrag();
    reply2_txt.text="Now put the tile in the correct position of the food chain.";
    startX=event.target.x;
    startY=event.target.y;
    function dropIt2(event:MouseEvent):void {
    event.target.stopDrag();
    stage.removeEventListener(MouseEvent.MOUSE_UP, dropIt2);
    if (event.target.dropTarget&&dropTargetss.indexOf(event.target.dropTarget)>-1) {
      reply2_txt.text="Good Job";
      event.target.x=event.target.dropTarget.x;
      event.target.removeEventListener(MouseEvent.MOUSE_DOWN, pickUp2);
      event.target.buttonMode=false;
    } else {
      reply2_txt.text="Try Again!";
      event.target.x=startX;
      event.target.y=startY;
    function pickUp3(event:MouseEvent):void {
    // add listener to stage to prevent stickiness
    stage.addEventListener(MouseEvent.MOUSE_UP, dropIt3);
    event.target.startDrag();
    reply2_txt.text="Now put the tile in the correct position of the food chain.";
    startX=event.target.x;
    startY=event.target.y;
    function dropIt3(event:MouseEvent):void {
    event.target.stopDrag();
    stage.removeEventListener(MouseEvent.MOUSE_UP, dropIt3);
    if (event.target.dropTarget&&dropTargetsp.indexOf(event.target.dropTarget)>-1) {
      reply2_txt.text="Good Job";
      event.target.x=event.target.dropTarget.x;
      event.target.removeEventListener(MouseEvent.MOUSE_DOWN, pickUp2);
      event.target.buttonMode=false;
    } else {
      reply2_txt.text="Try Again!";
      event.target.x=startX;
      event.target.y=startY;
    function pickUp4(event:MouseEvent):void {
    // add listener to stage to prevent stickiness
    stage.addEventListener(MouseEvent.MOUSE_UP, dropIt4);
    event.target.startDrag();
    reply2_txt.text="Now put the tile in the correct position of the food chain.";
    startX=event.target.x;
    startY=event.target.y;
    function dropIt4(event:MouseEvent):void {
    event.target.stopDrag();
    stage.removeEventListener(MouseEvent.MOUSE_UP, dropIt4);
    if (event.target.dropTarget&&dropTargetsi.indexOf(event.target.dropTarget)>-1) {
      reply2_txt.text="Good Job";
      event.target.x=event.target.dropTarget.x;
      event.target.removeEventListener(MouseEvent.MOUSE_DOWN, pickUp2);
      event.target.buttonMode=false;
    } else {
      reply2_txt.text="Try Again!";
      event.target.x=startX;
      event.target.y=startY;
    function pickUp5(event:MouseEvent):void {
    event.target.startDrag(true);
    reply2_txt.text="Now put the tile in the correct position of the food chain.";
    event.target.parent.addChild(event.target);
    startX=event.target.x;
    startY=event.target.y;
    function dropIt5(event:MouseEvent):void {
    event.target.stopDrag();
    var myTargetName:String="target"+event.target.name;
    var myTarget:DisplayObject=getChildByName(myTargetName);
    if (event.target.dropTarget!=null&&event.target.dropTarget.parent==myTarget) {
      reply2_txt.text="Good Work!";
      event.target.removeEventListener(MouseEvent.MOUSE_DOWN, pickUp5);
      event.target.removeEventListener(MouseEvent.MOUSE_UP, dropIt5);
      event.target.buttonMode=false;
      event.target.x=myTarget.x;
      event.target.y=myTarget.y;
      counter2++;
    } else {
      reply2_txt.text="That tile doesn't go there!";
      event.target.x=startX2;
      event.target.y=startY2;
    if (counter2==11) {
      reply2_txt.text="Congratulations you have completed the forest ecosystem!";
      score++;
      score++;
      score++;
      score++;
      score++;
      score++;
      score_txt.text=score;
    [/CODE]
    Any help will be much appreciated. Thankyou in advance

    click file/publish settings/flash and tick "permit debugging".  retest and using the line number in the error message fix your problem or post the line with the error.

  • AreaSeries on chart -- Error 1010 triggered

    After reassigning the dataProvider array of my area chart, I
    get the following error:
    TypeError: Error #1010: A term is undefined and has no
    properties.
    at mx.charts.chartClasses::GraphicsUtilities$/drawPolyLine()
    at
    mx.charts.renderers::AreaRenderer/mx.charts.renderers:AreaRenderer::updateDisplayList()
    at mx.skins::ProgrammaticSkin/validateDisplayList()
    at mx.managers::LayoutManager/::validateDisplayList()
    at mx.managers::LayoutManager/::doPhasedInstantiation()
    at mx.managers::LayoutManager/validateNow()
    at mx.controls::ComboBox/::displayDropdown()
    at
    mx.controls::ComboBox/mx.controls:ComboBox::downArrowButton_buttonDownHandler()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at mx.core::UIComponent/dispatchEvent()
    at mx.controls::Button/
    http://www.adobe.com/2006/flex/mx/internal::buttonPressed()
    at mx.controls::Button/mx.controls:Button::mouseDownHandler()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at mx.core::UIComponent/dispatchEvent()
    at mx.controls::ComboBase/::textInput_mouseEventHandler()
    The strange thing is that the new array has 6 items! I check
    its length (length greater than 2) before I assign it. However,
    when the debugger breaks in drawPolyLine, the "pts" matrix has only
    1 item. I don't know how the array goes from having 6 items to only
    1. The stacktrace does not trace back to my code, so I am having
    trouble debugging this.
    I thought that setting the series' filterData property to
    true would prevent this from occurring, but it didn't work.
    Any ideas on how I can figure this out?
    Thank you,
    -C

    relaxatraja:
    Using permit debugging definitely helped me nail down the issue. No more 1010's.  This is a great feature.
    A couple more questions if I may - the site still experiences slow response when clicking from one song to another.  Presently I have the .mp3 files for all of the seven CDs in one folder.
    Will I increase response time between song choices if I create individual folders for each CD rather than one large folder?
    Will I increase response time by reducing .mp3 file sound quality, therefore increasing loading speed - (this one seemsan  obvious yes - and sound quality is already reasonably small)?
    Is it possibly due to the first song choice (which has fast responee time) having to fully complete loading before a subsequent song choice can start to load - and if this is the case - can I script in a stop load function when a new choice is made ?
    mememellowcore

  • Facebook iframe and Twitter Feed Pro widget not displaying in Safari

    I have a couple sites that use social media feeds. One using Twitter Feed Pro from Muse Themes and the other is the developer iframe for Facebook. Just recently these two embedded elements stopped displaying in Safari (I'm on Safari 8.0.3), yet they show up fine in Chrome and Firefox. Has anyone else had this issue? If so, do you know how to fix it?

    This probably is a browser related issue, try to clear cookie and then check.
    If still its same , please provide the site url.
    Thanks,
    Sanjit

  • Adding Twitter Feeds on SharePoint 2013

    I want display my twitter feeds in the Home Page of my intranet site. How do I go about it?

    Please Try this below code as 'embed code' or CEWP in page. Their are some
    free webpart
    as well.
    <a class="twitter-timeline" href="https://twitter.com/hashtag/SPSEVENTS" data-widget-id="547112250885296128">#SPSEVENTS Tweets</a>
    <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • How do you edit the style and fonts of the twitter feed in MuseCC

    After you embed a twitter feed into your MuseCC website how do you edit the style and fonts of the feed to match the design and copy of the site to keep the branding consistent

    Thats not really easy..  maybe you find some informatione here: https://dev.twitter.com/discussions/11386

  • ORA-03137: TTC protocol internal error : [1010] [] [] [] [] [] [] [

    Hi
    Database 11.1.0.6
    OS: EL 5
    Hi I'm frequently getting this error in the database alert log:
    ORA-03137: TTC protocol internal error : [1010] [] [] [] [] [] [] [
    and the database got shutdown.
    Anybody has any idea how to troubleshoot?

    03137, 00000, "TTC protocol internal error : [%s] [%s] [%s] [%s] [%s] [%s] [%s] [%s]"
    // *Cause:  TTC protocol internal error.
    // *Action: Contact Oracle Support Services.                                                                                                                                                                                                                                                                                                                                                           

  • Twitter Feed Fail

    Installing twitter feed fail! I've created a twitter widget that works fine in another website.  But no matter what I try Muse will not display the twitter feed.  It simply says "Tweets by @137Films" in bright blue with a link but doesn't post the feed. When I preview the page it is simply a link to my twitter page. Driving me nuts.  Looks so easy on various tutorials. What's going on?
    here is the code I'm pasting:
    <a class="twitter-timeline" data-dnt=true href="https://twitter.com/137Films" data-widget-id="244192708774739968">Tweets by @137Films</a>
    <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id =id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(docu ment,"script","twitter-wjs");</script>
    I've tried both inserting HTML and simply pasting. Nothing works.  What is going on?
    Thanks!

    Hi! I had the same problem, but tried with this code and finally works!!
    <script src="http://widgets.twimg.com/j/2/widget.js"></script>
        <script>
    new TWTR.Widget({
    version: 2,
    type: 'profile',
    rpp: 20,
    interval: 6000,
    width: 'auto',
    height: 300,
    theme: {
    shell: {
    background: '#8cc3f2',
    color: '#ffffff'
    tweets: {
    background: '#ffffff',
    color: '#444444',
    links: '#4c59o0'
    features: {
    scrollbar: true,
    loop: true,
    live: true,
    hashtags: true,
    timestamp: true,
    avatars: false,
    behavior: 'default'
    }).render().setUser('twitter_user').start();
        </script>
    Just change the 'twitter_user' in the last part for the user you want, hope it works for you!

  • (HELP) - Loading multiple external images error #1010

    I'm a newbie at Flash and spent the whole day trying to fix this one problem and can't seem to fix it no matter what I do.
    I'm using Action Script 3.0, CS5 on Windows 7.
    I'm trying to load two external images (thumbnail images) in the loader "see image below for reference", where the full image size will be. However, I am getting this error when testing my movie. What am I doing wrong?
    Test Movie error message:
    "port1_btn
    TypeError: Error #1010: A term is undefined and has no properties.
        at index_fla::MainTimeline/fl_MouseClickHandler_6()"
    "port2_btn
    TypeError: Error #1010: A term is undefined and has no properties.
        at index_fla::MainTimeline/fl_MouseClickHandler_7()"
    FYI:
    Loader instance name: mainLoader
    Thumbnail #1 instance name: port1_btn
    Thumbnail #2 instance name: port2_btn
    This is my code

    Go into your Flash Publish Settings and select the option to Permit Debugging.  Then the error messages could include an indication of which lines are causing the problem.
    And just for the sake of asking since the code is somewhat minimal... is the mainLoader inside a container named portfolioBkgd?

  • I keep getting a "We had difficulty downloading episodes from your feed" error.

    I've been trying to post a podcast, but I keep getting a "We had difficulty downloading episodes from your feed"  Error message.  The RSS feed I created is http://feeds.feedburner.com/blogspot/mjBrW.  Any help would be appreciated.

    Your feed is now OK and can be subscribed to in iTunes, so that's a start. However your media file itself is not accessible. The URL for it in the feed is
    http://feedproxy.google.com/~r/InTheFace/~5/B6E3DAcZCXU/InTheFaceEpisode1BadGran dpa.mp3
    This redirects to
    http://a1.podbean.com/646726/InTheFaceEpisode1BadGrandpa.mp3?AWSAccessKeyId=AKIA JLA6NPUL6BLALQ2A&Expires=1385103002&Signature=l4iImb8F5UB%2FZzo9gAmzyXwM%2FBc%3D
    And this brings up
    <Error>
    <Code>AccessDenied</Code>
    <Message>Request has expired</Message>
    <RequestId>D2B711C098C2AF2E</RequestId>
    <Expires>2013-11-22T06:50:02Z</Expires>
    <HostId> /vxmBjlZGuT2p5gdqXe51JV90o9Ep08YLQWJVW10bn17PUBcRyX85n/FL0K0qqnc</HostId>
    <ServerTime>2013-11-22T07:33:36Z</ServerTime>
    </Error>
    Basically the file is requiring authorization to access, so you have to turn that off.
    As to https, the iTunes Store cannot access media files with this prefix, and many podcast creation services will not create the enclosure tag if it's in use.

  • The infamous "We had difficulty downloading episodes from your feed" error

    Hi all,
    I'm trying to submit a podcast to iTS, but it's failing with the infamous "We had difficulty downloading episodes from your feed" error.
    The feed validates (here and here); all the tags that are suppossed to be there are there; the enclosures are there and readable; the server accepts byte-range requests.
    Could someone smarter than I have a glance over and see if they can spot anything?
    A sample feed can be seen here.
    Many thanks.

    I would ask one simple question - Why are you not just releasing your episodes as .mp3 format?
    The recommended encoding for audio podcasts is:
    .MP3 - format
    64 kbpb - Bit Rate
    44.1 khz - sample rate
    mono or joint stereo
    This gives good audio quality at the size of 0.5 mb per minute.  It is used by most of the big shows in iTunes and it compatible with all players and aggregators.
    Trying to trick the system to use a non-standard format is likely going to cause you issues - it is best to go with the settings above if you want the least amount of issues for you and your potenital listeners.
    Rob W

  • How to fix the 'We had difficulty downloading episodes from your feed' error

    I'm getting the error 'we had difficulty downloading episodes from your feed' error but I can subscribe directly to the rss feed via File>Subscribe to Podcast.
    The rss feed is: http://ithinkyouthink.libsyn.com/rss
    I've used feedvalidator and it says everything is good except for some minor suggestions. How do I fix this? I'm waiting on Libsyn to contact me directly, but I figured I'd try this to see if anyone could help.

    This is a bug in the iTunes submission system where it gives a false negative.  Libsyn servers are 100% compliant with iTunes.
    Please submit again - it usually will go through the second time.  If not wait 10 minutes and submit again.
    Apple is aware of this issue - but it has been around for a while.

  • "Difficulty downloading episodes from your feed" error

    There seem to be a lot fo threads like this, but none of the problems are quite the same. I've got a self-hosted wordpress site, and a soundcloud account.
    I applied for the podcasting beta from soundcloud, and the RSS they provide is here. If I add that feed to itunes, it says "The feed has no episodes."
    So I said fine, I'll host the .mp3s on archive.org, so I did that, and got the wordpress plugin "Seriously Simple Podcasting," set it up including links to the mp3 files hosted on archive put at the top, the RSS feed for that is here. When I punch that in to itunes, it gives me the "we had difficulty downloading episodes from your feed" error. So I tried to use feedburner, (feed here) either to syndicate the seriously simple podcasting feed, or to syndicate the feed from my wordpress site directly (without the plugin). I've also tried plugging that last feed directly into itunes w/o feedburner, in all cases, I get the "difficulty downloading episodes..." error.
    Very confused. I'm guessing there's something wrong with the way that the services (the SSP wordpress plugin or feedburner) is trying to make enclosures out of the mp3 hosted at archive, but I have no idea how to fix that. Any help would be greatly appreciated.

    DO NOT use the souncloud RSS feed - if you ever decide to leave them you will loose all your audience.
    They do not provide the tools needs to change your feed to a new host.
    You can't add in the iTunes new feed tag nor can you add in a redirect.
    What ever your do - do NOT use the soundcloud RSS feed.
    Regards,
    Rob W

Maybe you are looking for

  • Newbie: how to get account firstname and lastname in SIM

    I have the following xpres code that retrieves all the account ids in SIM - this is working. However, how can i get the firstname and lastname of all of the returned account Ids. Some code example will be appreciated: <invoke name='getUsers' class='c

  • White screen/black screen on ipod touch

    I have the 'white screen' problem. I have tried to restore through itunes but ipod touch does not respond and the screen goes black. When I simultaneously hold the home and on/off buttons down, sometimes it responds, sometimes not. Very inconsistent

  • Change item Label based on Another item's value

    Hi guys, I need to set an item label (A) based on the value of another item (B). I did the following: I Created a dynamic action. When B changes: 1- submit the value of B 2- Refresh item A The label of the item A is : myitem &B. Any ideas ???? Best R

  • Things I see missing since using Lightroom for tethered capture.

    I have previously been using Leaf and Capture One, now we are converting to LR b/c of its features. But there are a few small things that I noticed are missing that should be easy to fix. First the compare window. When shooting tethered in Capture On

  • Need assistance on 5800Xm internet

    Hi alll, Just yesterday i have purchased the Nokia 5800XM. I am using Vodafone sim from india. I have Vodafone live and idont have the WWW service. Can i use maps using that? Can i use the push mails? as i am new to this kinda mobile pls help me Adva