Home / Components / User Interface / HTML / XML News List AS3
HTML / XML News List AS3
94 purchases
License:
By purchasing and downloading this license, you are entitled, as buyer, to use the product in an unlimited number of websites and other multi... [+]
$9.00
Package includes: FLA
Opens with: Flash CS3, Flash CS4, and above
AS Version: ActionScript 3.0
Flash knowledge required: Intermediate
Documentation: Well documented
Product ID:F0800986
Please install flash first.
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:
This product is included in ALL FILES PACKAGE:
$9.00
License:
By purchasing and downloading this license, you are entitled, as buyer, to use the product in an unlimited number of websites and other multi... [+]
Please install flash first.

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



















47 Comments
Add comment
1 2 3
Flashtuning on April 01, 2009
@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
majed on May 07, 2009
hi dose this component support RSS feed ? and how
thx for this great work
#  /  PM
Flashtuning on May 09, 2009
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
Flashtuning on September 10, 2009
NEW
Check the newly launched HTML AutoPlay News List AS2 !
#  /  PM
gianlucafla on September 19, 2009
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
Flashtuning on September 21, 2009
Hi,
check question 16 from the tips and tricks area ( you have the link in the product description ).
FT
#  /  PM
Flashtuning on September 21, 2009
...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
1 2 3