Hi, everyone!
I'm writing a program in C# that needs to know opened files in a Photoshop CS4 window.
The old versions of Photoshop have a MDIClient window in the program that can be getted with GetWindow() and GetClassName() calls. So, I can get the name from the window title bar and parse it from this format: name @ pictureattributes. Unfortunately, CS4 does not have a MDIClient, so I can't use this method to get the name, for now.
Is there someone who can point me to a possible solution to this problem?