Problem with screen display MacBook Maverick

Discuss new features and functions
Posts: 2
Joined: 21 Mar 2008

aperezy

I am having a frustrating issue on my macbook pro. I download Freefilesync and schedule a sync process however I had to stop it due to a folder that i Missed. Suddenly I could not see the upper side of the GUI interface anymore, The pull-down menu options works but not the upper side by side display. I uninstalled and reinstalled the program and still the same. I have tried reset the layout and other with no success. It is really frustrating. I have been using the product on my windows machine with no problem.

I minimize the screen but in the upper side due to the menu bar from APPLE...anyway I cannot do anything until I get this fixed

BTW also notice that when I launch the program from he icon two (2) instances of the process are created in my mac

Thanks
Alfredo Perez
Posts: 2
Joined: 21 Mar 2008

aperezy

Found the solution...need to run this AppleScript

-- Example list of processes to ignore: {"xGestures"} or {"xGestures", "OtherApp", ...}
property processesToIgnore : {}

-- Get the size of the Display(s), only useful if there is one display
-- otherwise it will grab the total size of both displays
tell application "Finder"
set _b to bounds of window of desktop
set screen_width to item 3 of _b
set screen_height to item 4 of _b
end tell

tell application "System Events"
set allProcesses to application processes
set _results to ""
repeat with i from 1 to count allProcesses
set doIt to 1
repeat with z from 1 to count processesToIgnore
if process i = process (item z of processesToIgnore) then
set doIt to 0
end if
end repeat

if doIt = 1 then
tell process i
repeat with x from 1 to (count windows)
set winPos to position of window x
set _x to item 1 of winPos
set _y to item 2 of winPos

if (_x < 0 or _y < 0 or _x > screen_width or _y > screen_height) then
set position of window x to {0, 22}
end if
end repeat
end tell
end if
end repeat
end tell

Thanks and close the issue