Two sample IAC scripts for The Scripter's Scrapbook. Drop a text file containing either script into the IACin folder to action it (ensure that IAC is enabled in the Scrapbook Preferences first)... # Sample Script 1 # Grab current Entry, ask User for fileName and view as a web page... ssBkGetEntryName "Current" put the result into tEntryName ssBkGetEntryData tEntryName,"All","HTML" put the result into tData # Ask User for a filename... ssBkaskFile tEntryName&".html" put the result into tHTMLFilePath if tHTMLFilePath="Cancel" then ssBkExitScript ssBkIACwrite tData,tHTMLFilePath # Open the file... ssBkLaunchURL tHTMLFilePath # Sample Script 2 # Grab current Entry and save as a web page... ssBkGetEntryName "Current" put the result into tEntryName put tEntryName&".html" into tFileName ssBkGetEntryData tEntryName,"All","HTML" put the result into tData # Save file to the IACout folder... ssBkIACwrite tData,tFileName put the result into tResult # Advise filepath... ssBkAnswer "You will find the output file the IACout folder." # Open the file... ssBkLaunchURL tResult