From 93fa6c7f3ad937d31eba7256ca27e1c7e579086b Mon Sep 17 00:00:00 2001 From: TheUltimateHacker Date: Mon, 16 Mar 2015 16:20:39 -0400 Subject: Speech Synth System added for future AI Character Added a new Speech Synth system using the .NET Framework's Speech Synth API. To utilize this system, I've added 3 new functions in Helper.vb called speak(Text As String), speakInfoBox(Title As String, Text As String) and speakOnTerminal(Text As String) as well as 2 new Terminal cmdlets, one called speak 'Text in Single Quotes' and speak_Infobox 'Title' 'Text'. These two commands should not be bundled with the full release of 0.0.9. I've also fixed a bug with the Advanced App Launcher, where the AAL would not close unless you clicked "Applications" or clicked an option in the AAL. Now, clicking the Desktop Panel and Desktop will close the AAL. I have yet to figure out the Skin Loader AAL loading issue (Can't run Skin Loader from the AAL), but that'll be my next bugfix. --- ShiftOS/ShiftOSDesktop.vb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'ShiftOS/ShiftOSDesktop.vb') diff --git a/ShiftOS/ShiftOSDesktop.vb b/ShiftOS/ShiftOSDesktop.vb index 0e9be0f..17667bd 100644 --- a/ShiftOS/ShiftOSDesktop.vb +++ b/ShiftOS/ShiftOSDesktop.vb @@ -5233,4 +5233,8 @@ refreshIcons() 'End If End Sub + + Private Sub StartFixer(sender As Object, e As MouseEventArgs) Handles desktopicons.MouseDown, pnlpanelbuttonholder.MouseDown + If pnladvapplauncher.Visible = True Then pnladvapplauncher.Visible = False + End Sub End Class \ No newline at end of file -- cgit v1.2.3