How customize the installation dialog of WIX? - installation

How can I customize the text in WIX installation dialog.
The requirement is to have dialog while installing like below:
+-----------------------------------------------------------------+
| Cotoso ABC Product |
+-----------------------------------------------------------------+
| |
| Please wait while the XXXX version of ABC is configured |
| |
| |
| Cancel |
+-----------------------------------------------------------------+
The title bar has "Cotoso ABC Product" which is the company and product name.
The dialog content is int format of "Please wait while {XXXX version} of {Product Name} is configured".
How to accomplish this in WIX?

You can change the text of the progress bar dialog, and you can change the title.
Why add a popup?

Including the default progress/error messages will probably accomplish what you require (this stumped me for ages, as it's not very obviously placed in the documentation). Just add:
<UIRef Id="WixUI_ErrorProgressText" />
As for the title bar, I think this just defaults to the Product/#Name attribute.

Related

How to remove PhpStorm auto added text on the codes

Does anyone knows how to remove the word "url" & "view" which is automatically added on the PHP storm IDE?
Check below image I have marked in red:
They are called inlay hints, you can find the settings for them here:
Phpstorm 2017.1:
Editor | General | Appearance | Show parameter name hints
Phpstorm 2019.3:
Settings | Editor | Inlay Hints | PHP | Parameter hints

InDesign - how do I know if an image already placed?

I am working on a book with many images, and I want to ensure that I place each picture only once. Is there a way to tell indesign to to check if image exist before placing it? Or a way to define a preflight profile for it?
Thank you,
Omer
You should be able to see a list in the links panel.
It shows the number of times and the page number it appears on.
example:
Name | ! | Pg |
--------------------|---|----|
my-image.psd (2) | | |
my-image.psd | | 1 |
my-image.psd | | 4 |

group menu items under components of joomla 2.5

Please tell me how to edit the joomla administrator component menus in joomla 2.5 i want to change the hierarchy of the menus and submenus can you please guide me the file of joomla 2.5 administrator component menus where i can set the hierarchy of menu items and sub menu items.
Like this
Advanced Features
Akeeba Backup à Rename to just Backup
j2xml
JCE Editor
Joomla! Update
Virtuemart - aio
You may switch components on and off for user specific groups:
Go to component > Options > Permissions > [Pick user group] > Access Administration Interface.
These are inherited from global options: System > Global configuration > Permissions > [Pick user groups] > Access Administration Interface.
There's infrastructure to change order and hierarchy of administration menus (these are similar menu items to these on frontend part of the website) but I haven't seen and extension that allows this yet (that doesn't mean it doesn't exist).
If you have some experience with SQL, You may alter database table of administration menus directly: take a look [db_prefix]__menu table where client_id = 1 and menutype = main but don't forget to backup database first!
Example of important values for Contacts component
id | title | alias | parent_id | level | lft | rgt
---+------------------------+---------------------+-----------+-------+-----+----
1 | Menu_Item_Root | root | 0 | 0 | 0 | 101
7 | com_contact | Contacts | 1 | 1 | 47 | 52
8 | com_contact | Contacts/Contacts | 7 | 2 | 48 | 49
9 | com_contact_categories | Contacts/Categories | 7 | 2 | 50 | 51
lft and rgt defined position in components menu
additionally alias, parent_id, level define hierarchy

How to pimp my (VS2010) editor?

While researching another issue, I came across this: http://james.padolsey.com/javascript/sorting-elements-with-jquery/ which made me green with envy for that color scheme (hey, I'm Portuguese).
So I found a .vssettings file online I liked, and tried to install it via "Import and Export Settings" - it has no effect; my "blah" color scheme remains the same (even after restarting VS2010). It's not my process that's wrong, as I was able to do it at home, the only difference being I've got VS2012 there.
So why are the vs-settings settings not getting set? To be more specific, I downloaded wekeroad-ink.vs-settings from http://studiostyl.es/schemes/wekeroad-ink (linked to it from http://weblogs.asp.net/scottgu/archive/2010/04/29/download-and-share-visual-studio-color-schemes.aspx).
I select Tools | Import and Export Settings... | Import selected environment settings | Next | Yes, save my current settings | Next | select My Settings | wekeroad-ink.vssettings | Next | Select "All Settings" | Finish | see "Your settings were successfully imported from wekeroad-ink.vssettings." and "To finish the wizard, click Close." | Close, ... no change in my editor colors. Restart VS2010; still no joy.
What's the trick to get it to "take" in VS2010?

Cucumber <reference> in Background?

Here is a tricky one regarding Cucumber:
Feature: Some feature
Background:
Given I am on the root page
Scenario Outline: Relevant flash messages should appear
When I fill in some_field with: <name>
Then I should see the text: <relevant_flash>
Examples:
| name | relevant_flash |
| Some name | Some message |
Scenario Outline: Irrelevant flash messages should not appear
When I fill in some_field with: <name>
Then I should not see the text: <irrelevant_flash>
Examples:
| name | irrelevant_flash |
| Some name | Some message |
I hate having to repeat:
When I fill in some_field with: <name>
But for obvious reasons it can not just be moved into background. Or can it? Let me know if you have a workaround...
Well, I can simplify your cucumber with something like this:
Feature: Some feature
Scenario Outline: Relevant flash messages should appear
Given I am on the root page
When I fill in some_field with: <name>
Then I should see <message>
Examples:
| name | message |
| Some name | Relevant message |
| Some other name | Irrelevant message |
| Some another name | another flash message |
You notice that I take out the Background: since we got it cover on Scenario Outline:
I think this steps will run and simple with out too much repeatation
Your Scenario outline could be better organized to avoid duplicate, by combining both successful and failed messages together.
Feature: Some feature
Background:
Given I am on the root page
Scenario Outline: Relevant flash messages should appear
When I fill in some_field with: <name>
Then I should see <relevant_message>
Examples:
| name | relevant_flash |
| Some name | Some message |
| Some irrelevant name | Irrelevant message |
| Name for blank msg | |

Resources