diff --git a/src/HelpText.cpp b/src/HelpText.cpp
index dfb4590a7d73f6d4652a7b4a02c4431d22546bd9..df922f9df79b5665ab0314e4eca81b72c0875c1e 100644
--- a/src/HelpText.cpp
+++ b/src/HelpText.cpp
@@ -199,11 +199,11 @@ static wxString HelpTextBuiltIn( const wxString & Key )
          wxString(wxT("")) + 
          wxT("<center><h3>DarkAudacity ") + AUDACITY_VERSION_STRING + wxT("</h3></center>") +
          _("<br><br>DarkAudacity is based on Audacity:") + wxT("<ul><li>") +
-         _(" email to [[mailto:james@audacityteam.org|'james@audacityteam.org']] - for help using DarkAudacity.") + wxT("</li><li>") +
-         _(" see [[http://www.darkaudacity.com|www.darkaudacity.com]] - for differences between DarkAudacity and Audacity.") + wxT("</li></ul>") +
+         _(" [[http://www.darkaudacity.com|www.darkaudacity.com]] - for differences between them.") + wxT("</li><li>") +
+         _(" email to [[mailto:james@audacityteam.org|james@audacityteam.org]] - for help using DarkAudacity.") + wxT("</li><li>") +
+         _(" [[http://www.darkaudacity.com/video.html|Tutorials]] - for getting started with DarkAudacity.") + wxT("</li></ul>") +
 
          _("<br><br>Audacity has these support methods:") + wxT("<ul><li>") +
-         _(" [[http://manual.audacityteam.org/quick_help.html|'Quick Help']] - for getting started with Audacity.") + wxT("</li><li>") +
          _(" [[http://manual.audacityteam.org/|Manual]] - for comprehensive Audacity documentation") + wxT("</li><li>") +
          _(" [[http://forum.audacityteam.org/|Forum]] - for large knowledge base on using Audacity.") + wxT("</li></ul>") 
       );
diff --git a/src/Menus.cpp b/src/Menus.cpp
index 2b3899cdb6223c3e52664e59162ae16ae30df88b..e46ca1e7912225b30ef51e21a96712589e01c055 100644
--- a/src/Menus.cpp
+++ b/src/Menus.cpp
@@ -1090,7 +1090,10 @@ void AudacityProject::CreateMenusAndCommands()
       c->BeginMenu(_("&Help"));
       c->SetDefaultFlags(AlwaysEnabledFlag, AlwaysEnabledFlag);
 
-      c->AddItem(wxT("QuickHelp"), _("&Quick Help"), FN(OnQuickHelp));
+      // 'Getting Started' rather than 'Quick Help' for DarkAudacity.
+      // At the moment the video tutorials are aspirational (aka do not exist yet).
+      // Emphasise that manual is for Audacity, not DarkAudacity.
+      c->AddItem(wxT("QuickHelp"), _("&Getting Started"), FN(OnQuickHelp));
       c->AddItem(wxT("Manual"), _("Audacity &Manual"), FN(OnManual));
 
       c->AddSeparator();
diff --git a/src/widgets/HelpSystem.cpp b/src/widgets/HelpSystem.cpp
index 60bfc16d911d954db5c7cdb615a9a206002c8418..934d13103724223d09ed5b41f031d6806b88d599 100644
--- a/src/widgets/HelpSystem.cpp
+++ b/src/widgets/HelpSystem.cpp
@@ -296,9 +296,9 @@ void HelpSystem::ShowHelpDialog(wxWindow *parent,
    }
    else if (releasePageName == wxT("Quick_Help"))
    {
-      releasePageName = wxT("quick_help") + HelpSystem::ReleaseSuffix + anchor;
+      releasePageName = wxT("video") + HelpSystem::ReleaseSuffix + anchor;
       localHelpPage = wxFileName(FileNames::HtmlHelpDir(), releasePageName).GetFullPath();
-      webHelpPath = wxT("http://")+HelpSystem::HelpHostname+HelpSystem::HelpServerHomeDir;
+      webHelpPath = wxT("http://www.darkaudacity.com/");
    }
    else
    {