Page 1 of 2

Time to consider CORTANA ?

PostPosted: Wed Nov 04, 2015 5:00 pm
by TimStone
Cortana is expanding and will soon be available everywhere. Introduced in Windows Phones, it is now integral to Windows 10. There is availability on Android, and iOS testing will begin soon.

Cortana can interact with apps and can be our true voice control in our projects. For clients who want voice driven applications, Cortana will be universally available, and may well be the perfect solution.

With this in mind, perhaps some of the people who are great at bringing new capabilities to FWH might want to explore this as a new feature for development.

Re: Time to consider CORTANA ?

PostPosted: Wed Nov 04, 2015 9:05 pm
by nageswaragunupudi
At the moment the API is available for development of Universal Apps and not for Desptop Apps
Let us wait and see.

Re: Time to consider CORTANA ?

PostPosted: Fri Feb 16, 2018 6:54 pm
by Otto
Dear Mr. Rao,
any news on this.
Thank you in advance and best regards,
Otto

Re: Time to consider CORTANA ?

PostPosted: Fri Feb 16, 2018 9:16 pm
by Antonio Linares
Code: Select all  Expand view
#include "FiveWin.ch"

function Main()

   ShellExecute( 0, "open", "ms-cortana://StartMode=Reactive&ListeningMode=True&QuerySource=VoiceShortcutKey&Positioner=desktop&SpeechTextInputHeight=40&ColorPrevalenceEnabled=true&PersonaOnlySupported=true&TaskbarOrientation=3&SearchBoxInTaskbar=false&AppsUseLightTheme=false&HideFileExtensions=false" )

return nil
 


ms-cortana://Coobe
ms-cortana://home
ms-cortana://NoNavigate
ms-cortana://Reactive
ms-cortana://Proactive
ms-cortana://Reminders
ms-cortana://SearchResults
ms-cortana://Settings
ms-cortana://StartMode=Coobe
ms-cortana://StartMode=MyStuff
ms-cortana://StartMode=NamePronunciation
ms-cortana://StartMode=NoNavigate
ms-cortana://StartMode=Notebook
ms-cortana://StartMode=Proactive
ms-cortana://StartMode=QuietHours
ms-cortana://StartMode=Reactive
ms-cortana://StartMode=Reminders
ms-cortana://StartMode=SearchResults
ms-cortana://StartMode=Settings
ms-cortana://home/?QuerySource=
ms-cortana://StartMode=Settings&QuerySource=Settings
ms-cortana://StartMode=QuietHours&QuerySource=ActionCenter

Cortana icon:
Image

Re: Time to consider CORTANA ?

PostPosted: Fri Feb 16, 2018 9:39 pm
by Antonio Linares
I appreciate your feedback testing this one:

ShellExecute( 0, "open", "ms-cortana://search/?q=What's the weather like today" )

Re: Time to consider CORTANA ?

PostPosted: Fri Feb 16, 2018 9:43 pm
by Antonio Linares

Re: Time to consider CORTANA ?

PostPosted: Sat Feb 17, 2018 8:12 am
by Otto
appreciate your feedback testing this one:

ShellExecute( 0, "open", "ms-cortana://search/?q=What's the weather like today" )


Dear Antonio,
This is working fine.
Can wie do something like this:

What would be the ms_cortana command and how to store the text into a variable?
cText := ShellExecute( 0, "open", "ms-cortana://search/?q=What's the weather like today" )

Thanks in advance
Otto

Re: Time to consider CORTANA ?

PostPosted: Sat Feb 17, 2018 8:24 am
by Antonio Linares
Dear Otto,

Please post a screenshot here with what you get when you run:

ShellExecute( 0, "open", "ms-cortana://search/?q=What's the weather like today" )

many thanks

Re: Time to consider CORTANA ?

PostPosted: Sat Feb 17, 2018 8:31 am
by Silvio.Falconi
Image

Re: Time to consider CORTANA ?

PostPosted: Sat Feb 17, 2018 8:33 am
by Otto
Dear Antonio,
this is what I get:
Thank you and best regards,
Otto
Image

Re: Time to consider CORTANA ?

PostPosted: Sat Feb 17, 2018 8:34 am
by Silvio.Falconi
Antonio,
How make this from fwh:

Create a calendar event
You can quickly create a new calendar event by typing create calendar in the search box of Cortana.

Re: Time to consider CORTANA ?

PostPosted: Sat Feb 17, 2018 3:50 pm
by Otto
Hello Antonio,
I’ve found a project for Windows Office: Dictate
an add-in for Microsoft Office.
This is a Microsoft garage project.
This is using Cortana not SpeechText with works much better.
But I found no other programs.
Maybe I could open from Fivewin WORD then dictate close and import the docx-file to the Fivewin program.
Best regards,
Otto

Re: Time to consider CORTANA ?

PostPosted: Sat Feb 17, 2018 4:31 pm
by nageswaragunupudi
I wish dictate feature for FivEdit

Re: Time to consider CORTANA ?

PostPosted: Mon Feb 19, 2018 10:50 am
by Antonio Linares
Getting closer to Cortana...

Code: Select all  Expand view
#include "FiveWin.ch"

function Main()

   ShellExecute( 0, "open", "ms-cortana://Reminders" )
 
   MsgInfo( FindWindow( 0, "Cortana" ) )

return nil

Re: Time to consider CORTANA ?

PostPosted: Tue Feb 20, 2018 10:24 pm
by Otto
Dear Antonio,
Cortana is opening and asking "What can I do more". Also a MsgInfo with a number (661620) pops up.
On SERVER 2012 with no Cortana installed the number is 0.
Best regards,
Otto