Flash CS3 - Flash CS4

Free tutorials and scripts for all.
Actionscript 3.0

Products Exhibitor

This is a discussion on Products Exhibitor within the FlepStudio utilities forums, part of the Tutorials category; Hi all ! This is a FlepStudio Christmas gift for FlepStudio's users. It's a new free Flash CS3 utility , ...


Go Back   Forum Flash CS3 Flash CS4 > English Forums > Tutorials > FlepStudio utilities

Register Blogs FAQ Members List Calendar Search Today's Posts Mark Forums Read
  4 links from elsewhere to this Post. Click to view. #1 (permalink)  
Old 19-12-07, 06:11
Administrator
 
Join Date: Jul 2007
Location: Cesena
Posts: 4,352
Blog Entries: 1
Rep Power: 6
Flep is on a distinguished road
Products Exhibitor

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:
Attached Files
File Type: zip ProductsExhibitor.zip (1.35 MB, 397 views)


Last edited by Flep; 05-06-08 at 17:10.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #2 (permalink)  
Old 20-12-07, 02:11
Member
 
Join Date: Nov 2007
Posts: 59
Rep Power: 1
gwulfwud is on a distinguished road
Re: Products Exhibitor

very nice flep! ill find a place for this..thanks a lot! and merry christmas!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 04-01-08, 06:04
Junior Member
 
Join Date: Oct 2007
Posts: 5
Rep Power: 0
Beebs is on a distinguished road
Re: Products Exhibitor

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!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 05-01-08, 05:49
Administrator
 
Join Date: Jul 2007
Location: Cesena
Posts: 4,352
Blog Entries: 1
Rep Power: 6
Flep is on a distinguished road
Re: Products Exhibitor

It does not need a preloader...
or I did not get you
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 06-01-08, 02:09
Junior Member
 
Join Date: Oct 2007
Posts: 5
Rep Power: 0
Beebs is on a distinguished road
Re: Products Exhibitor

Thanks for repply Flep.

What I mean is that the Category is coming from external movies. That's why we need preloader.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

photoFlow

  #6 (permalink)  
Old 21-01-08, 19:52
Junior Member
 
Join Date: Aug 2007
Posts: 3
Rep Power: 0
frosted is on a distinguished road
Re: Products Exhibitor

Hey this is great Flep!
How would I incorporate the details_url?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 22-01-08, 05:38
Administrator
 
Join Date: Jul 2007
Location: Cesena
Posts: 4,352
Blog Entries: 1
Rep Power: 6
Flep is on a distinguished road
Re: Products Exhibitor

Quote:
Originally Posted by frosted View Post
Hey this is great Flep!
How would I incorporate the details_url?
Hi

Add a button or MovieClip inside of mc_product and use URLRequest, navigateToURL ...
__________________

 


I recommend: Essential Actionscript 3.0

- Non rispondo ai messaggi privati con domande tecniche. Apri una discussione sul forum !
- I do not reply technicians pvt messages. Open a thread !
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 24-01-08, 11:57
Member
 
Join Date: Jan 2008
Posts: 38
Rep Power: 0
Maldor is on a distinguished road
Re: Products Exhibitor

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!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 24-01-08, 15:00
Member
 
Join Date: Jan 2008
Posts: 38
Rep Power: 0
Maldor is on a distinguished road
Re: Products Exhibitor

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.........
Quote:
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;
}
}
}
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 25-01-08, 08:15
Administrator
 
Join Date: Jul 2007
Location: Cesena
Posts: 4,352
Blog Entries: 1
Rep Power: 6
Flep is on a distinguished road
Re: Products Exhibitor

Hi Maldor

Nice to see you are learning italian too

Can I see the XML you are using ?
__________________

 


I recommend: Essential Actionscript 3.0

- Non rispondo ai messaggi privati con domande tecniche. Apri una discussione sul forum !
- I do not reply technicians pvt messages. Open a thread !
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 07:00.


Powered by vBulletin versione 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC4
Forum SiteMap


FlepStudio
by Filippo Lughi
P.IVA 03605860406