Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Click to Do is an AI-supported feature that utilizes the local Phi Silica model in Copilot+ PCs to connect actions to the content (text or images) on the screen. For example, a video that you watched featured a person wearing a shirt that you like. You can find that video and where the shirt shows up using Recall. Click to Do will then offer the option to search using Bing for where you might buy that shirt online. Developers can launch Click to Do from their app using a URI scheme.
Learn more about Click to Do.
Launch Click to Do
To launch the Click to Do feature on a Copilot+ PC from your app, you can utilize the following URI scheme: ms-clicktodo://
The ms-clicktodo://
URI enables your app to programmatically launch Click to Do, placing an interactive overlay on top of the PC screen. This overlay suggests quick actions to appear for images or text. The analysis of the screen is always performed locally on the device. Content is only shared if the user chooses to complete an action. Content is not saved, nor is it automatically passed back to the app used to open the overlay. This URI does not accept any additional parameters.
The following code samples open Click to Do from the user's app:
var clickToDoUri = new Windows.Foundation.Uri(L"ms-clicktodo://");
Windows.System.Launcher.LaunchUriAsync(clickToDoUri)