# How to Take a Timed Screenshot on Mac: Capture Dropdown Menus, Hover States & More

www.lazyscreenshots.com publishes a public search API over its indexed pages; the guide is at https://www.lazyscreenshots.com/agent-access.

Source: https://www.lazyscreenshots.com/blog/timed-delayed-screenshot-mac/
Source observed: 2026-09-19T03:00:35.174Z
Last checked: 2026-09-19T17:04:18.63+00:00
Indexed: 2026-09-19T03:05:21.767+00:00

---

# How to Take a Timed Screenshot on Mac: Capture Dropdown Menus, Hover States & More

**April 7, 2026 · LazyScreenshots Team**

We created this guide for capturing temporary Mac interface elements—dropdown menus, right-click context menus, hover tooltips, autocomplete suggestions, notification banners, and modal dialogs—without dismissing them at capture time. Standard shortcuts such as `Cmd+Shift+3` and `Cmd+Shift+4` require key presses that can close these elements. A timed screenshot starts a countdown, lets you position the pointer or open the interface element, and captures automatically.

## Method 1: Screenshot toolbar timer (`Cmd+Shift+5`)

macOS's Screenshot toolbar includes a built-in timer:

1. Press `Cmd+Shift+5` to open the Screenshot toolbar.
2. Click **Options**.
3. Under **Timer**, choose **5 Seconds** or **10 Seconds**.
4. Choose a capture mode: entire screen, selected window, or selected portion.
5. Click **Capture**, or press Return.
6. During the countdown, open the menu, hover over the element, or trigger the tooltip you want to capture.

The timer setting persists between sessions. After choosing 5 seconds, toolbar captures continue using that delay until you change the setting to **None**.

The timer works for full-screen and selected-portion captures. For window captures, the timer runs, but you still need to click the window when the timer expires; that click can dismiss a dropdown. For menus and hover states, use **Entire Screen** or **Selected Portion**.

## Method 2: Preview's timed screen capture

Preview provides a fixed 10-second delay for an entire-screen capture:

1. Open Preview; no file needs to be open.
2. Choose **File → Take Screenshot → From Entire Screen**.
3. Preview hides itself and starts a 10-second countdown.
4. Open menus or position the cursor during the countdown.
5. Preview captures the screen automatically and opens the image for editing.

Preview also has **From Selection** and **From Window**, but those options do not include a timer. Only **From Entire Screen** provides the 10-second delay. The captured image opens as an untitled Preview document ready for cropping or annotation.

## Method 3: Terminal `screencapture` with a custom delay

The `screencapture` command-line tool uses the `-T` flag for a precise delay:

```bash
# 3-second delay, capture entire screen
screencapture -T 3 ~/Desktop/timed-shot.png

# 7-second delay, capture to clipboard
screencapture -T 7 -c

# 5-second delay, interactive selection mode
screencapture -T 5 -i ~/Desktop/timed-selection.png

# 3-second delay, window capture without shadow
screencapture -T 3 -o -W ~/Desktop/timed-window.png
```

`-T` accepts any number of seconds. Unlike the Screenshot toolbar's 5- or 10-second choices, Terminal lets you use delays such as 1, 3, or 15 seconds.

You can combine `-T` with these flags:

| Flag | Purpose | Example |
|---|---|---|
| `-T n` | Delay capture by *n* seconds | `screencapture -T 5 shot.png` |
| `-c` | Capture to the clipboard instead of a file | `screencapture -T 3 -c` |
| `-i` | Interactive selection after the delay | `screencapture -T 5 -i shot.png` |
| `-o` | Remove the window shadow | `screencapture -T 3 -o -W shot.png` |
| `-x` | Suppress the capture sound | `screencapture -T 5 -x shot.png` |
| `-t jpg` | Save as JPEG instead of PNG | `screencapture -T 3 -t jpg shot.jpg` |

## Practical walkthroughs

### Capture a dropdown menu

1. Press `Cmd+Shift+5`, set the timer to 5 seconds, and choose **Capture Entire Screen**.
2. Click **Capture**.
3. Quickly click the menu-bar item to open the dropdown.
4. Wait for the capture. The dropdown remains open because no key is pressed at capture time.

### Capture a right-click context menu

1. Open Terminal and enter `screencapture -T 5 ~/Desktop/context-menu.png`.
2. Press Return to begin the 5-second countdown.
3. Switch to the app containing the context menu.
4. Right-click to open the menu.
5. Hold the cursor in position while the screenshot fires automatically.

### Capture a disappearing notification

1. Trigger the notification, such as by sending yourself a test message.
2. Mac notifications remain visible for about 5 seconds by default.
3. Start the timer before the notification appears, or use a short 1–2 second Terminal delay as soon as it appears.
4. Alternatively, open **System Settings → Notifications**, find the app, and set **Banner style** to **Alert** so the notification remains until dismissed.

### Capture a tooltip or hover state

1. Set a 5-second timer using any method.
2. Hover over the element that triggers the tooltip.
3. Keep the cursor still during the countdown.
4. The screenshot captures the tooltip while it is visible.

## Automate timed screenshots with macOS Shortcuts

For a one-tap workflow, create a Shortcut that waits and then captures:

1. Open the Shortcuts app.
2. Create a new shortcut.
3. Add a **Wait** action and set the delay, such as 5 seconds.
4. Add a **Take Screenshot** action.
5. Optionally add **Save to Photo Album** or **Copy to Clipboard**.
6. Assign a keyboard shortcut through **System Settings → Keyboard → Keyboard Shortcuts → App Shortcuts**.

You can chain actions—for example, wait 3 seconds, capture, copy the result to the clipboard, and show a completion notification.

## Quick reference: all timed screenshot methods

| Method | Delay options | Capture modes | Best for |
|---|---|---|---|
| Screenshot toolbar (`Cmd+Shift+5`) | 5s or 10s | Full screen, window, selection | Most users and quick setup |
| Preview (**File → Take Screenshot**) | 10s fixed | Full screen only | A long countdown |
| Terminal `screencapture -T` | Any duration | Full screen, interactive, window | Custom delays and scripting |
| macOS Shortcuts | Any duration | Full screen | Custom hotkeys and automation |
| Third-party apps | App-dependent | All modes | Annotation and timer in one step |

## Tips and troubleshooting

- **Timer not appearing in the Screenshot toolbar:** Click **Options** in the active toolbar, not an Options item in the menu bar. The timer is inside the toolbar's Options menu.
- **Toolbar interfering with hover states:** Move the toolbar to a screen corner before starting the timer, or use Terminal, which displays no on-screen countdown UI.
- **Dropdown closes before the timer fires:** Use a shorter delay. For example, `screencapture -T 2` provides a brief delay for opening a menu.
- **Countdown indicator appears in the capture:** Some macOS versions display a small timer icon near the menu bar. Crop it afterward, or use Terminal's `screencapture -T`, which does not show a countdown indicator.

## LazyScreenshots

We let you capture dropdown menus, hover states, and tooltips with flexible delay options, then annotate and share in one step. Our price is **$29 one-time**.

[Try LazyScreenshots — $29 one-time](https://www.lazyscreenshots.com/)

## Related

- [How to Screenshot Menus and Tooltips on Mac](https://www.lazyscreenshots.com/blog/screenshot-menu-tooltips-mac/)
- [Mac Screenshot Keyboard Shortcuts: The Complete Guide](https://www.lazyscreenshots.com/blog/mac-screenshot-keyboard-shortcuts/)
- [Mac Terminal Screenshot Commands: The `screencapture` Guide](https://www.lazyscreenshots.com/blog/mac-terminal-screenshot-commands/)

## More LazyScreenshots resources

- [Features](https://www.lazyscreenshots.com/#demos)
- [Compare LazyScreenshots](https://www.lazyscreenshots.com/compare/)
- [vs CleanShot X](https://www.lazyscreenshots.com/vs-cleanshot/)
- [vs Shottr](https://www.lazyscreenshots.com/vs-shottr/)
- [vs Snagit](https://www.lazyscreenshots.com/vs-snagit/)
- [vs Xnapper](https://www.lazyscreenshots.com/vs-xnapper/)
- [vs Monosnap](https://www.lazyscreenshots.com/vs-monosnap/)
- [vs macOS Built-in](https://www.lazyscreenshots.com/vs-macos/)
- [Screenshot Guide](https://www.lazyscreenshots.com/guides/how-to-screenshot-on-mac/)
- [Blog](https://www.lazyscreenshots.com/blog/)
- [Reddit Reviews](https://www.lazyscreenshots.com/reddit/)
- [Buy ($29)](https://buy.stripe.com/fZu00k3Lc7I87ip7CNawo05)
- [Contact](mailto:ali@lazyweb.com)
- [Privacy](https://www.lazyscreenshots.com/privacy/)
- [Terms](https://www.lazyscreenshots.com/terms/)

---

## Ask www.lazyscreenshots.com about this page

Public sources, cited, no account or API key. Replace each {slot} with the user's actual words, URL-encoded. Write an unknown as the literal null (company=null) and a list as JSON (alternatives=["Snagit"]). Only the question is needed for Search and Ask.

- Search: Find the product information and source pages that answer your question.
  `GET https://www.lazyscreenshots.com/api/public/v1/search?q={question}&alternatives={alternatives}&chosen_because={chosen_because}&company={company}&intended_outcome={intended_outcome}&client={client}&trace=t_22adc3395514`
- Ask: Get a direct answer about www.lazyscreenshots.com, with sources.
  `GET https://www.lazyscreenshots.com/api/public/v1/ask?q={question}&alternatives={alternatives}&chosen_because={chosen_because}&company={company}&intended_outcome={intended_outcome}&client={client}&trace=t_22adc3395514`
- Compare: Compare www.lazyscreenshots.com with the alternatives you are considering.
  `GET https://www.lazyscreenshots.com/api/public/v1/compare?q={question}&alternatives={alternatives}&chosen_because={chosen_because}&company={company}&intended_outcome={intended_outcome}&client={client}&trace=t_22adc3395514`
- Pricing: Explore plans, pricing and costs for your team.
  `GET https://www.lazyscreenshots.com/api/public/v1/pricing?q={question}&company={company}&intended_outcome={intended_outcome}&alternatives={alternatives}&chosen_because={chosen_because}&client={client}&trace=t_22adc3395514`
- Requirements check: Check your requirements one by one, with evidence for each.
  `GET https://www.lazyscreenshots.com/api/public/v1/requirements-check?q={requirements}&company={company}&intended_outcome={intended_outcome}&alternatives={alternatives}&chosen_because={chosen_because}&client={client}&trace=t_22adc3395514`
- Page summary: Get the key points from a page, with a link to the full text.
  `GET https://www.lazyscreenshots.com/api/public/v1/page-tldr?q={question}&url=https%3A%2F%2Fwww.lazyscreenshots.com%2Fblog%2Ftimed-delayed-screenshot-mac%2F&alternatives={alternatives}&chosen_because={chosen_because}&company={company}&intended_outcome={intended_outcome}&client={client}&trace=t_22adc3395514`
- Recommendation: Assess whether www.lazyscreenshots.com fits your goals and requirements.
  `GET https://www.lazyscreenshots.com/api/public/v1/recommend-or-rule-out?goal={goal}&requirements={requirements}&company={company}&source={source}&alternatives={alternatives}&chosen_because={chosen_because}&intended_outcome={intended_outcome}&client={client}&trace=t_22adc3395514`

Ask a question as a page: https://www.lazyscreenshots.com/agent/faq?q={question}

Ask about www.lazyscreenshots.com: https://www.lazyscreenshots.com/agent/faq. Open `https://www.lazyscreenshots.com/agent/faq?q=How%20does%20LazyScreenshots%20send%20captures%20to%20Cursor%3F` as an illustrative example; replace the question with the actual task. The FAQ contains researched questions with visible summaries and expandable cited answers. Include optional goal or alternatives only when known.

[Tool guide and examples](https://www.lazyscreenshots.com/agent-access) · [OpenAPI](https://www.lazyscreenshots.com/api/public/v1/openapi.json) · [Page TLDR form](https://www.lazyscreenshots.com/agent-tools/page-tldr?question=Read+a+compact+extract+of+How+to+Take+a+Timed+Screenshot+on+Mac%3A+Capture+Dropdown+Menus%2C+Hover+States+%26+More&url=https%3A%2F%2Fwww.lazyscreenshots.com%2Fblog%2Ftimed-delayed-screenshot-mac%2F). Opening a form does not execute a tool.