Home / Components / User Interface / HTML / XML News List AS3 /
HTML / XML News List AS3
108 purchases
License:
By purchasing and downloading this license, you are entitled, as buyer, to use the product in ONE SINGLE NON-COMMERCIAL PROJECT ( website or other ... [+]
> View graphic table with full license features
$8.00
Package includes: FLA, SWF, HTML, XML, JS
Flash Version: Flash CS3, Flash CS4, Flash CS5, and above
Viewable with: Flash Player 9
Documentation level: Well documented
Flash knowledge level: Intermediate
Action Script: ActionScript 3.0
Product ID:F0800986
Please install flash first.
This product is included in ALL FILES PACKAGE:
Highly customizable HTML / XML driven news list with custom scrolling and coloring effects. Flash CS3 / Flash CS4 and above / ActionScript 3.0 version.
You get two versions of the news list application at the price of one.
KEY FEATURES:
* Custom news list width/height, border color, border size, border transparency, background color, background transparency, cell spacing, cell padding support;
* Individual cell transparency, width/height, background color, background transparency support ;
* External CSS text formatting for text and links;
* Custom library fonts support for individual cell titles and text;
* Easy to customize each graphic symbol used inside Flash;
* Optionally set the main XML configuration file path in HTML using FlashVars
Check the general Tips & Tricks page regarding all FT products.
Check also the HTML/XML News List AS 2.0
Check also other great FlashTuning.net products such as 3D XML Carousels, 2D & 3D XML Menus, XML Banner Rotators, XML Galleries & Slideshows, Video Lists & FLV Players, HTML News Readers by clicking the image below:
$8.00
License:
Personal License By purchasing and downloading this license, you are entitled, as buyer, to use the product in ONE SINGLE NON-COMMERCIAL PROJECT ( website or other multimedia project not generating income ), your personal work or work for a client. You may not redistribute / resell the functionality provided with the purchased product without the author's and / or FlashComponents.net written permission, but you may modify its content. In case you want to use the product for a commercial project then you will have to buy the 'Commercial License'.
| Usage Terms: | Personal | Commercial | Multiple |
|---|---|---|---|
| Use in ONE SINGLE NON-COMMERCIAL project | |||
| Unlimited use in the same project | |||
| Use in ONE SINGLE COMMERCIAL project | |||
| For your client's ONE SINGLE COMMERCIAL project | |||
| MULTIPLE COMMERCIAL projects | |||
| For your client's MULTIPLE COMMERCIAL projects |





![3D Image Zoom Gallery XML [ AS2 & AS3 ]](http://u1.flashcomponents.net/components/tn/1150_1.png)

![Members List [AS3] [XML]](http://u1.flashcomponents.net/components/tn/279_1.png)




57 comments
Add comment
1 2 3
Flashtuning
@adlib33:
You first need to understand that the loading problem of an external image, SWFs etc you described is indeed a bug in how the removing a child / garbage collector / display list etc mechanisms are working in AS3 / Flash player and not an issue with the SWF of our product(s).
It is not our duty to debug or fix such general problems since there are various workarounds if you google it.
So when you remove a child in AS3, the reference to that child is still there in parent although you believed it was entirely removed. Here is a simple function that you can use in the future when you load images, SWFs etc inside an empty movie clip:
function loadResource(resURL) {
var url = resURL;
var request1 = new URLRequest(url);
var loader1 = new Loader();
var mc1 = this.getChildByName(“mc”);
var nc = mc1.numChildren;
if (nc) { var l1 = mc1.getChildAt(0); mc1.removeChild(l1); l1 = null; }
loader1.load(request1); //start loading img/swf
mc1.addChild(loader1);
loader1.contentLoaderInfo.addEventListener(“complete”, this.finished_loading);
}
function finished_loading(e:Event) { trace(“Loading completed.”) }
, where mc is the instance name of an empty movie clip from the stage. You can simply call this function with the path string to your external SWfs and images avoiding references duplicates.
#  /  PM  /  posted on Apr 01, 2009
majed
hi dose this component support RSS feed ? and how
thx for this great work
#  /  PM  /  posted on May 07, 2009
Flashtuning
Hi,
The current version does not support RSS feed, only custom html / css driven news list. You can try to convert a RSS feed to the html list supported by the application.
Regards,
Flashtuning
#  /  PM  /  posted on May 09, 2009
Flashtuning
NEW
Check the newly launched HTML AutoPlay News List AS2 !
#  /  PM  /  posted on Sep 10, 2009
gianlucafla
Hi,
when i load the swf in another swf there is that problem:
TypeError: Error #1009: Impossibile accedere a una proprietà o a un metodo di un riferimento oggetto null.
at htmlnewslist1_fla::MainTimeline/frame1()
can you help me?
but the swf run!
#  /  PM  /  posted on Sep 19, 2009
Flashtuning
Hi,
check question 16 from the tips and tricks area ( you have the link in the product description ).
FT
#  /  PM  /  posted on Sep 21, 2009
Flashtuning
...also check this article on FlashUser.net on how to load correctly an external resource in as3 http://www.flashuser.net/flash-tricks/loading-external-images-swfs-as3.html
#  /  PM  /  posted on Sep 21, 2009
dama.creola
Hello, how can I incorporate the text of the news list box? I don't have text fields, I have just the objet FTtableRenderer. I can't see the texts of the news list box text in my flash website, if I don't incorporate the text.
Thanks
#  /  PM  /  posted on Sep 16, 2010
Flashtuning
Edit both html layout file and xml information file having the same id like in the examples included in the download folder.
#  /  PM  /  posted on Sep 24, 2010
Flashtuning
= NEW =
X-Treme Banner Rotator !
#  /  PM  /  posted on Oct 13, 2010
DAngelo
What if the news have no picture, does paragraph autoresize to fill news cell?
#  /  PM  /  posted on Nov 01, 2011
Flashtuning
You can adjust the news layout any way you like , by editing an html layout file. You can download and test some free components ( some of them includes also the source code ) from Free Flash Components
#  /  PM  /  posted on Nov 01, 2011
DAngelo
what i meant is the news page im goin to make does have pictures displayed, but about 3-4 news among them doesnt have picture.
#  /  PM  /  posted on Nov 01, 2011
Flashtuning
Yes, of course it works. Here is an example html code for of a news line with image as extracted from newsLayout1.html file:
You keep only the odd cell id ( put v3 instead v4 and remove v3 line) and set colspan=2, it will look like this:
#  /  PM  /  posted on Nov 01, 2011
Flashtuning
For some reason the code block does not work correctly in comments ( i'll paste without code formatting ):
You have:
... td align="center" id="v3"..etc // remove this line ... td id="v4">Die Hard...etc
And the the new one will be only the second one but with v3 instead v4 and colspan:
... td id="v3" colspan="2">Die Hard...etc
#  /  PM  /  posted on Nov 01, 2011
dstepek
I have the external swf loading perfectly in my fla. However, I am getting "the default shape of the component before it is rendered with the normal graphic assets" issue that someone else mentioned. How can I remedy this problem?
Thanks,
D
#  /  PM  /  posted on Nov 08, 2011
Flashtuning
Try using masks.
#  /  PM  /  posted on Nov 18, 2011
1 2 3