This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function demoParcels() { | |
var ckey = "FVv7W5Az99" | |
var tileurl = "reportallusa.com/dyn/tile.py" | |
var tile_map_url = tileurl + "?map=siteroot/Base_Layers.map&layer=Parcels&mode=tile&tilemode=gmap&tile=${x}+${y}+${z}&client=" + ckey; | |
new L.TileLayer(tile_map_url).addTo(map) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-178.2,6.6,-49.0,83.3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var tutorialMaster = [ | |
"tutorialOne", | |
"tutorialTwo", | |
"tutorialThree" | |
]; | |
function closeOtherTutorials () { | |
for (tut in tutorialMaster) { | |
window[tutorialMaster[tut]].cancel() //Or however you track your tutorials. | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sub StripAllBuilds() | |
Dim I As Integer: Dim J As Integer | |
Dim oActivePres As Object | |
Set oActivePres = ActivePresentation | |
With oActivePres | |
For I = 1 To .Slides.Count | |
If Val(Application.Version) < 10 Then | |
' Older versions of PowerPoint 97/2000 | |
' In each slide set the animation property | |
' of the Shape object to FALSE |