Post Reply

You must log in to post.

Advanced Images Slider
  • Started 8 months ago by himanshu.tyagi
  • Latest reply from dhunter
  1. himanshu.tyagi
    Inactive in forum

    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 8 months ago #
  2. dhunter
    Member

    2 himanshu.tyagi himanshu.tyagi
    ya, you right.
    your images must placed on same server where flash file are placed

    Posted 8 months ago #
  3. himanshu.tyagi
    Inactive in forum

    XML contain error:


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

    Posted 8 months ago #
  4. himanshu.tyagi
    Inactive in forum

    Error in main xml


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

    Posted 8 months ago #
  5. dhunter
    Member

    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 8 months ago #
  6. clausg
    Member

    Has bought the file

    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 7 months ago #
  7. dhunter
    Member

    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 7 months ago #