Closed (fixed)
Project:
sIFR
Version:
5.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
25 Jan 2007 at 00:55 UTC
Updated:
18 Sep 2007 at 03:33 UTC
Jump to comment: Most recent file
Links inside flash automatically open in a new window or popup,
need to force them to open in the _self window as if it were a normal html link,
| Comment | File | Size | Author |
|---|---|---|---|
| #8 | README.txt_8.patch | 1.28 KB | sun |
Comments
Comment #1
sunI'm not able to reproduce this behaviour with the latest sifr module on a clean Drupal 5.0 installation (only sifr.module activated).
Comment #2
sunWithout further information I'm obliged to mark this fixed.
Comment #3
(not verified) commentedComment #4
rauenzahner commentedReopening this because it's a real bug.
I implemented sIFR to take over the links in my primary links - the first time you load the page it will open a new window - all subsequent navigation clicks in either window will direct the link to load in the opened window.
Comment #5
sunPlease look into your HTML page output and ensure that the mentioned sIFR headings have a
targetset and it is wrong. If that is true, this is an sifr.module issue. If not, this is an sIFR issue and can't be solved here.Comment #6
sunComment #7
james_ag commentedIt is an sIFR issue, unfortunately. If no target is specified sIFR opens it in a target named "undefined".
The way to fix this is to open up dont_customize_me.as in Flash and change the following in the launchURL function:
change:
getURL(launchURL_anchor,launchURL_target);
to:
if ( launchURL_target != undefined )
getURL(launchURL_anchor,launchURL_target);
else
getURL(launchURL_anchor);
This will fix the problem.
Comment #8
sunSince we are not able to alter sIFR's action script, we can only add some troubleshooting info to README.TXT. Attached patch adds this info.
I need at least one more reviewer confirming that this solves the bug before I'll commit it.
Comment #9
sunCommitted to all branches and Dynamic Rendering module.
Comment #10
(not verified) commented