Re: new graphics error message [_IDLITCONTAINER::SETPROPERTY] [message #79368 is a reply to message #79367] |
Thu, 23 February 2012 20:43   |
bjkuk
Messages: 16 Registered: July 2010
|
Junior Member |
|
|
On 2월24일, 오후12시21분, David Fanning <n...@idlcoyote.com> wrote:
> bjkuk writes:
>> I can oopen exact file. and comple it. and code...
>> still same message like below.
>
> You know what can cause problems like this! A damn save
> file! You don't have anything like that hanging around do you?
> Did you build a project some time in the past and have
> a left-over save file in one of your directories?
>
> Sometimes I think the person who invented save files
> should be taken out back and thrashed. :-)
>
> Let me know.
>
> Cheers,
>
> David
>
> --
> David Fanning, Ph.D.
> Fanning Software Consulting, Inc.
> Coyote's Guide to IDL Programming:http://www.idlcoyote.com/
> Sepore ma de ni thui. ("Perhaps thou speakest truth.")
I have deleted IDL81 and lib directory and then re-install IDL81 from
a DVD.
Then I can use new graphics without any problem.
However I have problem when I use fsc_color.pro in new direct graphics
Do you have any idea to resolve this problem?
Regards
IDL> pl = plot(findgen(10), findgen(10), color = fsc_color('Black'))
% Compiled module: FSC_COLOR.
% Loaded DLM: XML.
IDL> pl = plot(findgen(10), findgen(10), color = fsc_color('Red')) ;
new graphics
===> shows "Blue" colored line : it is ODD!!
IDL>plot, findgen(10), findgen(10), color = fsc_color('Red') ; Direct
Graphics
===> shows "Red" colored line : it is Okay!!
IDL> pl = plot(findgen(10), findgen(10), color = fsc_color('Blue')) ;
new graphics
===> shows "Red" colored line : it is ODD!!
IDL> plot, findgen(10), findgen(10), color = fsc_color('Blue') ;
Direct Graphics
===> shows "Blue" colored line : it is Okay!!
IDL> pl = plot(findgen(10), findgen(10), color =
fsc_color('Yellow')) ; new graphics
===> shows "Cianic" colored line : it is ODD!!
IDL> plot, findgen(10), findgen(10), color = fsc_color('Yellow') ;
Direct Graphics
===> shows "Yellow" colored line : it is Okay!!
IDL> pl = plot(findgen(10), findgen(10), color = fsc_color('Green'))
===> shows "Green" colored line : it is Okay!!
IDL> pl = plot(findgen(10), findgen(10), color = fsc_color('Gray'))
===> shows "Gray" colored line : it is Okay!!
|
|
|