Comments

Kimberly wrote on 11/24/2012, 6:37 AM
You can close all of your other docked windowns be selecting View and then unchecking them, by clicking the X in each upper left corner. Then after you drag the Pan/Crop window back where you want it, you can re-enable the other windows.
zuvuya wrote on 11/24/2012, 7:27 AM
Thanks, but this does not work. It´s not docked.

Tried rebooting and preferences Default all as well.

This is crazy! I´m working on Windows 7 BTW.

*** Update: I just cracked it! I moved the Windows Task bar to the top of my screen. The Pan/crop screen was hiding behind it!
Satevis wrote on 11/24/2012, 7:33 AM
Did you try holding Ctrl+Shift while starting Vegas to reset all user settings?

If that doesn't work or seems overkill, you can use a script:

using System;
using System.Runtime.InteropServices;

class EntryPoint
{
[DllImport("user32.dll")]
static extern IntPtr FindWindow(string lpClassName, string lpWindowName);

[DllImport("user32.dll")]
static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter,
int X, int Y, int cx, int cy, uint uFlags);

public void FromVegas(Sony.Vegas.Vegas vegas)
{
SetWindowPos(FindWindow("Vegas.Class.Doc", null),
IntPtr.Zero, 0, 0, 0, 0, 5);
}
}
rs170a wrote on 11/24/2012, 7:35 AM
Set your Windows taskbar to Auto Hide and then look for it.

Mike
zuvuya wrote on 11/24/2012, 7:36 AM
Thanks Satevis, I just updated my post, it´s solved.
zuvuya wrote on 11/24/2012, 7:37 AM
Thanks Mike, that was it!