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..
You must log in to post.
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..
2 himanshu.tyagi himanshu.tyagi
ya, you right.
your images must placed on same server where flash file are placed
XML contain error:
XML Parsing Error: junk after document element
Location: file:data.xml
Line Number 12, Column 1:<images>
^
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
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
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);
...
};