Skip to main content
March 21, 2016
Answered

Open AdobeConnect in browser in firefox

  • March 21, 2016
  • 1 reply
  • 2268 views

Hi there,

I'm trying to open Adobe Connect in browser in Firefox (on Mac but generally on any OS).

It's working in both Safari and Chrome.

I've been able to pinpoint the issue when running the following code.

<h1>Test adobe connect iframe</h1>

<iframe src="https://my.adobeconnect.com/yukochap?guestName=Antoine&email=test@atest.comemail=test@atest.com" style="width: 1000px; height: 500px;">

</iframe>

I've attached the code in a small document so you can try it yourself - test_adobe_connect.html . You'll see my results as screenshots.

1) Firefox: doesn't work in browser, works in add-on

2) Chrome: adobe connect plugin detected - opening in browser and automatically logged in

3) Safari: adobe connect plugin detected - opening in browser and automatically logged in

I would need the correct url/attributes to open in the iframe to open adobe connect properly.

Looking at the documentation, I couldn't find any hints.

Thanks,

Antoine

This topic has been closed for replies.
Correct answer Jorma_at_Knox

Try adding &launcher=false after your login credentials.

For example: https://my.adobeconnect.com/yukochap?guestName=Antoine&launcher=false

That will tell Connect to not use the Add-in. If the Add-in is accessed then it will open in its own window as you are seeing in FireFox.

1 reply

Jorma_at_Knox
Jorma_at_KnoxCorrect answer
Legend
March 22, 2016

Try adding &launcher=false after your login credentials.

For example: https://my.adobeconnect.com/yukochap?guestName=Antoine&launcher=false

That will tell Connect to not use the Add-in. If the Add-in is accessed then it will open in its own window as you are seeing in FireFox.

March 23, 2016

Thank you!