I was having the exact issue - trying to track views of an event listing - the view was being tracked twice for each view. Setting hs.objectLoadTime = 'after' solved it. Thank you!
I'm using Highslide on my city's Tourism site to display videos and content on http://www.welcometostratford.com We've used it extensively on some of their satellite seasonal websites to display a variety of content. The site has a PHP - MySQL backend to pull content from the CMS and I added dhtml s...
The Highslide 'swf' type popup lets you send in parameters for each individual item, so you don't need a standalone swf file. See hs.swfOptions, example #2.
I am not sure what may cause this - actually I can't see any clear difference in FF3 on Windows. The video seems to be a little jerky if I open it in a new tab as well. You could try opening the videos the way it is done at http://www.highslide.com/examples/flash.html , though I don't think it woul...
I seem to be having a problem with FLV playback in a highslide iframe pop-up. I'm using a generic player which seems to work fairly smoothly in a standalone browser window, however when played in a highslide window the playback seems slow and jerky. I've eliminated the docking menu being the problem...
Thanks for the tip - I decided I was actually getting too fancy with the onclick and didn't need to call it from the "parent" link since it's actually in the same page. I have set it up as a standard link - onclick="return hs.htmlExpand(this, { objectType: 'iframe',width:400,height:380 } )" and it's...
I have a page with html content (maincontent block) in a div tag which is expanded by clicking a link on the page. Within the expanded content is a link which opens another pop-up window with another web page. This link works by replacing the href of a dummy link in the enclosing page with the href ...
Another option would be to build a Behavior for Dreamweaver which would insert the expand onClick behavior into a link, either for images or iframes etc. All that's required is a javascript file and an HTML file for the user interface, but I'd have no clue how to go about doing it myself... There ar...
Looks correct to me! Yes, great - but here's a poser: If I use this kind of link in an ajax popup (content is hidden in a div tag) the popup in this link fires as soon as the parent page is loaded, before the content with the link in it is even made visible in the popup or the link is even clicked ...
Hah, I figured it out. :P This is how I had to write the link: <a onclick="parent.document.getElementById('pop').href='heritage-elegance.php';return parent.hs.htmlExpand( parent.document.getElementById('pop'), { objectType: 'iframe',width:320 } )" href="javascript:void(null)">bed and breakfasts</a> ...
If I wanted to try to reference an anchor element in the parent page what's the correct snytax? return parent.hs.htmlExpand('pop', { objectType: 'iframe' } ) or return parent.hs.htmlExpand('#pop', { objectType: 'iframe' } ) or just return parent.hs.htmlExpand(pop, { objectType: 'iframe' } ) So far e...
Having similar issue at http://dev.welcometostratford.com/ (click any of the video links in the flash menu at the bottom - Shopping for example - to load a pop-up video window.) Problem was the sound kept playing for a couple of seconds after the pop-up window is closed. I used preserveContent=false...
Yes that looks much simpler and I will try that - what I ended up doing is making a brand new link. Later - it works a treat, thanks. However - I've got another related problem using "return parent.hs.htmlExpand(this, { objectType: 'iframe' } )"- I'm trying to load another pop-up from within an ifra...
This is a complicated one, and sorry I don't have an online example of this as I'm still in production: I have html content in a div tag on the parent page. Once opened, there is a link in the content which needs to open a content popup from an external page (iframe type). I have written some javasc...
I don't have Safari to test on but try taking out the Doctype declaration out of the page the pop-up content is in. I had the same problem with Internet Explorer but this cleared it up in most cases. Try also setting body style to overflow:hidden. Good luck with it!!