PowerPoint Bullets Macro - macros

I would like to create a Macro that when I select a text box in Powerpoint, automatic spacing after the bullet will be size 9 arial. Also the bullets will always be square and red.
Can anybody guide me on how to write macro code for this?

What you describe can be achieved without code. Edit the styles on the slide master and apply the desired formatting. Then use that style in the slide.

Related

Miscoloured lines in rule-based layer styling in QGIS

I'm styling a vector layer of roads and have noticed that a small subset of lines appear to be going 'rogue' and ignoring their line colour styling. They still obey the line stroke and width style however but insist on being yellow instead of the desired colour.
I've added a separate rule for one of them and it definitely 'catches' the correct line segment and restyles it in every way EXCEPT for the colour which stubbornly remains yellow.
Can anyone provide me with any clues as to what is going on here?
That line (or lines) are "selected" - You have one of the selection tools active and have clicked on the line. See the manual for more details, you need to click on the clear selection tool
to remove it.

VS Code set right margin to text

Good Morning. I have followed several posts on the net, but I can not solve. I would like to put a right margin on the text in the editor. I have set the variable editor.rulers, as described below. I get the 80 character marker, but the text goes over it. How can I do this? Thank you.
// Columns at which to show vertical rulers
"editor.rulers": [80],

Can I change/fix the way Matlab creates text boxes in an eps

If I export my matlab figure as an eps using:
print('myfig','-depsc')
I then open it in another software, in my case Illustrator CS6.
The text appears ok, but what should be a single text box, say a legend entry, is actually multiple text boxes arranged so that it looks like one.
In the image below, the black text is what it looks like first, but I have also shown a copy of the same text, with each text box a different color.
If I want to edit any of this its very difficult as the space will then be messed up. Also if I change the font, the kerning gets messed up.
I have also tried using the text command to place text on the axis, and this also ends up in multiple text boxes.
Is there any way to fix this?
Am I missing something?
Just to be clear, I would like to fix matlab's eps, Not use a different software.

Word Styles to get two elements to share same background/border

Within MS Word 2013 I am trying to create a text element plus a list underneath it, all wrapped inside a coloured border with background shading (see image). The attached image shows the text in plain form.
I would like to place a blue border around both the title and the list. I can achieve this by placing both objects within a 1x1 table and applying colouring rules to the cell, but semantically this seems bad (I'm from an HTML development background where it is very wrong!)
When I edit a Style rule to create the border/background, it works well until I create the list, then it goes badly wrong. Is it possible to achieve the output of the table cell approach by only using a style rule and no table?
After a day of experimentation, the closest I can get is by doing the following:
Create a style rule called Tips Heading based on Normal, then set it to be Bold with a blue background.
Create another style rule called Tips List based on List Paragraph, and set it to have a blue background.
Unfortunately the List cannot be indented because the background colour also indents. The border is also affected in this manner, so I ignored the border and indentation. It works really well and is semantically well structured.

Basic Cursor Movement Between Paragraphs in Matlab Editor

Is there a way to move between paragraphs in the Matlab Editor as is a common feature in any other general text editor out there. ie.
Ctrl+Up and Ctrl+Down to Move cursor between paragraphs as in Winedt.
I don't think there is such a shortcut. I must admit I have never missed it myself - what would a "paragraph" in your code be defined as?
BTW, are you aware that Ctrl+Down is used to go from one Cell to the next in MATLAB's cell mode? Cells could be considered logical "paragraphs" of your code, and you set their limits themselves (with comment lines starting with a double %%).