Editing shape/illustration/textbox/whatever-it-is in Word - ms-word

Can somebody please explain me why I can't edit the text in this file LINK.
(file name is ask.docx)? And I would also like to know how I need to change it, please.
I am using Word 2016, and clicking on this shape/illustration/textbox or whatever-it-is has been driving me crazy.
Thank you!

The document in your link has no text - just some graphical objects, some of which have been created from text. To edit the 'text' you'd need to extract the objects and open them in an appropriate graphics application.

Related

How to fix absolute path to custom TinyMCE skin

I followed this tutorial posted on tiny.cloud and did everything according to the post. I got to the part where you define the content_css and the skin_url.
The skin I created is called Snoopal.
I did:
skin: "Snoopal",
content_css: "/elements/skins/content",
skin_url: '/elements/skins/ui'
But the editor doesn't show up on the website. What am I doing wrong?
I've also had a hard time working with these editors, if anyone has a good tutorial on making a custom rich text editor, please post it, thx in advance.

Gtk.Entry autocomplete?

I am trying to do something like this picture, with a GTK Entry:
Basically, what I want is that, if the user types "keyb" (white text), the Entry will suggest "oard" (gray text) because the word "keyboard" is in a list of words, that I will provide.
I have tried the SetCompletion() function, but that opens a drop down with suggestions, and I guess I'll go with that if there is no other way. I have tried searching for it, but it is hard when you don't know the GTK word for this "technique". Can anyone point me in the right direction here?
Try this
EntryCompletion.set_inline_completion(True)
When creating an Gtk Entry Completion

Removing titles from Orchard's Custom Form

I have made a new from, but i want to remove the titles which are displayed before the input fields. I can't really understand how to edit placement.info file, so any help would be appreciated.
Thanks
You probably need to have a look at this: Alternates
Enable the Orchard Designer Tools Module, drill down to your Form and edit or change what you need.

How to programmatically change help contents in Eclipse?

I have an eclipse plugin and I would like to programmatically disable help content TOC's based on a variable I define. In a nut shell, I want to prevent some help docs from showing up in the help contents if a specific type of user is accessing the plugin.
Preferably I would like to do this in the ApplicationWorkbenchAdvisor somewhere.
One thought would be to modify the "primary" value to be false if the variable were set.
Not sure if it would work, but try using the org.eclipse.ui.activities extension point. The tutorial from Vogella tells it is possible to hide only UI elements like wizards, views and so on, but it is from 2009.. Not sure if hiding TOC is now possible. If you try it out, would be nice to give a feedback ;)

SugarCRM 6.2 - Adding a custom field in user profile

Yeah. As the title says, I am tasked with creating custom field in user profile, and sort of hit a wall on this one. It is a very small customisation, add a yearly_target field to user edit and detail view.
I was happy to stumble on this article to add a custom field in sugar.
Although it's a huge help, it seems to be missing one or 2 minor points.
To have the fields show in edit and detail views, one apparently needs to create and edits EditView.php and EditView.tpl and DetailView.php and DetailView.tpl, except I am not too sure where these files go. The yearly target field shows up in user list view, but not in edit/detail views. I tried custom/modules/Users , custom/modules/Users/ext , but changes made in the templates (static html changes) have no effect.
Anyone know where these files should go?
Thanks SO'ers!
They should go in the custom/modules/Users/ directory. Do make sure you change the references inside the EditView.php and DetailView.php files to reference the templates you have in the custom/modules/Users/ directory instead of the default ones in the modules/Users/ directory.