missing my App in recent Apps in Dock
missing my App in recent Apps in Dock
Why are all my Programs not listed as recent app in the Dock, but in the Apple menu ->Recent objects ?
macOS Catalina 10.15.7
Re: missing my App in recent Apps in Dock
Seems to be working for me.
Do they all have a unique app ID?
Do they all have a unique app ID?
Re: missing my App in recent Apps in Dock
I don't think it is a problem of the info.plist file.
Just to be sure. Since a few years the macOS Dock keeps the last three Apps stored even if they are not running anymore.
My Apps are shown in the Dock, but only till I quit them.
Can someone finish this simple code to shown as recent App in the Dock please?
Just to be sure. Since a few years the macOS Dock keeps the last three Apps stored even if they are not running anymore.
My Apps are shown in the Dock, but only till I quit them.
Can someone finish this simple code to shown as recent App in the Dock please?
Code: Select all
Global Window_0, Button_0
Procedure myWindowEvents(event)
Select event
Case #PB_Event_CloseWindow
ProcedureReturn #False
Case #PB_Event_Menu
Select EventMenu()
Case #PB_Menu_Quit
ProcedureReturn #False
EndSelect
Case #PB_Event_Gadget
Select EventGadget()
Case Button_0
ProcedureReturn #False
EndSelect
EndSelect
ProcedureReturn #True
EndProcedure
Window_0 = OpenWindow(#PB_Any, 0, 0, 450, 160, "", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
Button_0 = ButtonGadget(#PB_Any, 160, 50, 130, 25, "quit")
Repeat
event = WaitWindowEvent()
Until myWindowEvents(event) = #False
macOS Catalina 10.15.7
Re: missing my App in recent Apps in Dock
I'm not sure if we talk about the same behaviour.
In the Dock, on the right side are the tree last recent / suggested apps listed after they quit.
My apps are not in this list after they quit.
Can someone tell me why?
In the Dock, on the right side are the tree last recent / suggested apps listed after they quit.
My apps are not in this list after they quit.
Can someone tell me why?
macOS Catalina 10.15.7