hello
i want to have mapkeys in one notpad fille
mapkey.extension
for format drawing exist parameter pro_format_dir
for mapkey is posible this ?
tks people
Hi,
1.] Save mapkeys in file named mymapkey.pro (for example ...).
2.] Launch Creo and import mymapkey.pro, the exit Creo session ... this short session created a trail file.
3.] Move trail file into specific directory and rename it to ... C:\myconfig\mytrail.txt (for example ...)
4.] Open mytrail.txt in Notepad and delete lines matching Exit command, save the file.
5.] Modify Target field in Creo shortcut definition, an example follows:
"C:\PTC\Creo2_M070\Creo 2.0\Parametric\bin\parametric.exe" "C:\myconfig\mytrail.txt"
6.] Launch creo
MH
Hi Bogdan,
here a short example of a creo start Batch (creo3 M100):
you can copy the text into an Editor and Name the file for example creo-start.bat
check and change the pathes (everything with set or call)
@echo on
rem set variables:
set pe_cfg=D:\myCreoConfigFiles
set pe_lp="C:\ptc\creo3\Creo 3.0\M100\Common Files"
set PRO_LANG=englisch
rem cleaup creo configs in install Directory:
if exist %pe_lp%\text\config.pro.* del %pe_lp%\text\config.pro.*
rem copy your config.pro settings to install Directory:
copy %pe_cfg%\config.pro %pe_lp%\text\config.pro
rem attach your Mapkeys to config.pro in install directory:
type %pe_cfg%\mapkeys.pro >> %pe_lp%\text\config.pro
rem start creo:
call "C:\ptc\creo3\Creo 3.0\M100\Parametric\bin\parametric.bat"
Exit
happy creo
daniel
Hi,
just small correction...
set PRO_LANG=english
MH