Is it possible to create Infopath Colour schemes? - infopath

Infopath by default has a set of color schemes, I am wondering if it is possible to add my own color schemes to the list?

Unfortunately it is not possible in IP 2007. Hopefully 2010 will change that but I haven't checked it out yet.
A possible workaround is to extract the form files and manually modify the CSS for the color scheme. Slightly more work than simply choosing a scheme from the picker but not entirely unfeasible.
Greg Collins, one of the MS Infopath MVPs, suggested this here and wrote up specific instructions in a post here.

Related

Change Bootstrap's Color Scheme

Years ago when I first met Bootstrap, when it still called itself Twitter Bootstrap, I searched how to colorize it, changing the default white/blue color scheme.
I remember there was even an online tool I could upload a random picture and it would generate a separate CSS file with its most noticeable colors, which I also could edit here and there in case their algorithm didn't match my wishes.
Today, using Bootstrap 4, not only I didn't find such online tool anymore but I also surprisingly didn't find anything at all related to a way to change the color scheme of Bootstrap version 4 (let's emphasize that)
Is there anything like this nowadays that would help automate a little bit the process?
Note: Preferably without requiring knowledge of LESS/SASS/SCSS nor anything like that
I think since Bootstrap 4 is still in alpha, the customizer websites like bootswatchr are not using it yet.
So for now you can use the options to override the basic settings :
https://v4-alpha.getbootstrap.com/getting-started/options/

Which color codes are used?

I wonder which colors are being used by this website?
The website uses a different colors for each layout. They look really good, but I am not able to identify which color codes are exactly used.
For greenish one, I could come most closer to this #6db286
Can some help me identify do that, also how to identify in general the color code used by seeing a website?
what is proper way to do that..or is it just a hit and trial?
Are you looking for something like that
https://zedbi.azurewebsites.net/View-a-websites-color-scheme
There you can get the color scheme of a website

How to use color string references in ASP.NET

I find myself duplicating colors all over my Styles.css. When I would like to change that color, i would have to change it for about 10 times (and more as i go).
In Android you can write colors in an xml file and refer to them when you need a color.
Is there a way to do this in ASP.NET or css?
I am sorry if there already is a solution somewhere on the internet, I am sure someone solved this, I just can not find it.

customizing bootstrap-wysihtml5 text editor with more features

i am using bootstrap-wysihtml5 as per the recommendation & suggestion of most of the people world wide. but i am finding many of the features missing in its tool bar,like adding table,smiles, changing font name, view as a code etc.
http://jhollingworth.github.io/bootstrap-wysihtml5/
how to add and customize the toolbar so that i my it up and customize the toolbar with additional features up to my requirement.
Wysihtml5 is kept simple on purpose, to keep it lightweight. For example, as of now there is no plan to add HTML table support (See this Github issue for Wysihtml5 itself).
It is possible to include a View as HTML option, see this StackOverflow question and answer.
As mentioned in another answer, if you need more sophisticated options, you might want to look at a different editor.

Best way to show critical instructions to a user in a web app?

I'm also interested in more general thoughts, but here is my specific problem. In an ASP.NET web app, I am connecting to a 3rd-party via API. The 3rd-party requires that the user login and answer a few configuration questions to set this up. All of the questions except one the user can just choose the default. On one question if the user chooses the default option, my app won't work with the 3rd-party. It is a limitation of their API. It is on their list to fix, but who knows when or if they actually will?
So what is the most effective way to give the user instructions in my app that they will follow once they go to this other site? Right now I have a screenshot with the option circled in red, follow by some descriptive text. What other techniques have you used in a similar situation?
Red text is the default mechanic in UI design to indicate importance (which is why it's used for errors so often).
Asterisks are the default choice for indicating required input.
Avoid flashing, and other garish-looking visual mechanics.
If this extends beyond a one-time inquiry, you should look at reading some good GUI books, like Don't Make Me Think: A Common Sense Approach to Web Usability and Designing Web Usability, both seminal books in the field.
I think you're headed in the right direction. I would make sure that your illustrative screenshot is large and easy to see the relevant details on. Also, some highlighted (classic yellow background ala 37 signals?) text to emphasize the importance of NOT selecting the offending option would be helpful.
Also, make this screenshot and highlighted instruction text, the VERY last thing they see before you forward them to or present the 3rd party site. Maybe make the action link (button, link, etc.) explicitly outline their acknowledgment of the thing not to do.
Maybe even, have fun with the caption like...
"I understand that choosing the default option above won't work."
Just some thoughts.
Unfortunately, nothing you can do will prevent idiots from choosing the wrong thing anyway. Basically, you can't make it idiot-proof.
This is more for GUIs but (depending on how critical this is) you can force users to type "I will choose xyz" before a redirect.
Is there a way to set a default on your end to get around this problem altogether? For example, picking some random setting initially that they could change in a profile of some kind that you can store on your end.
I've typically seen a red asterik(*) used for marking required fields on web forms if you want to not pre-select some value for the user for another way to try to solve this issue.
I know you want abstract, generalizations but there is no one true answer for what you're asking. I mean, what kind of content are we dealing with? Is the content broken up over multiple pages (or should it)? What kind of users generally use the form?
I know I've dealt with similar problems in dozens of different ways. Ideally you want not start treating your users as complete retards straight out of the box (just move to that progressively as they fail tasks), but you also want to be clear on what's going on.
The really high level (and obvious) ideal is that you want to make the instructions stand out to your punters. Colour change and standard icons do this (often poorly). However, changing the background colour of instruction text (to say a light gray) with a large icon (like a yellow sign with an exclamation mark) tends to focus the eye.
Another idea in your situation is to break the content in two. This might be done physically (press next to continue) or you might just colour code that hole part of the element a different colour to notify the user that they need to treat this differently.

Resources