Ask a Question related to Macromedia Flash Data Integration, Design and Development.
-
Si Fi #1
URL's in RSS Readers
I have a movie that pulls sports headlines from the BBC Sports xml feed.
I can display the data ok, however, when i click on the stories, i'm not taken
to the relevent page, in fact nothing happens. The url is present in the xml,
so am I missing something:
[url]http://www.yourbirmingham.co.uk/sport.htm[/url]
Many Thanks
Si Fi Guest
-
How to i enable "readers extensions' in Acrobat Professional, can i ?
And a very, very, expensive one at that. :-( -
The way acrobat files appear in various readers
I get files from a graphic designer who creates them in Quark Express for offset reproductions. I am making them available to visitors to the site I... -
How do I use url's
:confused; I am trying to populate a form to be udated using a url. But I don't understand how to get it to pass take a look. I don't know how to... -
Adobe 4 and Readers 3 and 6 will not open certain pdfs off the web
We have been trying to open Manuals which are in the pdf form on the internet. The page goes blank and the counter bar sticks at half done, with... -
free card readers
Hi, everyone. Just wanted to mention that Office Max is offering Dazzle card readers for the usual formats (compact flash, memory stick, etc.) free... -
-
Dimitar #3
Re: URL's in RSS Readers
First of all, there 's some problem with your flash code, as your swf makes
recalls every second after you click get data. This is... well, don't need to
charge the server side in this brutal way, make it autoupdate every minute, or
5 minutes :-)
Whenever you are binding the data from the XML, if the URL is a part of the
Object attributes (XML attribute or childNode to the main Node Objects), then
you can just assign an event to the cell as:
//suppose the url property is with name Link in the binded Xml objects.
// Llistener object.
var dgListener:Object = new Object();
dgListener.cellPress = function(evt_obj:Object) {
var Link_str:String = evt_obj.target.getItemAt(evt_obj.itemIndex).Link;
_global.getURL(Link_str, "_blank")l
};
// Add listener to your DataGrid
Sample_dg.addEventListener("cellPress", dgListener);
Dimitar
Dimitar Guest
-
Si Fi #4
Re: URL's in RSS Readers
Thanks for your reply.
I may have seen a problem with the php file that i use to get the external XML
feed from:
<?php
$dataURL =
"http://newsrss.bbc.co.uk/rss/newsonline_uk_edition/england/west_midlands/rss.xm
l";
//note that this will not follow redirects
readfile($dataURL);
?>
See where it says '//note that this will not follow redirects', is this php
file then not the cause of the link's not being followed. If so I have no idea
what I should have in the php file, this is a unkown area for me.
Si Fi Guest



Reply With Quote

