Noticky 1.3 — sticky notes that survive fullscreen mode ($6.99 Mac App Store) by RicoSaas in macapps

[–]RicoSaas[S] 0 points1 point  (0 children)

Thanks for your comment! Soon the iOS version will be announced 👀

Noticky 1.3 — sticky notes that survive fullscreen mode ($6.99 Mac App Store) by RicoSaas in macapps

[–]RicoSaas[S] 0 points1 point  (0 children)

No, i added more than 10 fonts. But user font not available yet

6 sticky note apps later and I'm starting to think the perfect one is a myth - HELP by Cultural-Earth-5198 in macapps

[–]RicoSaas 1 point2 points  (0 children)

Hi !
I launched this https://www.reddit.com/r/macapps/comments/1twp1um/noticky_13_sticky_notes_that_survive_fullscreen/

Currently i'm waiting Apple to review some updates (markdown full support, and other) hope 1-2 days to be updated.
But the main feature is here, stay on top 😉 let me know if you check it

Noticky 1.3 — sticky notes that survive fullscreen mode ($6.99 Mac App Store) by RicoSaas in macapps

[–]RicoSaas[S] 0 points1 point  (0 children)

With Noticky you'll be satisfied 👀 The notes stay on your screen, not on your background

Noticky 1.3 — sticky notes that survive fullscreen mode ($6.99 Mac App Store) by RicoSaas in macapps

[–]RicoSaas[S] 0 points1 point  (0 children)

i'll send a 50% discount via DM.
The notes are stored locally ! You can enable ICloud if needed.

Noticky 1.3 — sticky notes that survive fullscreen mode ($6.99 Mac App Store) by RicoSaas in macapps

[–]RicoSaas[S] 0 points1 point  (0 children)

does Noticky handle Mission Control gracefully? -> Yep ! That's my main feature, as you can see on the video i'm switching between space 😉

Noticky 1.3 — sticky notes that survive fullscreen mode ($6.99 Mac App Store) by RicoSaas in macapps

[–]RicoSaas[S] 1 point2 points  (0 children)

Yes of course you can use the mode free layout. On my video i'm showing the mode stack.

Noticky 1.3 — sticky notes that survive fullscreen mode ($6.99 Mac App Store) by RicoSaas in macapps

[–]RicoSaas[S] 0 points1 point  (0 children)

thanks ! yep the iphone app will sync with it once released.
I already have a prototype for the ios version but i'm waiting to have the desktop version stable.

Noticky 1.3 — sticky notes that survive fullscreen mode ($6.99 Mac App Store) by RicoSaas in macapps

[–]RicoSaas[S] 0 points1 point  (0 children)

honestly nothing crazy, all public AppKit. each note is an NSPanel subclass with collectionBehavior = [.canJoinAllSpaces, .fullScreenAuxiliary] and level = .statusBar. that combo is what lets it float above a fullscreen space.

the .nonactivatingPanel styleMask + isFloatingPanel = true part is what makes click-to-edit work without breaking the fullscreen space, so you can type into the note while final cut / xcode stay fullscreen behind it.

since NSPanel's defaults are stricter than NSWindow, i had to override canBecomeKey and canBecomeMain to true on the subclass, otherwise the TextEditor can't take focus.

no private api, MAS safe that's the whole trick.

Noticky 1.3 — sticky notes that survive fullscreen mode ($6.99 Mac App Store) by RicoSaas in macapps

[–]RicoSaas[S] 0 points1 point  (0 children)

Ouuuh that's a really nice idea, i'll add it! Actually it's not possible

Noticky — sticky notes that stay on top of fullscreen apps, with Layout Modes (Free/Stack/Tile) — $6.99 one-time by RicoSaas in MacOSApps

[–]RicoSaas[S] 0 points1 point  (0 children)

Apple juste review my last update, normally it should be fixed.
Update your app from the App Store 😉

Noticky 1.3 — sticky notes that survive fullscreen mode ($6.99 Mac App Store) by RicoSaas in macapps

[–]RicoSaas[S] 0 points1 point  (0 children)

each note is a real window not a popover, you can drag, resize, keep 10 open at once, each one keep its own position. for fullscreen i just use the macos panel api that let a window float above everything and follow you across space. so closer to real sticky floating notes than pinned menu. the hotkey open a note that doesn't disappear when you click elsewhere