very nice flep! ill find a place for this..thanks a lot! and merry christmas!
Hi all !
This is a FlepStudio Christmas gift for FlepStudio's users.
It's a new free Flash CS3 utility, a products exhibitor.
All the products have split into categories.
Very useful for who wants to show products, portfolio, images gallery... etc etc... this utility finds lots of applications.
As always, it reads from an XML file and it's easy to manage.
For advanced users, I added an attribute into XML ( detailsURL ) file that contains an URL for those of you who wants to add a button and communicate with the server.
Let's see it...
Read more
Products Exhibitor
free Flash CS3 utility
Description
Flash CS3 and XML project
Files package
main.fla
package org/flepstudio
products.xml
images folder
thumbs folder
package caurina ( Tweener by Zeh Fernando )
Source files:
Last edited by Flep; 05-06-08 at 17:10.
very nice flep! ill find a place for this..thanks a lot! and merry christmas!
Happy New Year Flep.
Thanks a lot for the Product Exhibitor.
I have a question though :
I don't see the preloader to load between the Category or between the product. How to add this feature?
Thanks again. Great works!
It does not need a preloader...
or I did not get you![]()
Thanks for repply Flep.
What I mean is that the Category is coming from external movies. That's why we need preloader.
Hey this is great Flep!
How would I incorporate the details_url?
hey flep first off, i love the site.just recently moved to italy (my parents are Italian) so during the days and night im doing two things primarily.learning as3 and learning the Italian language.....your page and tutorials allow me to do both at the same time!!....i love the product display but i was having problems incorporating your HTML in XML tutorial with this as i would like to have more control over the style of the font in the xml file.......the only problem is for the life of me i couldnt understand your tutorial on html and xml.....i even tried to see if the tutorial was clearer in italian! i didnt even see the cdata tag in the xml file you supplied........is there a way you can briefly go over it in relation to the products display?
thx!
sorry let me explain my attempt here...i redid the tut in italian and understood it clearer...adopting it to the products page i added the html class script (i changed the name to Html.as) as a separate as file in the flep studio folder and altered the correct fields in the script but i still see the tags when i run the swf.........
package
{
import flash.display.Loader;
import flash.display.MovieClip;
import flash.text.TextField;
import flash.events.*;
import flash.net.URLLoader;
import flash.net.URLRequest;
import flash.xml.*;
public class Html extends MovieClip
{
public function Html()
{
this.loadXML();
}
private function loadXML():void
{
var loader:URLLoader=new URLLoader();
loader.addEventListener(Event.COMPLETE,completeHan dler);
var request:URLRequest=new URLRequest('products.xml');
try
{
loader.load(request);
}
catch(error:Error)
{
trace('Unable to load requested document.');
}
}
private function completeHandler(event:Event):void
{
var loader:URLLoader=URLLoader(event.target);
var result:XML=new XML(loader.data);
var myXML:XMLDocument=new XMLDocument();
myXML.ignoreWhite=true;
myXML.parseXML(result.toXMLString());
var node:XMLNode=myXML.firstChild;
des_txt.htmlText=node.firstChild.firstChild.nodeValue;
}
}
}
Hi Maldor
Nice to see you are learning italian too
Can I see the XML you are using ?
Bookmarks