Jump to content

Search the Community

Showing results for tags 'error parsing function call'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. Greetings, I used to use this function a lot and never had any problems with it. I even recently added it to my UDF but now upon retesting it I get this error during runtime (No compile errors): Error: Error parsing function call. Here is the function. It is for deleting IE and Flash cookies from the system: #Include <File.au3> #include <Array.au3> Func _ClearCookies() ShellExecuteWait("RunDll32.exe","InetCpl.cpl,ClearMyTracksByProcess 2") $cookieFolders = _FileListToArray(@AppDataDir&"\Macromedia\Flash Player\#SharedObjects","*",2) If @error Then Return "nonetorm" Else _ArrayDelete($cookieFolders,0) For $i = 0 To UBound($cookieFolders) -1 $siteFolders = _FileListToArray(@AppDataDir&"\Macromedia\Flash Player\#SharedObjects\"&$cookieFolders[$i],"*",2) If $i = 0 Then _ArrayDelete($siteFolders,0) EndIf For $j = 0 To UBound($siteFolders) -1 DirRemove(@AppDataDir&"\Macromedia\Flash Player\#SharedObjects\"&$cookieFolders[$i]&"\"&$siteFolders[$j],1) Next Next EndIf Return "cookiesremoved" EndFunc Thank you to anyone who can help.
×
×
  • Create New...