FM (Read Only)
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Information on new Autodesk login system

5 REPLIES 5
Reply
Message 1 of 6
Anonymous
1621 Views, 5 Replies

Information on new Autodesk login system

Information on new Autodesk login system

Autodesk is working to consolidate multiple user accounts, simplify the sign in process, and provide a single User ID and Password for accessing several Autodesk web sites. To help ensure a smooth transition, we recommend that you review your current account information for accuracy, especially first name, last name, and e-mail address.

Please note: If you have multiple User IDs with the same email address and want to keep those User IDs, you’ll need to assign a unique email address for each User ID.

Sites affected:

• Autodesk Subscription
• Product Activation
• Autodesk Discussion Groups
• Autodesk University
• Autodesk Labs
• Alias Design Community
• Civil Engineering Community
• Impression Community
• Manufacturing Community
5 REPLIES 5
Message 2 of 6
TrevN
in reply to: Anonymous

How about being able to log in and stay logged in forever? It's a small thing but a pain in the **** to have to log in everytime you start a new IE session!
Message 3 of 6
RamaFan
in reply to: Anonymous

Ok, now I've got real beef with you web guys over at Autodesk. How come I can only log-in using IE. I hate using IE it is junk, is there anyway to do this in Firefox or am I out of luck?
Message 4 of 6
mark.evans
in reply to: Anonymous

Firefox is my default browser and the login is working fine. Perhaps it is a configuration issue?


Mark Evans
Senior Product Manager
AEC Division, Simulation Product Line
Autodesk, Inc.

Message 5 of 6
RamaFan
in reply to: Anonymous

Alright, I'm appropratly cowed. Any suggestions? I've already adjusted my pop-up filter and add blocker.

Message 6 of 6
devitg
in reply to: Anonymous

For a best undestanding, the Hallex lisp as pated from a word doc , also pasted from the vlide editor

<!--[if gte mso 9]><xml> Normal 0 21 MicrosoftInternetExplorer4 </xml><![endif]--> <!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Tabla normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm 5.4pt; mso-para-margin:0cm; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.0pt; font-family:"Times New Roman";} </style> <![endif]--> (defun c:numtxt ()



(initget "S LR RL TB BT")

(setq dir (getkword

(strcase

"\n Direction to Number ( S for sel / LR / RL / TB / BT 😞 <TB>: ")))

(if (null dir)

;;user hits enter instead of kword.

(setq DIR "TB"))



;;*************************************************************** ****

(princ "Select texts or mtexts: ")

(setq ss nil)

(while (= ss nil)



(if (setq ss (ssget (list (cons 0 "*TEXT"))))

(progn

(setq startno (getint "\Start Number?: "))

(setq inc (getint

"\Enter Increment Number? Enter for increment number: <1>: "))

(if (null inc)

(setq inc 1))

)



;;*******************************number by ;;selection******************************************************************** ** ********



(cond ((= dir "S")

(progn (setq ssl nil)

(setq n 0)

(repeat (sslength ss)

(setq ssl (append ssl (list (ssname ss n))))

(setq n (1+ n)))

;;repeat

) ;end progn

)

;;*******************************number by left to ********************************

((= dir "LR") (progn (setq ssl nil)

(setq n 0)

(repeat (sslength ss)

(setq ssl (append ssl (list (ssname ss n))))

(setq n (1+ n)))

;;repeat

(setq ssl (vl-sort ssl

'(lambda (e1 e2)

(> (car (cdr (assoc 10 (entget e2))))

(car (cdr (assoc 10 (entget e1))))))))

;;setq

) ;end progn

)

;*******************************number by right to *******************

((= dir "RL")

(progn (setq ssl nil)

(setq n 0)

(repeat (sslength ss)

(setq ssl (append ssl (list (ssname ss n))))

(setq n (1+ n)))

;;repeat

(setq ssl (vl-sort ssl

'(lambda (e1 e2)

(< (car (cdr (assoc 10 (entget e2))))

(car (cdr (assoc 10 (entget e1)))))))) ;_setq

) ;_end progn

)

;;*********number by Top to ********

((= dir "TB") (progn (setq ssl nil)

(setq n 0)

(repeat (sslength ss)

(setq ssl (append ssl (list (ssname ss n))))

(setq n (1+ n)))

(setq ssl (vl-sort ssl

'(lambda (e1 e2)

(> (cadr (cdr (assoc 10 (entget e1))))

(cadr (cdr (assoc 10 (entget e2)))))))) ;setq

) ;end progn

)

;;********************************number by bottom TO Top

((= dir "BT")

(progn (setq ssl nil)

(setq n 0)

(repeat (sslength ss)

(setq ssl (append ssl (list (ssname ss n))))

(setq n (1+ n)))

(setq ssl (vl-sort ssl

'(lambda (e1 e2)

(< (cadr (cdr (assoc 10 (entget e1))))

(cadr (cdr (assoc 10 (entget e2)))))))) ;setq

) ;end progn

)

(T nil) ;_all other cases, nothing to do

);end cond

;;*********************************************************************

;;********* ************************************************

(setq ssX (length ssl) cnt 0)

(repeat ssx

(setq ent (nth cnt ssl))

(setq elist (entget ent))

(setq newval (itoa startno))

;;changed to new value

(entmod (subst (cons 1 newval) (assoc 1 elist) elist))

(entupd ent)

(setq startno (+ startno inc))

(setq cnt (1+ cnt))) ;_end repeat

;;*********************************************************************

;;*********************************************************

;end progn

(alert "\n No texts/mtexts selected try again")

);if

);end while

(princ) ); defun

(c:numtxt)

;|«Visual LISP© Format Options»

(120 2 50 0 nil "end of " 60 9 0 0 0 T T nil T)

;*** DO NOT add text below the comment! ***|;

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report