How do you open a link in a popup window in edge animate - adobe-edge

I have a link to a URL for an external webpage in my adobe edge composition. How do I get that link to open the external HTML page in a popup window?

Hi I think this is what you are looking for:
Add this to a Click action on the button you want to press that will drive you to the new page.
window.open("http://yourURL.com", "_blank");
I hope that helps.
Adam

Related

Clicking link with target _blank makes browser close new tab immediatly

Clicking on a link to our webpage using
Link
opens a new tab and closes it immediatly. This happens on all browsers apparently. Deactivating adblock and alike does not change anything.
Using the url without target="_blank" or right click -> open in new Tab however works fine.
The web page is an angular project and does not use any sort of trackers. Furthermore this behavior started only recently, so I assume it's due to some change in the page.
Any hint why this happens or where to start debugging this?
Found it.
I had a line window.close(); due to a workaround for a popup for facebook login, implementing this:
Facebook Login not working in PWA app if app is in stand alone state

IOS 8 Corporate app download HTML page does not close

I´ve made an HTML page for downloading a corporate iPhone application (via plist distribution).
<div>
<img style="margin-left:auto;margin-right:auto;display:block;margin-top:22%;margin-bottom:0%" src="download.png"/>
</div>
Now on IOS7 when clicking the link the focus of page vanishes and the home screen is shown where you can follow the downloading progress.
On IOS8 when clicking the link the html page does not lose focus. The home screen is not shown and the user cannot follow the download progress.
Any ideas?
Thanks.
It's annoying, but, starting in iOS 8, opening an itms-services link will not send Safari to the background.
You'll have to add some text to your webpage that says something like "When you do tap the Download Button, please tap your Home button to view the progress of the App Installation." You might even want to get some Javascript going to react to the tap on the download button to bring some attention to that message.
This is a good thread that covers both the cases of itms-services links from within apps and from within Safari:
ios 8 openUrl itms-services does not exit current app

WebSite Loading Issue In Chrome

i have created a website.
its admin panel is same like Admin Panel Link
The problem is when i click on each link in
Firefox : it loads all contents smoothly.but in
Chrome : Some camera flash type effect occur on click of Link
So, whats solution of to remove that camera flash type effect in Chrome.
(i don't want to use Loader for Content Load)

AS3 & Facebook Connect : popup not showing

I've got a strange bug when trying to use facebook connect with actionscript3.
I checked everything, couldn't find a way to resolve this.
Look at this :http://tinyurl.com/FBas3test-2
When clicking on "login", the facebook popup appears.
But within this swf (click on the "facebook" logo),
http://tinyurl.com/FBas3test-1
It does not work.
This is almost the same actionscript code; and it IS the same HTML.
You can check some debug informations with the firebug console.
Seems the javascript & HTML code is OK.
When clicking the Facebook logo, the HTML is updated. Guess facebook IS contacted; but then no popup is shown.
Any idea ?
Thanks a lot
The popup is not showing for me at first because the popup blocker is blocking it. In Chrome, I had to click the icon in the upper right to allow popups and then it worked. I don't know exactly how ActionScript facebook sdk works, but if it is using Facebooks javascript sdk, try changing display mode from popup to dialog so that it shows in the same window. Otherwise, you will need to figure out how to get actionscript to show a popup window without the browser popup blocker blocking it.

Chrome Extension Background Page Show Popup Page

I am making a Google Chrome extension and I would like to have my background page to cause the browser action's popup page to show after an event. Can this be done?
Thanks
You cannot show/hide a browser action nor you can trigger a popup to open. If you need something to show, did you consider using HTML5 notifications?