Hi docroach!
I’m unable to get the URL of the iframe target to update with clicks that happen inside the iframe, but here a few links that may help you get close to the functionality you are looking for:
Hi!
Iframes can be handy in certain situations, but they are limiting since Axure doesn’t let you communicate with objects inside of the iframe from the outside or vice versa. However, you can do this using Axure’s javascript API.
Attached is a file that has several examples of communicating in each direction.
Live sample
File:
Here’s an idea. In your Axure page that contains the iframe, add a Dynamic Panel and give it a name. Let’s call it ‘trigger.’ In your page you’re loading in the iframe, on whatever event you’re using, call this:
window.parent.$axure('@trigger').moveBy(0,0,{})
Then on the OnMove event of the panel ‘trigger’ add whatever actions you want.