PDA

View Full Version : Type mismatch error in Javascript



huskydawgs
03 Feb 2011, 12:41 PM
I'm getting the following error in IE on my Adobe Presenter file:

Message: Type mismatch: 'SlideContent_DoFSCommand'

What could be causing the error? The presentation plays fine, just getting the error.

huskydawgs
03 Feb 2011, 12:42 PM
Here's the code:

<!--
Sub SlideContent_FSCommand(ByVal command, ByVal args)
select case command
case "putHREF" location.href = args
case "putTitle" document.title = args
case else call SlideContent_DoFSCommand(command, args)
end select
end sub
-->