FORUM

Advanced Images Slider

Home / Forum / Components Discussions / Advanced Images Slider

  • It’s not taking online path for images in xml


    like rather putting (images/1.jpg),


    we put (http://l.yimg.com/a/i/ww/news/2009/06/29/yao.jpg)
    than its not working


    Can u please help me on this..


    #  /  posted on Jun 30, 2009
  • 2 himanshu.tyagi himanshu.tyagi
    ya, you right.
    your images must placed on same server where flash file are placed


    #  /  posted on Jun 30, 2009
  • XML contain error:


    XML Parsing Error: junk after document element
    Location: file:data.xml
    Line Number 12, Column 1:<images>
    ^


    #  /  posted on Jul 03, 2009
  • Error in main xml


    http://www.flashcomponents.net/upload/samples/2891/data.xml


    #  /  posted on Jul 03, 2009
  • 2 himanshu.tyagi himanshu.tyagi
    why you try parsing xml file via browser? this file formated only for flash, you no need use another parser program


    #  /  posted on Jul 05, 2009
  • I do not want initial image to be b/w andout of focus, I want to use the original photo.


    How do I do this?


    Thanks


    #  /  posted on Jul 29, 2009
  • 2 clausg
    In this case you need edit fla source:
    1. find and remove blur effect:
    //GLOW POST EFFECT START //REMOVE IF NEED if (ImageSmoothingLevel>1) { img2 = target_mc.bitmapCopy(thumnails[“thumb_”+count_img], “img2”, 2); img2.thumb_resize(Thumbs_width,Thumbs_height); img2.Glow(50); } //GLOW POST EFFECT END //REMOVE IF NEED


    2. find and remove b/w function // B/W/COLOR
    MovieClip.prototype.MakeGray = function(zerokoef) { import flash.filters.BitmapFilter; import flash.filters.ColorMatrixFilter; .... var filter:BitmapFilter = new ColorMatrixFilter(matrix); this.filters = [filter];
    };


    3.find and remove over light effect
    //overlight post effect
    MovieClip.prototype.ColorT = function(val) { var my_color:Color = new Color(this);
    ...
    };


    #  /  posted on Jul 29, 2009

Please login to post replies.