Skip to content

Commit 3cf2f4e

Browse files
authored
Update 5-SaveDemo.au3
1 parent cf8eee7 commit 3cf2f4e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

examples/5-SaveDemo.au3

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,16 +57,16 @@ Func Main()
5757
#EndRegion ; PDF
5858

5959
#Region ; HTML
60-
Local $s_HTML = _NetWebView2_ExportPageData($_g_oWeb, 0, "")
60+
Local $s_HTML_content = _NetWebView2_ExportPageData($_g_oWeb, 0, "")
6161
Local $s_HTML_FileFullPath = @ScriptDir & '\5-SaveDemo_result.html'
62-
FileWrite($s_HTML_FileFullPath, $s_HTML)
62+
FileWrite($s_HTML_FileFullPath, $s_HTML_content)
6363
ShellExecute($s_HTML_FileFullPath)
6464
#EndRegion ; HTML
6565

6666
#Region ; MHTML
67-
Local $s_MHTML = _NetWebView2_ExportPageData($_g_oWeb, 1, "")
67+
Local $s_MHTML_content = _NetWebView2_ExportPageData($_g_oWeb, 1, "")
6868
Local $s_MHTML_FileFullPath = @ScriptDir & '\5-SaveDemo_result.mhtml'
69-
FileWrite($s_MHTML_FileFullPath, $s_MHTML)
69+
FileWrite($s_MHTML_FileFullPath, $s_MHTML_content)
7070
ShellExecute($s_MHTML_FileFullPath)
7171
#EndRegion ; MHTML
7272

0 commit comments

Comments
 (0)