Customize word ribbon bar in office 365 - ms-word

I have been working to add icon group to word ribbon bar but I can not customize it as I want. For an example when I add 3 buttons, it will appear as horizontal direction. But when I add 4 buttons one icon will appear as usual but other three as small icons for vertical direction. Is there a way to solve this problem?

As far as I can tell the Manifest specifications do not allow you to set a fixed icon format or option to stop the group from collapsing the icons as you see when you use more than three buttons in your group.
The manifest specifications require you to that each icon must have three Images elements, one for each of the three mandatory sizes:
16x16
32x32
80x80
https://github.com/OfficeDev/office-js-docs/blob/master/reference/manifest/resources.md#images
So without the option in the manifest to block the group from collapsing it is managed by Office and it seems you don't have any say in this (for now). Let the Program Group know you need a fixed size option, they appreciate your feedback.
Adding button specifications:
https://github.com/OfficeDev/office-js-docs/blob/master/reference/manifest/control.md

Related

How to fix the shape of the dashbord, esp. its parts?

I have built my first dashboard in tableau. When I am logged in and look at this, it looks fine, it consists of 2 horizontal blocks (on the left a double one, on the right it consists of three vizes). When I am logged out and look at the dashboard the right part shows only 1st viz correct, the other two are diminished and you can bearly see them. What might be the reason?
There could be a few things going on. Without a picture, it may be one or more of these:
Use Layout
Containers.
The layout containers will ensure that each part of the dashboard is
exactly where you want it relative to a parent container.
Use tiled
layouts. Floating layouts may cause dashboard parts to be in different places depending on the screen size.
Check to see if you are using Fixed, Automatic or Range sized dashboards. These can also make a difference in appearance based on screen size.
If you are using custom fonts, install them on server to ensure this isn't a part of the problem.
Please do share a picture (or preferably, the workbook) so further investigation can happen.
In the Dashboard tab -> Layout pane, check the Item hierarchy.
When a viz/sheet is dragged and dropped on to the dashboard, tableau, by default arranges them in tiled container.
If you have adjusted the width manually, disable the option fixed width which is pin symbol when sheet is selected.
Make sure that no tiled containers are present and all the sheets are dropped into respective Horizontal containers.
Adjust the width of the viz in the sheet to fit in the view.
These are some common resolutions. Share screenshot for much accurate solution.

Customization of Form Background Size

Basically, I just want to increase a form background size. I've 5 choices in one question and 1 of them is cut by the format of Google Forms. How can I remove the bottom scroll bar and make it a static form ?
At this time the new Google Forms themes feature only allows to select predefined themes and to change the theme image. The old Google Forms themes feature have more customization options but it doesn't include one for changing the grid question box size.
If you are using the old Google Forms try changing the font settings for the question options.
Another alternative is to split the column headers words (replace moderadamente by modera- mente or by a shorter synonym)
A third alternative is to use a code like 1,2,3,4,5 instead of category names.

WatchOS 2 page-based dots over text/table

Is there anyway this doesn't happen?
I have a label that adjusts to its content but if I put it inside a group I'm not allowed to scroll, or even if I put a table inside a group (the group not reaching the page dots) I can't scroll.
You could define a spacing between the picture and the text so that the dots have black background. Look at the activity app how they do so the dots won't be in the way. However the dots seems to always be there if you have a page based app.
WatchOS is still limited on its UI customisation. Your approach is correct but we just can provide so complex layouts yet (Table inside group with bottom margin). I'm sure WatchOS 3 will bring new additions.

Regions in Croogo

I'm having some problems in displaying elements in different regions.
After installing and using Croogo for a while, I made several trials
adding custom elements and custom menus. If I choose region
'right' (being the default region for elements used by Croogo once
installed) everything is fine and I'm able to add anything I want
without any problem.
Anyhow when I choose any other region to display my element (header,
footer, left) nothing is displayed (looking at the source of the page
I noticed the element is not even rendered).
Am I missing something? How can I actually use different regions to
display elements/blocks?
I'm also a bit confused about the 9 regions (named regionX with
X=[1,..,9]) available along with header, footer, left, right. What's
their purpose? Do they actually represent a region on the screen or
they have been left not configured?
Any help will be greatly appreciated.
You probably need to adjust your theme.json so that the desired regions is loaded.

Widget widths: 50% + 50% > 100%?

I am using Google Apps Script and the Apps Script UI Builder, which is based on GWT widgets.
If I create a Flow Panel, and add two Labels of 50% width, then these labels appear on separate lines. But isn't 50% + 50% = 100%.
How do I make them appear on the same line?
To try it out yourself:
Open a Google Spreadsheet.
In the Spreadsheet menu, click: Tools / Script Editor...
In the Script Editor menu, click: File / Build a user interface...
Add the widgets to the canvas.
Of course this question doesn't just apply to the problem with the labels. In general I am totally puzzled concerning how to build flowing layouts with the UI Builder. There seem to be (hidden?) paddings and margins that make things very hard.
It's all based on CSS and its box model, and that issue has accumulates cruft over the last 15 years or so. In essence, the widths you specify don't take into account margings (and/or possibly padding, it's been a while), so you will need to add a stylesheed that minimizes them. See something like this CSS reset.
Labels translate to <div>s, which appear on different lines by default. You could try adding float: left to the labels, or change the display mode, etc.
You could also try InlineLabels, which I think compile to <span>s.
If you've already tried all this, then your Labels are apparently just too wide. It's annoying that two 50% objects wouldn't fit on the same line, but what isn't annoying about working with HTML and CSS?
The solution is simple. For both labels, set to zero:
Borders and Margins / Margin
Don't know why I didn't see that yesterday - I was doing a night shift... ;-)