mcimagemanager jump to last textarea - tinymce

I setup 2 text input which make use of javascript:mcImageManager.open and 2 textarea which load the tinymce richtext editor. when I click on the first text input on the top and load the imagemanager , without doing anything just click on the close button, the cursor will jump to the last textarea.
attach with a sample http://imknight.webfactional.com/ , click on the first text input image icon , then close it, cursor jump to the last textarea.

The answer to your question is "No, i do not have this problem".
You did not ask for a solution to your problem.

Related

TinyMCE - On the drop of text, need to add space after the text

Dropping text with a link to the editor. When the user focuses on the editor, the focus is set to the last text link. Now the user starts typing the continuation starts from the last text link, the link is getting expanded.
same in tinymce app https://www.tiny.cloud/docs/demo/full-featured/
If I’m able to add space after a dropped text or on focus then I can resolve this issue. How do achieve this?

Excel 2010 cannot paste into a form textbox

I have a textbox within a frame on my form. A user wants to copy and paste data into this textbox, but they are unable to do so. They can copy but when they try a right click or CTRL + V nothing happens.
I've looked at the textbox properties and don't see anything that is preventing this. The data they are copying is Arial 10. The textbox is formatted as Arial Regular 10.
Is there something on the form or frame that is preventing the paste feature from not working?
Thanks for the help....
To be able to paste into a textbox in a frame, you have to first be in Edit mode:
Right click on the textbox
Hover over Textbox Object
In the submenu, select Edit
Now you can change the text inside the box, including pasting text from other sources.
UPDATE:
When the textbox has focus, you can copy a cell's value into it, but not the reference to the cell itself. Click on the cell whose value you want to copy, then copy the text from the formula bar at the top of the screen and paste that into your textbox.

How to understand when the system use autocomplete in textView in Swift

I have TextView and enabled text suggestions. How can I understand when user is writing part of the word and when press Space/Return the system autocomplete the word?
My problem is that I want to change the Font and go to new line when the user press Font changing button on the screen. Now when the button is clicked, the system add the line, the new font, but after that add his autocompletion and override my added line and change my Selected Range.
At the end the cursor is on previous line between the letters of the added autocompleted word and when start typing it is with my new added Font.
P.S.
textView.autocorrectionType = .no
is not working, because the system knows it wants to change the word. The only found solution is
resignFirstResponder()
beginFirstResponder()
in my method. This will make the autocomplete first and after that continue with my method. And yeah, because I make both of them there is no moving keyboard(hide, show), but I want to find better solution

Change the default line spacing in Word 2007

The secretary here must create word documents with Word 2007 and the default line spacing and after paragraph spacing makes it hard to format documents. If I make it single spacing and 0pt after paragraphs this works for her. She can easily double space where needed. The problem is I must do this every time. I've seen a few ways that claim to make this permanent but I must be missing a step because its never persistent. Every time I close Word and reopen it the changes are gone. What am I missing?
I can:
Right click the Normal style -> Modify -> Format -> Paragraph
- Change After to 0pt
- Change Spacing to single
Click OK -> Click "New documents based on template" -> Click OK
The spacing works perfect until I close Word and re-open it. The changes are lost.
I also can:
Open the styles dialog -> Manage Styles -> Modify -> Format -> Paragraph
- Change After to 0pt
- Change Spacing to single
Click OK -> Click "New documents based on template" -> Click OK -> Click "New documents based on template" -> Click OK
The spacing works perfect until I close Word and re-open it. The changes are lost.
I've done this at her desk and at mine. I've tried it saving the document and not saving the document. I've also clicked and not clicked the radio "New documents based on template". I've tried 3 different examples i've found searching. At this point it is less time consuming to walk to her desk and perform a few clicks. There must be some way to make this the default behavior. Anyone know what I need to do?
To change the default line spacing in Microsoft Word, complete the following steps:
Open a new blank document in Word.
Click on the "Page Layout" tab > Locate the "Paragraph" group.
Click the small arrow in the lower right of the "Paragraph" group. A "Paragraph" dialog box will open.
Click the "Indents and Spacing" tab > Locate the "Spacing" section.
Set the line spacing in the "Line spacing:" drop-down list to "Single" for single spacing.
Set the spacing "Before:" and "After:" paragraphs as desired. (If you want no extra spacing between paragraphs, set the spacing at 0 points.)
This last part is the critical one for you:
Click the [Set As Default] button > Select "All documents based on the Normal Template?" > Click [OK].
Graham Mayor - MS MVP (Word) provided the solution.
The way to solve this is to open the template (normal.dotm), make the change then save it.
The hours I've wasted and the number of times I've tried to set the default page style to be "No Spacing", I can't imagine. The most annoying answer is being told to change the normal.dotm template with no clear instructions on how to do it.
Well, I found a simple way to do it. This works in Word 2016 and I would imagine it works in older versions as well.
Open Word
Press Alt-F11 to open the VBA editor
Press Ctrl-G to activate the Immediate Window
Type: NormalTemplate.OpenAsDocument
Press Enter (This will open the Normal Template and you will see it in the task bar in Windows. The doc title will be normal.dot or normal.dotm)
Go to that document template and make whatever style changes you want, ie. No Spacing
Press the spacebar when you're done to force a change to the document, and then press backspace to get rid of it
Click Save and say yes to overwrite the template
Close Word (This will also close the VBA editor)
Done. Word now has sensible line spacing that most people want rather than stupid gaps between lines that hardly anybody wants.
Credit for this solution: http://wordfaqs.ssbarnhill.com/CustomizeNormalTemplate.htm#Word2013DocumentDefaults

How to prevent the cursor in tinymce editor?

I am using TinyMCE editor,
http://beyondthelogix.com/demos/editordemo/demo.html
When I click on the equation symbol in the toolbar,an editable span is automatically created with a class 'AMedit' in the editor.
Now my question is: if the cursor is just after the ending single quote of this span,that <span class="AMedit">'some text'</span>,
The backspace key should not work. More simple, once the cursor is outside this span, the backspace key should not move it back to the span.
This will not be a single span,this span is created everytime we click the equation symbol in the toolbar.
You can check it live. I have noted the link above.
So if you guys have some idea about this, Please help me in this.
Thanks to All!