Hi, Thanks for the reply. However, I already have a structure similar to the one outlined by you: <Control Id="BannerBitmap" Type="Bitmap" Text="WixUI_Bmp_Banner" ../>
<Control Id="SomeText" Type="Text" Text="Enter the ..:" .. /> <Control Id="SomeEditBox" Type="Edit" Property="SOMEPROPERTY" Text="[SOMEPROPERTY]" ToolTip="Some tooltip" ../> I would expect the value read out by Narrator/UISpy when selecting "SomeEditBox" read out "Enter the ..:" from the SomeText text item, but it reads out "WixUI_Bmp_Banner" for some reason. And I have around 5 sets of Text+Edit fields, and all of the edit fields get the name "WixUI_Bmp_Banner". Thanks, Rendijs S. -----Original Message----- Date: Tue, 6 Jul 2010 10:37:52 -0700 From: "Blair" <os...@live.com> Subject: Re: [WiX-users] wix generated installer dialogs and Narrator To: "'General discussion for Windows Installer XML toolset.'" <wix-users@lists.sourceforge.net> Message-ID: <blu111-ds127af72aaa3daa64408a23cd...@phx.gbl> Content-Type: text/plain; charset="us-ascii" The platform support for products such as Narrator is called Accessibility by Microsoft. This page gives the guidelines for that support for Windows Installer UI: http://msdn.microsoft.com/library/aa367454.aspx Basically, you need to have a "Text" type control that provides the caption for each of your "Edit" type controls be immediately right before the respective edit field in your authoring (position doesn't matter for the reader). Then Narrator will get the caption from that static text. ... <Control Type="Text" Text="Caption A" .../> <Control Type="Edit" Property="PROPERTYA" .../> ... <Control Type="Text" Text="Caption B" .../> <Control Type="Edit" Property="PROPERTYB" .../> ... -----Original Message----- From: Rendijs Smukulis [mailto:luuse...@gmail.com] Sent: Tuesday, July 06, 2010 7:55 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] wix generated installer dialogs and Narrator Hello, wix-users! Been googling this for ages, to no avail. The basic problem is this: I have an installer form with a couple of editable text fields (type="Edit"). I need to add a caption to them which would be readable by Narrator, UI Spy and such. Adding a "ToolTip" or "Help" elements did not work. For some odd reason, when I have an element "<Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="WixUI_Bmp_Banner"/>" in the form, the names of the editable text fields become "WixUI_Bmp_Banner", and are read out by Narrator as such. The version of wix is 3.0.5419 I believe. Any ideas how to get this working? Thanks in advance, Rendijs S. (sorry if the mail is sub-standard, my first mail to the list) ------------------------------------------------------------------------------ This SF.net email is sponsored by Sprint What will you do first with EVO, the first 4G phone? Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first _______________________________________________ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users