Autore |
Discussione |
arri
Utente Master
Regione: Lombardia
14951 Messaggi |
Inserito il - 18 giugno 2009 : 14:32:06
|
Citazione: Messaggio inserito da antoniovinci
Citazione: Messaggio inserito da arri anche la 2008 ha la versione 64 bit
Giusto, cio' non toglie che il tuo suddetto post c'entra come i cavoli a merenda in codesta discussione...
perchè ha scritto 64 bit... ? |
|
|
n/a
deleted
Prov.: Estero
Città: Sieradz (PL)
5926 Messaggi |
Inserito il - 18 giugno 2009 : 14:39:43
|
Citazione: Messaggio inserito da arri perche' ha scritto 64 bit... ?
Dovresti chiederlo al buon TG61...
Sta di fatto che la tua notazione che (anche) la 2008 sia a 64 bit non attiene al merito di questo topic, che ha per titolo: AutoCAD 2009 - notizie
Ok, chiudiamola qua 'sta sterile polemica: c'e' gente che muore di fame in questo preciso momento.
|
|
|
TheGrey61
Utente Master
Regione: Piemonte
Prov.: Torino
Città: Rivalta di Torino
1039 Messaggi |
Inserito il - 18 giugno 2009 : 18:34:31
|
Ok, chiudiamola qui. Per amore di precisione ho scritto 64 bit, perchè la 2009 mi ha fatto scomparire la 2004. Fine |
|
|
arri
Utente Master
Regione: Lombardia
14951 Messaggi |
Inserito il - 18 giugno 2009 : 18:47:10
|
Citazione: Messaggio inserito da TheGrey61 perchè la 2009 mi ha fatto scomparire la 2004. Fine
sei un caso unico, perchè versioni differenti ( non Trial) possono convivere tranquillamente |
|
|
TheGrey61
Utente Master
Regione: Piemonte
Prov.: Torino
Città: Rivalta di Torino
1039 Messaggi |
Inserito il - 18 giugno 2009 : 18:51:13
|
Lo sospettavo, ma oramai la frittata è fatta! Non mi fa più installare correttamente la versione 2004 sulla ws! Per questo mi sono un po' arrabbiato! |
|
|
arri
Utente Master
Regione: Lombardia
14951 Messaggi |
Inserito il - 27 luglio 2009 : 08:24:25
|
Citazione: Messaggio inserito da TheGrey61
Lo sospettavo, ma oramai la frittata è fatta! Non mi fa più installare correttamente la versione 2004 sulla ws! Per questo mi sono un po' arrabbiato!
quando ti capiterà di formattare, vedrai che riuscirai a far convivere più versioni |
|
|
TheGrey61
Utente Master
Regione: Piemonte
Prov.: Torino
Città: Rivalta di Torino
1039 Messaggi |
Inserito il - 27 luglio 2009 : 17:02:38
|
Non ne dubito, anche perchè installerò in virtual machine separate! Grazie comunque del contributo! |
|
|
lauranico
Nuovo Arrivato
3 Messaggi |
Inserito il - 28 settembre 2009 : 11:55:39
|
scusate... sono nuova è mezz'ora che sto cercando in questo forum la terza puntata della guida ad autocad 2009 in pdf le prime 2 puntate risalgono a marzo 2008 forse non è mai stata postata? grazie Laura |
|
|
arri
Utente Master
Regione: Lombardia
14951 Messaggi |
Inserito il - 28 settembre 2009 : 11:59:49
|
Citazione: Messaggio inserito da lauranico
scusate... sono nuova è mezz'ora che sto cercando in questo forum la terza puntata della guida ad autocad 2009 in pdf le prime 2 puntate risalgono a marzo 2008 forse non è mai stata postata? grazie Laura
puoi indicare dove sono le prime due |
|
|
lauranico
Nuovo Arrivato
3 Messaggi |
Inserito il - 28 settembre 2009 : 12:23:24
|
Citazione: Messaggio inserito da Aniello Annunziata
Seconda parte della recensione della nuova versione di AutoCAD 2009. Parliamo ancora dell'interfaccia, e delle sue possibilità di personalizzazione, oltre alle nsotre conclusioni su di essa. Potete scaricare la seconda parte qui: http://www.cadlandia.com/download/pdf/acad2009-002.pdf
questa è la seconda |
|
|
lauranico
Nuovo Arrivato
3 Messaggi |
Inserito il - 28 settembre 2009 : 12:24:47
|
nella terza pagina del forum... |
|
|
arri
Utente Master
Regione: Lombardia
14951 Messaggi |
Inserito il - 28 settembre 2009 : 12:43:41
|
Citazione: Messaggio inserito da lauranico
nella terza pagina del forum...
non credo Aniello posterà la terza,
ora c'è AutoCAD 2010 |
|
|
arri
Utente Master
Regione: Lombardia
14951 Messaggi |
Inserito il - 12 ottobre 2009 : 12:15:29
|
The action recorder macro changes my drawing view.
If you don't want the Action recorder to change your drawing view (zoom) after playing your macro, check its view settings).
In the dialog of the ACTMANAGER command, choose your macro and click the Change button. In the section "Restore pre-playback view" uncheck the option "Once playback finishes". |
|
|
arri
Utente Master
Regione: Lombardia
14951 Messaggi |
|
arri
Utente Master
Regione: Lombardia
14951 Messaggi |
Inserito il - 28 ottobre 2009 : 13:15:20
|
Command macro does not work the same as it did in AutoCAD 2008 and previous versions
Issue
You want to know how to get a command macro that was created for AutoCAD® 2008 or a previous version to work the same in AutoCAD 2009.
Solution
Starting with AutoCAD 2009, command versioning was introduced with the Action Recorder. Command versioning allows AutoCAD to track which command iteration should be used when executing an action macro, script file, or command macro. As a result of this change, some commands might require the use of the ^R control sequence in the command macro.
The ^R control sequence forces AutoCAD to use the newest version of the command. When the ^R control sequence is not used, the oldest version of the command is used. For example, in AutoCAD 2009, the following command macro ends after setting the radius value, which is not what would happen in AutoCAD 2008. The following command macro shows the FILLET command using the Multiple option and setting a radius of 0.1:
^C^C_fillet;u;r;0.1;
This command macro does not work correctly in AutoCAD 2009, as the FILLET command is being interpreted to use its legacy command behavior, prompting sequence, and options. The following shows the command prompt for the legacy FILLET command:
Current settings: Mode = TRIM, Radius = 0.1000 Select first object or [uNdo/Polyline/Radius/Trim/mUltiple]:
To use the newest command behavior, add the ^R control sequence before the command in the command macro. The following shows the same command macro using the new ^R control sequence:
^C^C^R_fillet;u; r;0.1;
The command prompt and options for the above command macro look like the following:
Current settings: Mode = TRIM, Radius = 0.1000 Select first object or [uNdo/Polyline/Radius/Trim/mUltiple]:
Running the command macro with the ^R control sequence and the FILLET command makes it behave just like it did in AutoCAD 2008.
Note: Not all command macros require the use of the ^R control sequence. It is strongly recommended that you only use the ^R control sequence when creating command macros that specify options and input as part of the command sequence. For example, using ^R with the command macro “^C^C^R_fillet” yields the same results as “^C^C_fillet” since no command options or input are specified as part of the command macro.
The following is a list of some of the commonly used commands with command macros that are affected by command versioning: CHAMFER FILLET LAYOUT LENGTHEN TRIM COLOR EXPLODE
If you are using AutoLISP, you can control which version of a command is used by preceding the Command function with the InitCommandVersion function. The syntax for the InitCommandVersion function is as follows:
(InitCommandVersion <version_number>)
where <version_number> controls which version of the command should be used for the preceding command being executed by the Command function.
The following example demonstrates how to use version 1 (or the oldest version) of the FILLET command:
(InitCommandVersion 1) (command “fillet”)
The following prompts are displayed when using version 1 of the FILLET command:
Current settings: Mode = TRIM, Radius = 0.1000 Select first object or [uNdo/Polyline/Radius/Trim/mUltiple]:
Version 2 of the FILLET command is the second (or, currently, the newest) version of the command, and is equivalent to using the ^R control sequence in a command macro.
The following prompts are displayed when using the second version of the FILLET command:
Current settings: Mode = TRIM, Radius = 0.1000 Select first object or [Undo/Polyline/Radius/Trim/Multiple]: |
|
|
arri
Utente Master
Regione: Lombardia
14951 Messaggi |
|
arri
Utente Master
Regione: Lombardia
14951 Messaggi |
|
arri
Utente Master
Regione: Lombardia
14951 Messaggi |
|
arri
Utente Master
Regione: Lombardia
14951 Messaggi |
Inserito il - 16 giugno 2010 : 08:11:27
|
ViewCube
If you are working mainly in 2D and the ViewCube is getting in your way, you can turn it off by entering NAVVCUBE at the command line and setting it to OFF. This is a per-viewport, per-drawing setting so if you want to disable this feature for future drawings, be sure to change it in your template drawing(s).
If you just want to adjust the ViewCube settings, choose the S option when you run the NAVVCUBE command. Also, the following system variables are related to the ViewCube NAVVCUBEDISPLAY - Allows you to control when the ViewCube is displayed. NAVVCUBELOCATION - Controls location of ViewCube. NAVVCUBEOPACITY - Controls the opacity of the ViewCube tool when it is inactive. NAVVCUBEORIENT - Controls whether the ViewCube reflects WCS or the current UCS. NAVVCUBESIZE - Controls the size of the ViewCube. |
|
|
arri
Utente Master
Regione: Lombardia
14951 Messaggi |
|
Discussione |
|