Vlasta
on March 8th 2010
0
Version of Windows should have no effect on the custom operation. It may need adjustments in newer versions of the editor though as the scripting system was updated. Are we talking about the icon editor or cursor editor? Version 2008.1 is so far the latest released version of the icon editor.
Anonymous
on March 10th 2010
0
Thanks for the reply Vlasta,
It is the Icon editor, and the custom operation to dim by painting alternate colours does crash on Windows 7, but works fine on my old XP computer.
I love the package, but I use this dim operation all the time. Any ideas?
The code is as follows:
var image = Document.RasterImage;
var sizeX = image.sizeX;
var sizeY = image.sizeY;
//Colours are Alpha (transparency), Blue, Green, Red
var color = 0xffffffff; // this is White
//var color = 0x00000000; //This is transparent
for (x=0; x<sizeX; x++)
for (y=0; y<sizeY; y++)
if ((x + y)&1)
image.SetPixel(x, y, 0, 0, color);
Vlasta
on March 10th 2010
0
OK, I'm going to try it on Windows 7 myself. One thing I would try is to uninstall and reinstall the application. Maybe something went wrong.
Vlasta
on March 11th 2010
0
I tested the script on Windows 7 and encountered no problems. Is there any other difference between the 2 computers?
Anonymous
on March 18th 2010
0
Thanks ever so much Vlasta for making the effort!
I can see no other obvious differences! I would imagine this is down to my own hardware, perhaps some faulty memory, but I dont have any problems elsewhere.
Not to worry, I have access to the old PC still, and still use RealWorld all the time for icon editing/creation!
Thanks for your help.
MB
Vlasta
on March 18th 2010
0
I wish I could help you. If you sent as much info as possible to my email (screenshots with script config...), maybe I'll spot something.
i entered the code in Paint.COM and it said "Expected '/'"
in Paint.COM. I guess it's not the right code setup or something.
Anonymous
on June 9th 2010
0
ICON EDITOR 2009.1 works OK on WIN 7 64bit