Is there to modify a ppg layout string parameters so as a user type in a password into a text field, the characters are displayed as stars? Like "******"?
I can't seem to find anything. if it worked on Windows and Linux, that would be great also.
If you would like to comment on my work, please contact my manager chris.maho...@autodesk.com<mailto:sy.down...@autodesk.com>. Autodesk Subscription<http://www.autodesk.com/subscription> The smartest way to optimize your software investment.
From: softimage-boun...@listproc.autodesk.com [mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Hans Payer Sent: Tuesday, November 24, 2009 2:18 PM To: softim...@listproc.autodesk.com Subject: PPG with star password input?
Is there to modify a ppg layout string parameters so as a user type in a password into a text field, the characters are displayed as stars? Like "******"?
I can't seem to find anything. if it worked on Windows and Linux, that would be great also.
I also tried: item.SetAttribute( "Caption", "ES_PASSWORD") #doesn't fail but the ES_PASSWORD doesn't do anything item.SetAttribute( "Caption", "ES_PASSWORD= 1") #same item.SetAttribute( "Caption", ";ES_PASSWORD= 1") #same
Any tips where I can find dscontrol info? Google isn't giving me much.
On Tue, Nov 24, 2009 at 11:50 AM, Stephen Blair <Stephen.Bl...@autodesk.com>wrote:
> If you would like to comment on my work, please contact my manager > chris.maho...@autodesk.com<mailto:sy.down...@autodesk.com>. > Autodesk Subscription<http://www.autodesk.com/subscription> The smartest > way to optimize your software investment.
> From: softimage-boun...@listproc.autodesk.com [mailto: > softimage-boun...@listproc.autodesk.com] On Behalf Of Hans Payer > Sent: Tuesday, November 24, 2009 2:18 PM > To: softim...@listproc.autodesk.com > Subject: PPG with star password input?
> Is there to modify a ppg layout string parameters so as a user type in a > password into a text field, the characters are displayed as stars? Like > "******"?
> I can't seem to find anything. if it worked on Windows and Linux, that > would be great also.
Hans Payer wrote: > It looks like it could do the trick. but there's not much reference in > the SDK. I got this so far by guessing but the 3rd line fails
> If you would like to comment on my work, please contact my manager > chris.maho...@autodesk.com > <mailto:chris.maho...@autodesk.com><mailto:sy.down...@autodesk.com > <mailto:sy.down...@autodesk.com>>. > Autodesk Subscription<http://www.autodesk.com/subscription> The > smartest way to optimize your software investment.
> From: softimage-boun...@listproc.autodesk.com > <mailto:softimage-boun...@listproc.autodesk.com> > [mailto:softimage-boun...@listproc.autodesk.com > <mailto:softimage-boun...@listproc.autodesk.com>] On Behalf Of > Hans Payer > Sent: Tuesday, November 24, 2009 2:18 PM > To: softim...@listproc.autodesk.com > <mailto:softim...@listproc.autodesk.com> > Subject: PPG with star password input?
> Is there to modify a ppg layout string parameters so as a user > type in a password into a text field, the characters are displayed > as stars? Like "******"?
> I can't seem to find anything. if it worked on Windows and Linux, > that would be great also.
I think this is an enum value from Microsoft in c:\Program Files\Microsoft SDKs\Windows\v6.0A\Include\WinUser.h. Try to use the actual integer values. * Edit Control Styles */ #define ES_LEFT 0x0000L #define ES_CENTER 0x0001L #define ES_RIGHT 0x0002L #define ES_MULTILINE 0x0004L #define ES_UPPERCASE 0x0008L #define ES_LOWERCASE 0x0010L #define ES_PASSWORD 0x0020L #define ES_AUTOVSCROLL 0x0040L #define ES_AUTOHSCROLL 0x0080L #define ES_NOHIDESEL 0x0100L #define ES_OEMCONVERT 0x0400L #define ES_READONLY 0x0800L #define ES_WANTRETURN 0x1000L #if(WINVER >= 0x0400) #define ES_NUMBER 0x2000L #endif /* WINVER >= 0x0400 */
From: softimage-boun...@listproc.autodesk.com [mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Hans Payer Sent: November-24-09 4:36 PM To: softim...@listproc.autodesk.com Subject: Re: PPG with star password input?
It looks like it could do the trick. but there's not much reference in the SDK. I got this so far by guessing but the 3rd line fails
I also tried: item.SetAttribute( "Caption", "ES_PASSWORD") #doesn't fail but the ES_PASSWORD doesn't do anything item.SetAttribute( "Caption", "ES_PASSWORD= 1") #same item.SetAttribute( "Caption", ";ES_PASSWORD= 1") #same
Any tips where I can find dscontrol info? Google isn't giving me much.
On Tue, Nov 24, 2009 at 11:50 AM, Stephen Blair <Stephen.Bl...@autodesk.com<mailto:Stephen.Bl...@autodesk.com>> wrote: Maybe you could use dscontrol with the ES_PASSWORD style?
If you would like to comment on my work, please contact my manager chris.maho...@autodesk.com<mailto:chris.maho...@autodesk.com><mailto:sy.down...@autodesk.com<mailto:sy.down...@autodesk.com>>. Autodesk Subscription<http://www.autodesk.com/subscription> The smartest way to optimize your software investment.
From: softimage-boun...@listproc.autodesk.com<mailto:softimage-boun...@listproc.autodesk.com> [mailto:softimage-boun...@listproc.autodesk.com<mailto:softimage-boun...@listproc.autodesk.com>] On Behalf Of Hans Payer Sent: Tuesday, November 24, 2009 2:18 PM To: softim...@listproc.autodesk.com<mailto:softim...@listproc.autodesk.com> Subject: PPG with star password input?
Is there to modify a ppg layout string parameters so as a user type in a password into a text field, the characters are displayed as stars? Like "******"?
I can't seem to find anything. if it worked on Windows and Linux, that would be great also.
Guillaume.Laferri...@autodesk.com> wrote: > I think this is an enum value from Microsoft in c:\Program Files\Microsoft > SDKs\Windows\v6.0A\Include\WinUser.h. > Try to use the actual integer values. > * Edit Control Styles > */ > #define ES_LEFT 0x0000L > #define ES_CENTER 0x0001L > #define ES_RIGHT 0x0002L > #define ES_MULTILINE 0x0004L > #define ES_UPPERCASE 0x0008L > #define ES_LOWERCASE 0x0010L > #define ES_PASSWORD 0x0020L > #define ES_AUTOVSCROLL 0x0040L > #define ES_AUTOHSCROLL 0x0080L > #define ES_NOHIDESEL 0x0100L > #define ES_OEMCONVERT 0x0400L > #define ES_READONLY 0x0800L > #define ES_WANTRETURN 0x1000L > #if(WINVER >= 0x0400) > #define ES_NUMBER 0x2000L > #endif /* WINVER >= 0x0400 */
> From: softimage-boun...@listproc.autodesk.com [mailto: > softimage-boun...@listproc.autodesk.com] On Behalf Of Hans Payer > Sent: November-24-09 4:36 PM > To: softim...@listproc.autodesk.com > Subject: Re: PPG with star password input?
> It looks like it could do the trick. but there's not much reference in the > SDK. I got this so far by guessing but the 3rd line fails
> I also tried: > item.SetAttribute( "Caption", "ES_PASSWORD") #doesn't fail but the > ES_PASSWORD doesn't do anything > item.SetAttribute( "Caption", "ES_PASSWORD= 1") #same > item.SetAttribute( "Caption", ";ES_PASSWORD= 1") #same
> Any tips where I can find dscontrol info? Google isn't giving me much.
> On Tue, Nov 24, 2009 at 11:50 AM, Stephen Blair < > Stephen.Bl...@autodesk.com<mailto:Stephen.Bl...@autodesk.com>> wrote: > Maybe you could use dscontrol with the ES_PASSWORD style?
> If you would like to comment on my work, please contact my manager > chris.maho...@autodesk.com<mailto:chris.maho...@autodesk.com><mailto: > sy.down...@autodesk.com<mailto:sy.down...@autodesk.com>>. > Autodesk Subscription<http://www.autodesk.com/subscription> The smartest > way to optimize your software investment.
> From: softimage-boun...@listproc.autodesk.com<mailto: > softimage-boun...@listproc.autodesk.com> [mailto: > softimage-boun...@listproc.autodesk.com<mailto: > softimage-boun...@listproc.autodesk.com>] On Behalf Of Hans Payer > Sent: Tuesday, November 24, 2009 2:18 PM > To: softim...@listproc.autodesk.com<mailto:softim...@listproc.autodesk.com
> Subject: PPG with star password input?
> Is there to modify a ppg layout string parameters so as a user type in a > password into a text field, the characters are displayed as stars? Like > "******"?
> I can't seem to find anything. if it worked on Windows and Linux, that > would be great also.
// Display PPG to user try { InspectObj( oCustomProperty, null, "PPG Name", siModal ); } catch(e) { return; }
// Get value entered by user var Password = oCustomProperty.Parameters( "password" ).value;
// Display result LogMessage( "Password: " + Password );
return(0);
}
Matt
________________________________
From: softimage-boun...@listproc.autodesk.com [mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Hans Payer Sent: Tuesday, November 24, 2009 1:36 PM To: softim...@listproc.autodesk.com Subject: Re: PPG with star password input?
It looks like it could do the trick. but there's not much reference in the SDK. I got this so far by guessing but the 3rd line fails
I also tried: item.SetAttribute( "Caption", "ES_PASSWORD") #doesn't fail but the ES_PASSWORD doesn't do anything item.SetAttribute( "Caption", "ES_PASSWORD= 1") #same item.SetAttribute( "Caption", ";ES_PASSWORD= 1") #same
Any tips where I can find dscontrol info? Google isn't giving me much.
On Tue, Nov 24, 2009 at 11:50 AM, Stephen Blair <Stephen.Bl...@autodesk.com> wrote:
Maybe you could use dscontrol with the ES_PASSWORD style?
If you would like to comment on my work, please contact my manager chris.maho...@autodesk.com<mailto:sy.down...@autodesk.com>. Autodesk Subscription<http://www.autodesk.com/subscription> The smartest way to optimize your software investment.
From: softimage-boun...@listproc.autodesk.com [mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Hans Payer Sent: Tuesday, November 24, 2009 2:18 PM To: softim...@listproc.autodesk.com Subject: PPG with star password input?
Is there to modify a ppg layout string parameters so as a user type in a password into a text field, the characters are displayed as stars? Like "******"?
I can't seem to find anything. if it worked on Windows and Linux, that would be great also.
----- Original Message ----- From: Matt Lind To: softim...@listproc.autodesk.com Sent: Tuesday, November 24, 2009 4:49 PM Subject: RE: PPG with star password input?
Here's a simple example:
var ES_PASSWORD = 32;
RequestPassword();
function RequestPassword( ) { // Create CustomProperty var oCustomProperty = XSIFactory.CreateObject( "CustomProperty" );
// Display PPG to user try { InspectObj( oCustomProperty, null, "PPG Name", siModal ); } catch(e) { return; }
// Get value entered by user var Password = oCustomProperty.Parameters( "password" ).value;
// Display result LogMessage( "Password: " + Password );
return(0); }
Matt
________________________________
From: softimage-boun...@listproc.autodesk.com [mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Hans Payer Sent: Tuesday, November 24, 2009 1:36 PM To: softim...@listproc.autodesk.com Subject: Re: PPG with star password input?
It looks like it could do the trick. but there's not much reference in the SDK. I got this so far by guessing but the 3rd line fails
I also tried: item.SetAttribute( "Caption", "ES_PASSWORD") #doesn't fail but the ES_PASSWORD doesn't do anything item.SetAttribute( "Caption", "ES_PASSWORD= 1") #same item.SetAttribute( "Caption", ";ES_PASSWORD= 1") #same
Any tips where I can find dscontrol info? Google isn't giving me much..
On Tue, Nov 24, 2009 at 11:50 AM, Stephen Blair <Stephen.Bl...@autodesk.com> wrote:
Maybe you could use dscontrol with the ES_PASSWORD style?
If you would like to comment on my work, please contact my manager chris.maho...@autodesk.com<mailto:sy.down...@autodesk.com>. Autodesk Subscription<http://www.autodesk.com/subscription> The smartest way to optimize your software investment.
From: softimage-boun...@listproc.autodesk.com [mailto:softimage-boun...@listproc.autodesk.com] On Behalf Of Hans Payer Sent: Tuesday, November 24, 2009 2:18 PM To: softim...@listproc.autodesk.com Subject: PPG with star password input?
Is there to modify a ppg layout string parameters so as a user type in a password into a text field, the characters are displayed as stars? Like "******"?
I can't seem to find anything. if it worked on Windows and Linux, that would be great also.
> From: softimage-boun...@listproc.autodesk.com [* > mailto:softimage-boun...@listproc.autodesk.com*<softimage-boun...@listproc.autodesk.com>] > On Behalf Of Hans Payer > Sent: Tuesday, November 24, 2009 1:36 PM > To: softim...@listproc.autodesk.com > Subject: Re: PPG with star password input?
> It looks like it could do the trick. but there's not much reference > in the SDK. I got this so far by guessing but the 3rd line fails
> If you would like to comment on my work, please contact my > manager chris.maho...@autodesk.com<mailto:sy.down...@autodesk.com>. > Autodesk Subscription<http://www.autodesk.com/subscription> > The smartest way to optimize your software investment.
> From: softimage-boun...@listproc.autodesk.com [* > mailto:softimage-boun...@listproc.autodesk.com*<softimage-boun...@listproc.autodesk.com>] > On Behalf Of Hans Payer > Sent: Tuesday, November 24, 2009 2:18 PM > To: softim...@listproc.autodesk.com > Subject: PPG with star password input?
> Is there to modify a ppg layout string parameters so as a > user type in a password into a text field, the characters are displayed as > stars? Like "******"?
> I can't seem to find anything. if it worked on Windows and > Linux, that would be great also.