Dialog with TinyMCE link-popup loses focus after tab on Mac - tinymce-4

I have a dialog with a TinyMCE editor opened from a taskpane add-in that has some weird behavior on Mac.
The trouble starts when the editor in the dialog opens a standard link popup and start tabbing afterwards. When tabbing back to the word window the behavior varies from device to device and so far I have experiences 3 different cases:
Word window not maximized: Works
Word window maximized: TinyMCE popup freezes
Word window not maximized: TinyMCE popup freezes
Word window maximized: Word dialog freezes
Word window not maximized: TinyMCE popup freezes
Word window maximized: TinyMCE popup freezes
In all cases resizing the dialog unfreezes everything, so it seems that somehow the Word window loses more or less focus after tabbing.
A minimum working example is
Opening the following code in a dialog window
Open the link popup in TinyMCE
Tab to another window and back to the Word window with Word maximized
Code:
<!DOCTYPE html>
<html>
<head>
<title>Link</title>
<meta charset="utf-8" />
<script src="//cdn.tinymce.com/4/tinymce.min.js"></script>
<script type="text/javascript">
tinymce.init({
selector: 'textarea',
plugins: 'link',
toolbar: 'link'
});
</script>
</head>
<body>
<textarea></textarea>
</body>
</html>

We acknowledge the issue, it is a product bug and will be fixed with 15.28 release in November.

Related

How can I reduce the whitespace below amp-web-push?

I'm noticing that the <amp-web-push> component includes space for both a subscribe and an unsubscribe button, but only renders one or the other depending on your setting. This leads to a gap of white space above or below the rendered button.
I also see that on iOS, where web push is not supported, both buttons show up as blank white space.
Is there any valid way in AMP to shrink the invisible web push button so it does not take up precious browser real estate?
Here's a link to reproduce the issue (you can also reference the screenshots below): https://globalnews.ca/news/7453249/us-election-biden-transition-legal/amp/
Subscribe button doesn't render:
Unsubscribe button doesn't render:
Both buttons don't render on iOS:

HTA - Not able to set Icon

I am unable to set icon in HTA application.
<HTA:APPLICATION
SysMenu="no"
icon="Files\MS.ico"
VERSION="1.0"/>
for above HTA code, Sysmenu completely hide (I mean Icon, Close, Minimize and Maximize)
my requirement is:
I want to hide Close, Minimize and Maximize only
at the same time HTA icon should be visible.

Hide/disable buttons on flash player version 7 tool bar

how to hide little 'x' button on flash player through HTML object/embed tag ??
I tried param name="showexit" value="0", but it did not do anything.
P.S when you hover on the 'x' button, it displays tooltip as 'exit'.

my lightbox plugin is flashing in full screen?

something is going on. everytime I click on it and view it to full screen it flashes 5 seconds later then starts flashing every 2 seconds?
http://icpy.webs.com/prettyPhoto/index.html#prettyPhoto
Your lightbox is in slideshow mode with autostart true, change to false will solve the problem.
$(".gallery:first a[rel^='prettyPhoto']").prettyPhoto({animation_speed:'normal',theme:'light_square',slideshow:3000, autoplay_slideshow: false});
UPDATE
If you do not want to use slideshow can simply change the line in question to:
$(".gallery:first a[rel^='prettyPhoto']").prettyPhoto({animation_speed:'normal',theme:'light_square'});
That's because it is scrolling though the slides. the flashing is the animation

Opening Popup Window is not working in firefox and google chrome

I want to open a popupwindow (with close button only) when the user clicks a button and the parent window should be disabled until the popup window closed. For that I'm using the following code
function popup_window(url) {
popupwin = window.showModalDialog(url,null,'height=20,width=150,status=no,resizable=no,scrollbars=no,toolbar=no,location=no,menubar=no');
}
Anyhow, this code is working perfectly in IE. But, I hav two problems.
In firefox, it is not opening with the size I've mentioned in the script. It is opening in full size. And In Google Chrome, parent window is not getting disabled.
Thanks in Advance
The syntax of the args is different. For example:
window.showModalDialog(url, null,
"dialogwidth: 150; dialogheight: 20; resizable: no")

Resources