PoshCode Archive  Artifact [9c4c1e00fa]

Artifact 9c4c1e00fafeadab4426ef40575f0361df556eed0920285701760c8fe9b3249e:

  • File Write-Typewriter.ps1 — part of check-in [3d20ae966e] at 2018-06-10 14:09:58 on branch trunk — Make write-host text appear as if it is being typed on a typewriter (user: Nathan Kasco size: 1336)

# encoding: ascii
# api: powershell
# title: Write-Typewriter
# description: Make write-host text appear as if it is being typed on a typewriter
# version: 1.0
# type: function
# author: Nathan Kasco
# license: CC0
# function: Write-Typewriter
# x-poshcode-id: 6190
# x-archived: 2016-03-18T22:01:13
# x-published: 2016-01-26T00:21:00
#
#
#Typewriter Text
function Write-Typewriter
{
<#
.Synopsis
   Make write-host text appear as if it is being typed on a typewriter
.DESCRIPTION
   Input text and if desired specify the write speed (25-250 milliseconds) for the text
.EXAMPLE
   Type-Typewriter "Hello world!"
.EXAMPLE
   Type-Typewriter "Hello world!" 250
.NOTES
   v1.0 - 2016-01-25 - Nathan Kasco
#>

    [CmdletBinding()]
    [Alias()]
    [OutputType([string])]

    Param
    (
        [Parameter(Mandatory=$true, Position=0)]
        [alias("Name")]
        [string]
        $text,
        
        [Parameter(Mandatory=$false, Position=1)]
        [ValidateRange(25,250)]
        [int]
        $typeSpeed = 125
    )

    function sleep-host{
        Start-Sleep -Milliseconds $typeSpeed
    }

    #Cycle through letters
    $count = 0
    while($count -lt $text.Length){
        Write-Host $text.Chars($count) -NoNewline
        sleep-host
        $count++
    }
}