Thank You
I've placed the calendars on top of each other on my desktop.
So now with 1 press of a button it shows 1 of my calendars
But now I only want to make an toggle button.
I'm now working on letting them switch after each other.
Like:
None -> Day -> Week -> Month -> None ->
etc.
But what programming language is Rainlendar?
Here's what I made :
| Code: |
function Hotkey_Show_Day_View()
Rainlendar_ShowWindow("Day View")
Rainlendar_HideWindow("Sidebar")
Rainlendar_HideWindow("Week View")
end
function Hotkey_Show_Week_View()
Rainlendar_HideWindow("Day View")
Rainlendar_ShowWindow("Week View")
Rainlendar_HideWindow("Sidebar")
end
function Hotkey_Show_Month_View()
Rainlendar_HideWindow("Day View")
Rainlendar_HideWindow("Week View")
Rainlendar_ShowWindow("Sidebar")
end
|