13-07-2010, 12:40 PM
(Questo messaggio è stato modificato l'ultima volta il: 13-07-2010, 12:43 PM da Ihetzoroth.)
Ragazzi,questo è un semplice menù per UDK:
Vi ho messo un'allegato
Questo è il sorgente:
;UDK Menu internal alpha
;UDK Menu Source Code, By John Sullivan(jjsullivan), onox, and deathrat. created with autohotkey and smartGUI. Last Edited 11/10/09 5:24 PM
Gui, Add, GroupBox, x2 y0 w320 h80 , UDK General Tools
Gui, Add, Button, x42 y20 w120 h20 , UDK Unreal Map Editor
Gui, Add, Picture, x12 y20 w20 h20 , C:\UDK\UDK-2009-11\Tools\UDKMenu\images\logo-udk.gif
Gui, Add, Picture, x12 y50 w20 h20 , C:\UDK\UDK-2009-11\Tools\UDKMenu\images\logo-udk.gif
Gui, Add, Button, x42 y50 w270 h20 , UDK Test App
Gui, Add, GroupBox, x2 y90 w320 h280 , Content Tools
Gui, Add, Picture, x12 y110 w20 h20 , C:\UDK\UDK-2009-11\Tools\UDKMenu\images\1076113658_xsi_logo.jpg
Gui, Add, Button, x42 y110 w120 h20 , XSI Mod Tool
Gui, Add, Picture, x12 y140 w20 h20 , C:\UDK\UDK-2009-11\Tools\UDKMenu\images\maya_logo.jpg
Gui, Add, Button, x42 y140 w120 h20 , Maya
Gui, Add, Picture, x12 y170 w20 h20 , C:\UDK\UDK-2009-11\Tools\UDKMenu\images\256px-3ds_Max_logo.png
Gui, Add, Button, x42 y170 w120 h20 , 3DS MAX
Gui, Add, Picture, x12 y200 w20 h20 , C:\UDK\UDK-2009-11\Tools\UDKMenu\images\blender_logo.jpg
Gui, Add, Button, x42 y200 w120 h20 , Blender 3D
Gui, Add, Picture, x12 y260 w20 h20 , C:\UDK\UDK-2009-11\Tools\UDKMenu\images\gimp_logo.png
Gui, Add, Button, x42 y260 w120 h20 , GIMP 2
Gui, Add, Picture, x12 y290 w20 h20 , C:\UDK\UDK-2009-11\Tools\UDKMenu\images\256px-Photoshop_logo.svg.png
Gui, Add, Button, x42 y290 w120 h20 , Photoshop CS4
Gui, Add, GroupBox, x2 y380 w320 h80 , Coding/Scripting
Gui, Add, Picture, x12 y400 w20 h20 , C:\UDK\UDK-2009-11\Tools\UDKMenu\images\notepad-icon.jpg
Gui, Add, Picture, x12 y430 w20 h20 , C:\UDK\UDK-2009-11\Tools\UDKMenu\images\notepad_logo_96x96.jpg
Gui, Add, Button, x42 y430 w120 h20 , Notepad ++
Gui, Add, GroupBox, x2 y470 w320 h50 , Compilation/Bake
Gui, Add, Button, x42 y400 w120 h20 , Notepad
Gui, Add, Picture, x12 y320 w20 h20 , C:\UDK\UDK-2009-11\Tools\UDKMenu\images\tree.jpg
Gui, Add, Button, x42 y320 w120 h20 , Speed Tree
Gui, Add, Button, x172 y320 w140 h20 , Speed Tree Compiler
Gui, Add, Picture, x12 y490 w20 h20 , C:\UDK\UDK-2009-11\Tools\UDKMenu\images\logo-udk.gif
Gui, Add, Button, x42 y490 w270 h20 , Create a Mod Package Installer
Gui, Add, Button, x2 y530 w150 h30 , Exit
Gui, Add, Picture, x12 y230 w20 h20 , C:\UDK\UDK-2009-11\Tools\UDKMenu\images\c4d_logo_shadow.jpg
Gui, Add, Button, x42 y230 w120 h20 , Cinema 4D
Gui, Add, Button, x172 y530 w150 h30 , UDK Website
Gui, Add, Edit, x172 y400 w150 h20 , vOpen With Notepad
Gui, Add, Edit, x172 y430 w150 h20 , vOpen With Notepad plusx2
Gui, Add, Edit, x42 y350 w120 h20 , vOpen With ST
Gui, Add, Edit, x172 y350 w150 h20 , vOpen With STC
Gui, Add, Edit, x172 y290 w150 h20 , vOpen With PhotohopCS4
Gui, Add, Edit, x172 y260 w150 h20 , vOpen With GIMP 2
Gui, Add, Edit, x172 y230 w150 h20 , vOpen With Cinema4D
Gui, Add, Edit, x172 y200 w150 h20 , vOpen With Blender3D
Gui, Add, Edit, x172 y170 w150 h20 , vOpen With 3DS MAX
Gui, Add, Edit, x172 y140 w150 h20 , vOpen With Maya
Gui, Add, Edit, x172 y110 w150 h20 , vOpen With XSI Mod Tool
Gui, Add, Edit, x172 y20 w150 h20 , vOpen With Map Editor
; Generated using SmartGUI Creator 4.0
Gui, Show, x558 y7 h568 w330, UDK Menu
Return
ButtonUDKUnrealMapEditor:
Run C:\UDK\UDK-2009-11\Binaries\UDKLift.exe Editor + %OpenWiithMapEditor%
Return
ButtonUDKTestApp:
Run C:\UDK\UDK-2009-11\Binaries\Win32\UDK.exe
Return
ButtonGIMP2:
Run %A_ProgramFiles%\GIMP-2.0\bin\gimp-2.6.exe + %OpenWithGIMP2%
Return
ButtonBlender3D:
Run %A_ProgramFiles%\Blender Foundation\Blender\blender.exe + %OpenWithBlender3D%
Return
ButtonNotepad:
Run %windir%\system32\notepad.exe + %OpenWithNotepad%
Return
ButtonNotepad++:
Run %A_ProgramFiles%\Notepad++\notepad++.exe + %OpenWithNotepadplusx2%
Return
ButtonCinema4D:
Run %A_ProgramFiles%\MAXON\CINEMA 4D 11.5\Cinema4d.exe + %OpenWithCinema4D%
Return
ButtonSpeedTree:
Run C:\UDK\UDK-2009-11\Binaries\SpeedTreeModeler\SpeedTree Modeler UDK.exe + %OpenWithST%
Return
ButtonSpeedTreeCompiler:
Run C:\UDK\UDK-2009-11\Binaries\SpeedTreeModeler\SpeedTree Compiler UDK.exe + %OpenWithSTC%
Return
ButtonMaya:
Run %A_ProgramFiles%\Autodesk\Maya2009\bin\maya.exe + %OpenWithMaya%
Return
Button3DSMAX:
Run %A_ProgramFiles%\Autodesk\3ds Max 9\3dsmax.exe + %OpenWith3DSMAX%
Return
ButtonPhotoshopCS4:
Run %A_ProgramFiles%\Adobe\Adobe Photoshop CS4\photoshop.exe + %OpenWithPhotoshopCS4%
Return
ButtonCreateaModPackageInstaller:
Run C:\UDK\UDK-2009-11\Binaries\UnrealFrontend.exe
Return
ButtonXSIModTool:
Run C:\Softimage\Softimage_Mod_Tool_7.5\Application\bin\XSI.bat -mod + %OpenWithXSIModTool%
Return
ButtonUDKWebsite:
Run http://www.udk.com/
Return
ButtonExit:
GuiClose:
ExitApp
Vi ho messo un'allegato
Questo è il sorgente:
;UDK Menu internal alpha
;UDK Menu Source Code, By John Sullivan(jjsullivan), onox, and deathrat. created with autohotkey and smartGUI. Last Edited 11/10/09 5:24 PM
Gui, Add, GroupBox, x2 y0 w320 h80 , UDK General Tools
Gui, Add, Button, x42 y20 w120 h20 , UDK Unreal Map Editor
Gui, Add, Picture, x12 y20 w20 h20 , C:\UDK\UDK-2009-11\Tools\UDKMenu\images\logo-udk.gif
Gui, Add, Picture, x12 y50 w20 h20 , C:\UDK\UDK-2009-11\Tools\UDKMenu\images\logo-udk.gif
Gui, Add, Button, x42 y50 w270 h20 , UDK Test App
Gui, Add, GroupBox, x2 y90 w320 h280 , Content Tools
Gui, Add, Picture, x12 y110 w20 h20 , C:\UDK\UDK-2009-11\Tools\UDKMenu\images\1076113658_xsi_logo.jpg
Gui, Add, Button, x42 y110 w120 h20 , XSI Mod Tool
Gui, Add, Picture, x12 y140 w20 h20 , C:\UDK\UDK-2009-11\Tools\UDKMenu\images\maya_logo.jpg
Gui, Add, Button, x42 y140 w120 h20 , Maya
Gui, Add, Picture, x12 y170 w20 h20 , C:\UDK\UDK-2009-11\Tools\UDKMenu\images\256px-3ds_Max_logo.png
Gui, Add, Button, x42 y170 w120 h20 , 3DS MAX
Gui, Add, Picture, x12 y200 w20 h20 , C:\UDK\UDK-2009-11\Tools\UDKMenu\images\blender_logo.jpg
Gui, Add, Button, x42 y200 w120 h20 , Blender 3D
Gui, Add, Picture, x12 y260 w20 h20 , C:\UDK\UDK-2009-11\Tools\UDKMenu\images\gimp_logo.png
Gui, Add, Button, x42 y260 w120 h20 , GIMP 2
Gui, Add, Picture, x12 y290 w20 h20 , C:\UDK\UDK-2009-11\Tools\UDKMenu\images\256px-Photoshop_logo.svg.png
Gui, Add, Button, x42 y290 w120 h20 , Photoshop CS4
Gui, Add, GroupBox, x2 y380 w320 h80 , Coding/Scripting
Gui, Add, Picture, x12 y400 w20 h20 , C:\UDK\UDK-2009-11\Tools\UDKMenu\images\notepad-icon.jpg
Gui, Add, Picture, x12 y430 w20 h20 , C:\UDK\UDK-2009-11\Tools\UDKMenu\images\notepad_logo_96x96.jpg
Gui, Add, Button, x42 y430 w120 h20 , Notepad ++
Gui, Add, GroupBox, x2 y470 w320 h50 , Compilation/Bake
Gui, Add, Button, x42 y400 w120 h20 , Notepad
Gui, Add, Picture, x12 y320 w20 h20 , C:\UDK\UDK-2009-11\Tools\UDKMenu\images\tree.jpg
Gui, Add, Button, x42 y320 w120 h20 , Speed Tree
Gui, Add, Button, x172 y320 w140 h20 , Speed Tree Compiler
Gui, Add, Picture, x12 y490 w20 h20 , C:\UDK\UDK-2009-11\Tools\UDKMenu\images\logo-udk.gif
Gui, Add, Button, x42 y490 w270 h20 , Create a Mod Package Installer
Gui, Add, Button, x2 y530 w150 h30 , Exit
Gui, Add, Picture, x12 y230 w20 h20 , C:\UDK\UDK-2009-11\Tools\UDKMenu\images\c4d_logo_shadow.jpg
Gui, Add, Button, x42 y230 w120 h20 , Cinema 4D
Gui, Add, Button, x172 y530 w150 h30 , UDK Website
Gui, Add, Edit, x172 y400 w150 h20 , vOpen With Notepad
Gui, Add, Edit, x172 y430 w150 h20 , vOpen With Notepad plusx2
Gui, Add, Edit, x42 y350 w120 h20 , vOpen With ST
Gui, Add, Edit, x172 y350 w150 h20 , vOpen With STC
Gui, Add, Edit, x172 y290 w150 h20 , vOpen With PhotohopCS4
Gui, Add, Edit, x172 y260 w150 h20 , vOpen With GIMP 2
Gui, Add, Edit, x172 y230 w150 h20 , vOpen With Cinema4D
Gui, Add, Edit, x172 y200 w150 h20 , vOpen With Blender3D
Gui, Add, Edit, x172 y170 w150 h20 , vOpen With 3DS MAX
Gui, Add, Edit, x172 y140 w150 h20 , vOpen With Maya
Gui, Add, Edit, x172 y110 w150 h20 , vOpen With XSI Mod Tool
Gui, Add, Edit, x172 y20 w150 h20 , vOpen With Map Editor
; Generated using SmartGUI Creator 4.0
Gui, Show, x558 y7 h568 w330, UDK Menu
Return
ButtonUDKUnrealMapEditor:
Run C:\UDK\UDK-2009-11\Binaries\UDKLift.exe Editor + %OpenWiithMapEditor%
Return
ButtonUDKTestApp:
Run C:\UDK\UDK-2009-11\Binaries\Win32\UDK.exe
Return
ButtonGIMP2:
Run %A_ProgramFiles%\GIMP-2.0\bin\gimp-2.6.exe + %OpenWithGIMP2%
Return
ButtonBlender3D:
Run %A_ProgramFiles%\Blender Foundation\Blender\blender.exe + %OpenWithBlender3D%
Return
ButtonNotepad:
Run %windir%\system32\notepad.exe + %OpenWithNotepad%
Return
ButtonNotepad++:
Run %A_ProgramFiles%\Notepad++\notepad++.exe + %OpenWithNotepadplusx2%
Return
ButtonCinema4D:
Run %A_ProgramFiles%\MAXON\CINEMA 4D 11.5\Cinema4d.exe + %OpenWithCinema4D%
Return
ButtonSpeedTree:
Run C:\UDK\UDK-2009-11\Binaries\SpeedTreeModeler\SpeedTree Modeler UDK.exe + %OpenWithST%
Return
ButtonSpeedTreeCompiler:
Run C:\UDK\UDK-2009-11\Binaries\SpeedTreeModeler\SpeedTree Compiler UDK.exe + %OpenWithSTC%
Return
ButtonMaya:
Run %A_ProgramFiles%\Autodesk\Maya2009\bin\maya.exe + %OpenWithMaya%
Return
Button3DSMAX:
Run %A_ProgramFiles%\Autodesk\3ds Max 9\3dsmax.exe + %OpenWith3DSMAX%
Return
ButtonPhotoshopCS4:
Run %A_ProgramFiles%\Adobe\Adobe Photoshop CS4\photoshop.exe + %OpenWithPhotoshopCS4%
Return
ButtonCreateaModPackageInstaller:
Run C:\UDK\UDK-2009-11\Binaries\UnrealFrontend.exe
Return
ButtonXSIModTool:
Run C:\Softimage\Softimage_Mod_Tool_7.5\Application\bin\XSI.bat -mod + %OpenWithXSIModTool%
Return
ButtonUDKWebsite:
Run http://www.udk.com/
Return
ButtonExit:
GuiClose:
ExitApp