Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
112 views

MC (Microsoft's Message Compiler) replacement for Linux GCC

What is the equivalent mechanism in Linux GCC for the message compiler in Windows VC++? What I need to do is to be able to have localized messages with the same ID for each message in all languages, ...
1
vote
3answers
951 views

TAB completion and mc problems

DISTRIB_ID=Ubuntu DISTRIB_RELEASE=8.10 DISTRIB_CODENAME=intrepid DISTRIB_DESCRIPTION="Ubuntu 8.10" This is the server version. When I ssh into it, I encounter the following problems: Problem 1 ...
0
votes
2answers
111 views

Emacs: how to make it an editor in a midnight-commander?

My question is about Midnight-commander. I've unset usage of internal editor (in Options -> Configuration) and put in .bashrc: export EDITOR='emacsclient -n' still - pressing F4 gives nothing, ...
0
votes
0answers
78 views

Generating DLLs from an MC file?

I am taking over a bit of a legacy project, and having issues getting it to install in Windows 7. The project is coded in VB, and our IDE for it is Visual Studio 2005 with VSS (fun I know). It was ...
0
votes
0answers
91 views

Flash 8 mc inside and mc _root problem

I have a text scroller working on the main timeline but I want to oput it inside a container movieclip called #container_mc but I it stops working when i place code and mcs inside the container_mc. ...
0
votes
0answers
26 views

How can I target all movie clips that are dynamically put on the stage?

I am having trouble with TransformManager. I can specify the names and instances of movieclips that i want to manipulate in the as doc but if i try to add a child to the stage with the same name it ...
0
votes
2answers
51 views

Does MC work independently from OS libraries and kernel?

Does the windows version of Midnight Commander (MC) work independently from Windows libraries? I mean does it have it's own way of reading data off the disk or is it using the OS's abilities? If it's ...
0
votes
2answers
227 views

How to open file in Midnight Commander editor derectly from console?

Means without launch mc. Like "vi somefile" but in MC editor.
0
votes
1answer
271 views

mc(midle night file manager) not work in cygwin:Error opening terminal: xterm

I installed mc in my cygwin. but not work.anybody can help? $ mc Error opening terminal: xterm. $ mc -U Error opening terminal: xterm. The mc virsion: $ mc -V GNU Midnight Commander 4.6.1 ...
0
votes
2answers
2k views

tinting a MC with tweener

I would like to tint a movieclip with the tweener class. This is how I tint the mc without the tween: var c:Color=new Color(); c.setTint(0xff0000, 0.8); clouds.transform.colorTransform=c; it ...