English Deutsch Français Italiano Particle Software Buy Now


Particle Software
 
ChangeLog
   ..::   About  •  Purchasing  •  Search  •  Contact  • Home   ::..
 
Screenshots
• Sample
Downloads
Resources
• FAQ
• Macros

 
  The full development history for IntraLaunch can be seen below. Small code snippets are also available here for the given addition or enhancement.

 
 
IntraLaunch 5.0 - Copyright (C) 1997-2003 Particle Software
(November 1, 2004)


Version 5.0 adds functionality only.

   • Added function to return a list of files for a specific path. This can be used to create a simple file manager with Javascript.

Also see http://www.particlesoftware.com/en/getfilelist.html

   • Added functions to check for total and free space of a given drive.

GetDriveTotalSpace()
GetDriveFreeSpace()

Also see http://www.particlesoftware.com/en/drivespace.html

   • Added function to delete a file.

DeleteFile()

Also see http://www.particlesoftware.com/en/deletefile.html

   • Added function to get the full path to the program for a given associated file type.

GetAssociatedApp()

Also see http://www.particlesoftware.com/en/getassociatedapp.html

 --- End of Version 5.0 Enhancements ---

   • Substantially improved Application Recalling support. Added the ability to recall an already running application based on window title only, or by a classname/window title combination. This fixes the problem or restoring Outlook if its minimized.

Eg. If MS-Word is already running and the title of Word's window has sales.doc in it, bring it into focus and restore it if its minimized.

<PARAM NAME="RecallApp" VALUE="OpusApp,*sales.doc*">
<PARAM NAME="AndRestore" VALUE="True">

Also see http://www.particlesoftware.com/en/recall.html

   • Added function GetMultipleRegKey() which allows you to obtain all the values under a registry key one by one without knowing what the value names are ahead of time.

Also see http://www.particlesoftware.com/en/getmultiplekeys.html

   • Improved CloseApp macro with same functionality as RecallApp.

Eg. Close the first application found with the text "test.txt" somewhere within the window title.

<PARAM NAME="Run" VALUE="IntraLaunch:CloseApp">
<PARAM NAME="RunParms" VALUE="*,*test.txt*">

Also see http://www.particlesoftware.com/en/recall.html

 --- End of Version 4.9 Enhancements ---

   • Added ability to obtain any shell variable. Eg %your_variable%.

   • Added ability to encrypt password used with RunAs parameter to help hide the password when used within the HTML source.

   • Added ability to check if the currently logged in user belongs to a local or domain group.

Also see http://www.particlesoftware.com/en/checkgroup.html

 --- End of Version 4.8 Enhancements ---

   • Added IntraLaunch:DoNothing macro. Typically for pausing the execution of Javascript until an application finishes.

Also see http://www.particlesoftware.com/en/multiple.html

   • Added functions to check if currently online via Javascript. IE4 or higher must be installed.

CheckIfOnline()
CheckIfOnlineViaModem()
CheckIfOnlineViaLAN()

Also see http://www.particlesoftware.com/en/checkonline.html

   • Added function to check and return any registry key. Eg.

<script language="JavaScript">
   function GetKey()
   {
     var sKey;
     sKey = IntraLaunch.GetRegKey("\\HKEY_LOC...\\Key");
     if (sKey == false)
     {
       alert('Key not found');
     }
     else
     {
       alert ('Key: ' + sKey);
     }
   }
</script>

 --- End of Version 4.7 Enhancements ---

   • Added ability to run a program under a different user. Requires Windows2000 and higher. Eg.

<PARAM NAME="Run" VALUE="notepad">
<PARAM NAME="RunParms" VALUE="">
<PARAM NAME="Display" VALUE="MAX">
<PARAM NAME="RunAs" VALUE="user,password,domain">

This loads the "user"'s profile and executes notepad as them. If the password is set to "Prompt" then IntraLaunch will prompt for the users password first. The domain or machine name must be specified as the third parameter, typically %computername% will work.

Also see http://www.particlesoftware.com/en/runas.html

   • Added function to check for existence of a file from Javascript. Eg.

<script language="JavaScript">
   function CheckFile()
    {
     var bExists;
     bExists = IntraLaunch.DoesFileExist("%windir%\\setup.log");
    }
</script>

bExists will be "False" if setup.log does not exist in the workstation's windows directory and "True" if it does. A double backslash is required to prevent escaping.

Also see http://www.particlesoftware.com/en/functions.html

   • Added function to get variables using Javascript. Eg.

<script language="JavaScript">
   function GetVar()
    {
     var sDesktopDir;
     sDesktopDir = IntraLaunch.GetVariable("%desktop%");
     alert ("Users Desktop: " + sDesktopDir);
    }
</script>

Will return the full path of the user's desktop directory. All variables are supported.

Also see http://www.particlesoftware.com/en/variables.html
Also see http://www.particlesoftware.com/en/functions.html

   • Added enhanced share and network drive mapping support. Can map and disconnect shares from Javascript and VBScript in a much more flexible way. Eg.

Also see http://www.particlesoftware.com/en/shares.html

 --- End of Version 4.6 Enhancements ---

   • Added the following new macros for clearing the clipboard and minimizing all running programs. Eg.

<PARAM NAME="Run" VALUE="IntraLaunch:ClearClipBoard">
<PARAM NAME="Run" VALUE="IntraLaunch:ClearClipBoardMessage">
<PARAM NAME="Run" VALUE="IntraLaunch:MinimizeAll">

Also see http://www.particlesoftware.com/en/macros.html
Also see http://www.particlesoftware.com/en/minall.html

   • Added the following new variables.

%username%
%userdomain%
%tmpfolder%
%tempfolder%
%systemdrive%
%os%
%homepath%
%homedrive%
%comspec%
%computername%

These new variables are obtained from the workstation's shell. Opening a command prompt and doing a "set" command will show them under WindowsNT and higher. These variables must be explicitly set under Windows95/98/ME in autoexec.bat.

Also see http://www.particlesoftware.com/en/variables.html

   • Added OnTop feature which can run an application and always have it displayed on top of all other windows.

<PARAM NAME="Run" VALUE="notepad">
<PARAM NAME="OnTop" VALUE="True">

This will run notepad and always have it displayed even when inactive. Windows2000 and higher required.

Also see http://www.particlesoftware.com/en/ontop.html

   • Added Translucent feature which can run an application with a translucent view so you can also see the window behind it.

<PARAM NAME="Run" VALUE="notepad">
<PARAM NAME="Translucent" VALUE="150">

This will run notepad and display it in a partially see through state. Windows2000 and higher required. A Hi or True color display may be required. Translucent value is between 1 (transparent) and 250 (non-translucent).

Also see http://www.particlesoftware.com/en/translucent.html

   • Starting with version 4.3 you could run a second application after the first one closes with the Delay parameter. Previously the first application executed could not be an association such as .txt, this has been fixed.

Also see http://www.particlesoftware.com/en/multiple.html

   • IntraLaunch has the ability to display an error.html type page or custom error box when the application to execute was not found. Now IntraLaunch does with when the path is not found and when an association does not exist for the given document - for example trying to run sales.txt but nothing is configured to view .txt files.

Also see http://www.particlesoftware.com/en/error_control.html

   • Added new display type NORM_NA for normal/non active.

<PARAM NAME="Run" VALUE="notepad">
<PARAM NAME="Display" VALUE="NORM_NA">

This will run notepad and display it in its normal view but not active.

   • Fixed several small and insignificant bugs.

 --- End of Version 4.5 Enhancements ---

   • Added several new macros that provide the ability to Lock the workstation, create a shortcut, use the "open with" dialog box to open a document, and close an already running application Eg.

<PARAM NAME="Run" VALUE="IntraLaunch:LockWorkstation">

This will lock the workstation. Windows 2000 and Windows XP only.

<PARAM NAME="Run" VALUE="IntraLaunch:CreateShortcut">
<PARAM NAME="DefDir" VALUE="C:\Windows\Desktop\">

This opens the create shortcut dialog box. The shortcut will be created in the path specified in the DefDir parameter. The trailing backslash is required.

<PARAM NAME="Run" VALUE="IntraLaunch:OpenWith">
<PARAM NAME="RunParms" VALUE="%mydocuments%\sales.txt">

This opens the sales.txt file in the users My Documents folder but will first ask which application to open sales.txt with.

<PARAM NAME="Run" VALUE="IntraLaunch:CloseApp">
<PARAM NAME="RunParms" VALUE="OpusApp">

This will close Microsoft Word if it is running. The classname of program to close must be specified in the RunParms parameter. The classname can be obtained with the included utilities ShowClass.exe and Watcher.exe.

 --- End of Version 4.4 Enhancements ---

   • Added the ability to execute a second application after and only after the first one closes. This is accomplished using the Delay parameter. Eg.

<PARAM NAME="Delay" VALUE="Wait">
<PARAM NAME="Delay_Run" VALUE="notepad">
<PARAM NAME="Delay_RunParms" VALUE="">

See http://www.particlesoftware.com/en/multiple.html for details as well as the HTML source code to the sample site.

   • The AndRestore parameter has been changed to better work with Microsoft Word 2000 and possibly other Office applications. Previously it was not possible to restore Word2K using AndRestore from a minimized state after a RecallApp was issued. This is fixed.

   • Added a macro that allows you to open the Start Menu on the task bar as if it was clicked. Eg.

<PARAM NAME="Run" VALUE="IntraLaunch:StartMenu">

   • Added macros that allows you to open and close the first CD-Rom's tray. Eg.

<PARAM NAME="Run" VALUE="IntraLaunch:CDOpen">
<PARAM NAME="Run" VALUE="IntraLaunch:CDClose">

   • Added a macro called IntraLaunch:EmptyRecycleBin that allows you to empty the recycling bin. Not supported on Win95 or WinNT4.

See http://www.particlesoftware.com/en/bin.html for details.

   • Added a new variable %nethood% to get path to Network Neighborhood folder. See http://www.particlesoftware.com/en/variables.html.

 --- End of Version 4.3 Enhancements ---

   • Added execution event logging. Every time a given IntraLaunch object executes its assigned program an entry can be written to a log file of your choice with the date, time, user, machine, program and other useful details. Eg.

<PARAM NAME="Log" VALUE="%windir%\IntraLaunch.log">

This will create a log file called IntraLaunch.log if it does not exist in the workstations Windows directory. Multiple objects can specify the same log file and events will simply be appended.

See http://www.particlesoftware.com/en/log.html for details.

 --- End of Version 4.2 Enhancements ---

   • Added automatic detection of installed applications. When applications are installed they usually add an entry to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion \App Paths in the registry. IntraLaunch can check this using the macro IntraLaunch:FindApp(app.exe) and execute the application if its found. For example:

<PARAM NAME="Run" VALUE="IntraLaunch:FindApp(winword.exe)">

This will cause IntraLaunch to look for an entry called winword.exe under the App Paths key, if found IntraLaunch will read the full path and execute it.

This is useful for executing applications if they are not in the system path and you don't know where they are installed.

You can also use a CheckInstalledApp(app.exe) function from Javascript to see if an application is installed or not. You could build a drop down list of only programs that are installed. See the sample site source code for an example.

You must know the application's executable name for FindApp work.

   • Added auto-replacement of critical system paths for params variables. These values are automatically determined by IntraLaunch and substituted.

For example, the below example will run notepad.exe specifically found in the workstations Windows directory, and have it open the file.txt found in the current users "My Documents" folder no matter where it is.

<PARAM NAME="Run" VALUE="%windir%\notepad.exe">
<PARAM NAME="RunParms" VALUE="%mydocuments%\file.txt">

Use the windows explorer to browse the current users favorites.

<PARAM NAME="Run" VALUE="explorer">
<PARAM NAME="RunParms" VALUE="%favorites%">

Open a command prompt on WinNT and automatically CD into the current users Internet Explorer history folder.

<PARAM NAME="Run" VALUE="%sysdir\cmd.exe">
<PARAM NAME="RunParms" VALUE="/k cd %history%">

See http://www.particlesoftware.com/en/variables.html for many more with details and examples. Only parameters Run, RunParms and DefDir are parsed for replacement.

   • Added several new macros below. See the macros.html page on the web site for details as well as a complete listing.

"IntraLaunch:FindApp(app.exe)" will run app.exe if found (see above)
"IntraLaunch:WindowsShutdownDialog" shows real shutdown dialog box
"IntraLaunch:FindDialog" will show the find files dialog box
"IntraLaunch:Modem" shows the installed modems, possibly add modem
"IntraLaunch:PowerConfig" show the power settings from control panel
"IntraLaunch:FormatFloppy" will show the format floppy dialog box
"IntraLaunch:DisplayBackground" will show background display settings
"IntraLaunch:DisplaySettings" will show the display settings
"IntraLaunch:DisplayAppearance" shows the display appearance settings
"IntraLaunch:Fonts" will show the installed fonts dialog box
"IntraLaunch:IEControlPanelSecurity" will show the IE control panel
"IntraLaunch:IEControlPanelContent" will show the IE control panel
"IntraLaunch:IEControlPanelConn" will show the IE control panel
"IntraLaunch:IEControlPanelPrograms" will show the IE control panel
"IntraLaunch:IEControlPanelAdvanced" will show the IE control panel

   • The new macro IntraLaunch:WindowsShutdownDialog will show the Windows shutdown dialog box. As if the user clicked Start, Shutdown.

   • Added FocusOver parameter. When tabbing through a web page with IntraLaunch objects the image can change to a pressed look when in focus. Almost like a flat image button. Hitting enter or space over the given object will execute the assigned application. Only applies to non-scripted objects.

<PARAM NAME="FocusOver" VALUE="True">

   • Slightly changed the look of several dialog boxes and error messages.

   • Macros can now be passed to ExecuteIt. For example:

<script language="JavaScript" type="text/javascript">
   IntraLaunch.ExecuteIt("IntraLaunch:WindowsShutdownDialog");
</script>

 --- End of Version 4.1 Enhancements ---

   • IntraLaunch 4.0 has been repackaged having all required files held within IntraLaunch.CAB. IntraLaunch.CAB 4.0 is the only required file now. With older versions, MSVBVM50.cab & AsycFilt.cab were also required, this is no longer the case. This makes development and debugging much easier.

   • Added better keyboard support. You can tab through a web page with IntraLaunch objects and hitting enter or space over one will execute the assigned application, just like clicking it.

   • Added ALTInfo param which acts the same as ALT for HTML image src's. For example:

<PARAM NAME="ALTInfo" VALUE="Run this Program">

When the mouse hovers over the object the ALT text will display "Run this Program" just like a normal image on a web page.

   • IntraLaunch.CAB was rebuilt using an Apartment model thread for stability and compatibility with newer versions of Windows.

 --- End of Version 4.0 Enhancements ---

   • New! All the advanced features (through scripting) previously only possible under IE are now supported under Netscape using the Esker plugin. This means both browses can now execute programs/documents from text links, animated gif's, drop down boxes, radio links, form buttons, or any other web page object. http://www.particlesoftware.com/en/netscape.html

   • Added complete list of all parameters on the web site at http://www.particlesoftware.com/en/summary.html

   • Added tech help area on web site with examples and very useful information. http://www.particlesoftware.com/en/tech.html

   • Modified costs and added site/company license cost calculator available at http://www.particlesoftware.com/en/purchase.html

   • Execute programs relative to a CD that will go in the first, second, or third CD-Rom (useful when you don't know which drive the CD will end up in).

<PARAM NAME="ImageLoc" VALUE="Local">
<PARAM NAME="ImageSrc" VALUE="*:\graphics\pic.gif">
<PARAM NAME="Run" VALUE="*:\setup.exe">
<PARAM NAME="RunParms" VALUE="">
<PARAM NAME="DefDir" VALUE="*:\">
<PARAM NAME="CDRelative" VALUE="\IntraLaunch\IntraLaunch.CAB">
<PARAM NAME="Display" VALUE="MAX">
<PARAM NAME="UsePassword" VALUE="FALSE">
<PARAM NAME="Password" VALUE="0000000000000000">
<PARAM NAME="Sound" VALUE="*:\sounds\startup.wav">
<PARAM NAME="ALTInfo" VALUE="Run Setup">

The above params say: execute all programs, play all sounds, etc. relative to the CD where the file \IntraLaunch\IntraLaunch.CAB is found - which may be in drive 1, 2, or 3. The * is replaced with the drive letter of the CD-Rom where file is found.

Eg. You make a CD that when inserted into a CD-Rom automatically runs IE and opens \menu\index.html on the CD which is an IntraLaunch enabled menu. IntraLaunch does not have to know where it is to work properly with the above setup.

This allows you to build menus 100% independent of the drive letter of the CD-Rom the CD goes into so it works all the time.

Also see the CDRom: addition below for another way to execute off of CD's.

   • Get the username of the user who is currently logged.

<SCRIPT LANGUAGE="VBScript">
   SUB GetName()
     sName = ""
     sName = IntraLaunchObject.GetNetUser()
     MsgBox sName
   END SUB
</script>

<A HREF="#" LANGUAGE="VBScript" OnClick="GetName()">Get Username</A>

When the workstation boots up, the user logs into it if networking is installed. The username the user logged in as is reported back and held in the sName variable. Kind of useless though.

   • Extended the network features of IntraLaunch through the following.

* AccessVirtualLAN
* DisconnectVirtualLAN

Can now through a web page form have the user fill information out, such as logon and password, then call IntraLaunch to connect to a share and map a drive exported on a Samba server or NT Server.

Eg.

<SCRIPT LANGUAGE="VBScript">
   SUB Access()
      IntraLaunch.AccessVirtualLAN("\\SERVER\Share,G:,Null,
      Null,False,Reserved,") (One Line)
   END SUB

   SUB IntraLaunch_LogonResult(lResult)
       If (lResult = 0) Then
          MsgBox ("Ok, Your Attached")
       Else
          MsgBox ("Sorry, Can't Connect")
       End If
    END SUB

    SUB Disconnect()
       IntraLaunch.DisconnectVirtualLAN("G:")
    END SUB
</SCRIPT>

<A HREF="#" OnClick="Access()">Logon to VirtualLAN</A>
<A HREF="#" OnClick="Disconnect()">Disconnect from VirtualLAN</A>

"Reserved," must be at the end of AccessVirtualLAN(...

   • Added several networking features to IntraLaunch. Such as attaching drives to shares on servers, disconnecting drives, etc. Works fine under Netscape & IE.

* This was primarily done to provide virtual networking capabilities over the internet for Virtual LAN's, Extranets, Virtual Nets, etc. See http://www.virtuallan.net/ for a visual example and more info.

Eg.

<PARAM NAME="Run" VALUE="IntraLaunch:MapDrive">
<PARAM NAME="MapDrive" VALUE="\\SERVER\ShareName|X:">
<PARAM NAME="LogPass" VALUE="Null|Null|Debug">
<PARAM NAME="AutoMap" VALUE="False">

The above would have a graphic on a web page map X: to the share "ShareName" on server "Server". If no username or password is to be used, they should be "Null" - not nothing. If connecting to a simple password protected share that has no login & just a password, use the plain text password for both the login and password. "Debug" simply provides dialog box prompts showing what is happening.

If AutoMap is "True", this mapping will take place as soon as a web page is viewed with this control. For example, viewing http://your.intranet.net/menu.html, will map a drive upon viewing the page, because the IntraLaunch object accomplish this when being mounted within the browser. So the opposite - if set to "False", IntraLaunch does not automatically do this mapping/attachment when initialized within the web page.

* There might be some problems with the login & passwords right now. Primarily because of the change from plain text to encrypted passwords for communication for the client and server software(not intralaunch related). It works fine for no username or password. Try that first.

<PARAM NAME="Run" VALUE="IntraLaunch:DisconnectDrive">
<PARAM NAME="MapDrive" VALUE="\\SERVER\ShareName|X:">

This would disconnect the mapping for X:.

See the FAQ or web site manual for more information. (If Available)

   • Added the ability to deploy applications directly over the intranet. This was done with an addition to the ProcessErr parameter. Works under 95/98/NT4. Works under Netscape & IE.

Eg.

<PARAM NAME="Run" VALUE="Not Found">
<PARAM NAME="ProcessErr" VALUE="Install">
<PARAM NAME="ErrAction" VALUE="http://www.particlesoftware.com /temp/Install.cfg"> (One Line)

If the user clicks a graphic with this information in the <OBJECT>, IntraLaunch will raise an internal error event because "Not Found" is obviously not a valid program to open. Usually at this point, if ProcessErr is equal to "MessageBox" or "OpenPage", IntraLaunch can display a custom error message(see about 7 points below). Now with "Install", IntraLaunch will read a configuration file from a web server, and copy files from another(or the same) web server into specified directories layed out in the config file - in this case Install.cfg.

See http://www.particlesoftware.com/temp/Install.cfg for an example.

See the FAQ or web site manual for more information. (If Available)

   • Instead of opening the program again, IntraLaunch can bring it into focus instead. For example, the user clicks Microsoft Word and it runs as normal. Typically, if the user clicked Word again, it would run again. IntraLaunch can now look to see if Word is running, if so - bring it into the foreground instead of executing a new one.

Eg.

<PARAM NAME="RecallApp" VALUE="XLMAIN">

* You need to know the ClassName of the program. For example: Word's is "OpusApp", Excels is "XLMAIN", Notepads is "Noteapad". See the program ShowClass.exe or Watcher.exe in the utils directory to show a listing of ClassNames. Also see the "AndRestore" parameter.

   • Added the ability to launch programs via HTTP. This is still limited though. The application(EXE, DOC, COM, etc) must be downloaded first, stored in your windows temp directory, then executed.

Warning: The user is not prompted at all for any verification or authorization for the download & execution. It just happens.

Also, any file opened(such as a .DOC), can never be saved back to the server directly. To do this, you would need SMB or File & Printer Sharing - which IntraLaunch supports also.

This is great for patch distribution across several workstations.

Eg.

<PARAM NAME="Run" VALUE="http://sales.server.net/securitypatch.exe">

Working Eg.

<PARAM NAME="Run" VALUE="http://www.particlesoftware.com/temp/program.exe">

This program ("program.exe") is online for you to test IntraLaunch with. Its 9.2K so its a nice small test. Shows a simple dialog box.

If you use this, make sure <PARAM NAME="IsURL"... is equal to "False", or IntraLaunch will pass the URL in "Run" to the browser, instead of processing it as an executable.

   • Added the ability to launch programs off of a CD-Rom but from a relative point of view. CDRom: means the first CD-Rom on the system, regardless of drive letter. CDRom2: means the second CD-Rom.

Eg.

<PARAM NAME="Run" VALUE="CDRom:apps\setup.exe">>

* Notice the lack of a "\" after the CDRom:

   • Added the ability to directly shutdown, restart, log off, power off or force a shutdown of the workstation under both 95 & NT. All options can be confirmed with a 'Yes/No' dialog box (or not).

Eg.

<PARAM NAME="Run" VALUE="IntraLaunch:ShutDownConfirm">

See http://www.particlesoftware.com/en/runable.html for a complete list of these macros.

   • Added the ability to pass program to be run from VBScript instead of forcing it to be present in <OBJECT>'s Run parameter. For Example:

<A HREF="Notepad" LANGUAGE="VBScript"
OnClick="IntraLaunch.ExecuteIt('notepad.exe')">Notepad</A>

OR (Better)

<A HREF="JavaScript:IntraLaunch.ExecuteIt('notepad.exe')"
LANGUAGE="VBScript">Notepad</A>

This allows for one IntraLaunch object to run any number of different programs. ('notepad|filename.txt') - the | can be a separator for paramaters & switches.

   • Added ability to open a "Run" dialog box instead of executing a program. This gives the ability to choose what needs to be executed from a dialog box similar to the Run dialog box on the Start Menu.

   • Added ability to pass double quotes (") within the RunParms for switches that require it via the filter character ` (the key under the escape).

Eg.

<PARAM NAME="RunParms" VALUE="/s: `C:\Program Files\whatever`">

The above will results in /s: "C:\Program Files\whatever" as the switch to execute.

   • Added error processing capabilities. If the program being launched is not found, IntraLaunch can either display a custom message box, or forward the browser to a specified URL such as error.html.

Eg.

<PARAM NAME="ProcessErr" VALUE="MessageBox">
<PARAM NAME="ErrAction" VALUE="Error|Sorry, the program is not found.">

<PARAM NAME="ProcessErr" VALUE="OpenPage">
<PARAM NAME="ErrAction" VALUE="http://intranet.company.com/notfound.html">

   • Added ability to execute several wizards and system properties dialog boxes straight from a web page such as the Add New Printer Wizard, or Network Properties dialog box.

   • By specifying a program or documents UNC Path, IntraLaunch can execute it over the network. Eg:

<PARM NAME="Run" VALUE="\\SERVER\programs\faxcover.doc">

   • Fully compatible with the final version of IE 4.0.

   • Added support for animated GIF's, transparent GIF's, text links, drop down lists, radio buttons, checkboxes, and simple or custom buttons can now execute programs or documents.

   • Fixed problem with IntraLaunch resetting properties when used within an HTML editor or other WYSIWYG container.

   • IntraLaunch.CAB is signed with Authenticode 2.0 recently released from Microsoft. This provides a more secure way of approaching software distribution and code signing. This means nothing to the operation of IntraLaunch, it only concerns the certificate you see when you first view the sample site. If you do not see a certificate and instead get a warning, please installed Authenticode 2. Or simply drop your browser security down to medium or low.

See http://www.microsoft.com/ie/security/authent2.htm for more info.

   • The addition of the parameter "IsURL" was added. When this is set to "TRUE", will forward the browser to the URL specified in the "Run" parameter. This is useful for password protecting individual HTML graphic links.

   • The "Browser" parameter in version 1.0 & 1.1 has been renamed to "ImageLoc" for Image Location to clear things up.

   • Icon files are now supported. So you do not have to create a separate image if you already have icons available. (EG. 'APP.ICO'). Although Icon access within DLLs are not supported.

   • A new sample site has been added. Which uses borderless frames to demonstrate how a menu could function.

   • Minor control enhancements were made.
 
 





Copyright © 1997-2008 Particle Software - All Rights Reserved
Web services provided by Extreme Hosting