verve help

Hello,
i am new user. By advance be indulgent.
Sorry maybe i didnt have see the tool in verve.
But its difficult to remind all short key.
I made a small tool in blitzmax to show them.
Its not finished because maybe its not useful.
If there is any interrest in it i can complete the code.
Also i can give the exe if needed.
i am new user. By advance be indulgent.
Sorry maybe i didnt have see the tool in verve.
But its difficult to remind all short key.
I made a small tool in blitzmax to show them.
Its not finished because maybe its not useful.
- Code:
SuperStrict
Global page:Int
AppTitle="Verve hlp"
Graphics 800,680
While Not KeyHit(KEY_ESCAPE) And Not AppTerminate()
Cls
If KeyHit(key_left) And page>0 Then page=page-1
If KeyHit(key_right) And page<1 Then page=page+1
aff()
Flip
Wend
Function aff()
Local a:String
Local y:Int=30
SetColor (255,225,0)
DrawText "The hotkeys : use left/right arrow to change page",100,0
Select page
Case 0 RestoreData page1
Case 1 RestoreData page2
EndSelect
'RestoreData page1
Repeat
ReadData a
DrawText a,0,y
y=y+22
Until a=""
EndFunction
#page1
DefData "Page 1"
DefData "[Tab] toggles 'interface' visibility"
DefData "[Shift]+[Tab] toggles brush cursor visibility! 8-)"
DefData "[o] To Load projects"
DefData "[s] To save projects/export images (png, jpg)"
DefData "[Shift]+[s] To save as..."
DefData "[Ctrl]+[s] To save active layer only as 16 bit PNG with alpha"
DefData "[Ctrl]+[Shift]+[s] To save image as two 16 bit PNG images of components:"
DefData " Color only And Material only (height image). Filename gets suffix '_col' And '_mat'."
DefData "[Shift] + [F2] turns on Adjust Canvas Area."
DefData " Hit [Shift]+[F2] again To Confirm the changes! Hit [F2] alone To cancel the changes!"
DefData "- Grab the corners with [LMB] To adjust the crop area freely And [RMB] To keep proportions!"
DefData "- Grab the edges To just adjust the chosen edge!"
DefData "- Hold [Alt] To adjust crop area symmetrical around original canvas center!"
DefData "- Grab inside the crop area To move the whole crop area!"
DefData "[Ctrl] + [Delete] starts a New project at Current resolution with the option To reset"
DefData " To Default settings on everything"
DefData "[Shift]+[Home] resets the window To the size of the canvas"
DefData "[F3] toggles 'fullscreen' which really is just a Desktop sized window without borders,"
DefData " but hey... certainly covers the full screen. ;)"
DefData "[F4] toggles border conditions For canvas display between 'Clamp', 'Repeat'"
DefData " And 'Mirrored Repeat'."
DefData " "
DefData "Painting..."
DefData "Holding the Left Mouse Button (LMB) will let you paint on the canvas."
DefData "Hold [Shift] To just move paint around. (fluid smudge parameter dials between smudging And pushing)"
DefData "Hold [Ctrl] To erase paint, which also moves the paint."
DefData "Hold [Ctrl]+[Shift] To flatten the material gradually."
DefData ""
#page2
DefData "Page 2"
DefData "[w] toggles pen pressure on brush size"
DefData "[e] toggles pen pressure on brush opacity"
DefData "[r] toggles brush blur/sharpen, blurring Or sharpening everything beneath your brush"
DefData " as you make your strokes. :idea: Hold [Ctrl] To sharpen."
DefData " I recommend turning opacity To 0% While doing that, though! :idea:"
DefData "[Alt] + [LMB] To pick a color from the paint on your layer"
DefData "[Alt] + [RMB] To pick a color from the image"
DefData " "
DefData "Widgets..."
DefData "(hold down keys To display And adjust):"
DefData "[Space] + [LMB] To adjust brush size"
DefData "[brackets] To adjust brush size like in Photoshop. Except this one doubles Or halves "
DefData " the brush size with each respective key hit."
DefData "[Space]+[LMB]+[Shift] Or [Ctrl]+[RMB]+[Shift] To adjust minimum brush size when using"
DefData " tablet pressure [w] toggle"
DefData "[Space]+[Ctrl] To adjust color picker size"
DefData "[c] toggles the display of a Local colorwheel on the canvas at the cursor position."
DefData " You can grab And move it by the Left Upper edge outside the wheel"
DefData " (still have To add gfx For that)."
DefData "[f] brings up fluidity dial To mouse cursor"
DefData "[Shift]+[f] brings up fluidity smudge"
DefData "[Ctrl]+[f] brings up fluidity sharpness"
DefData "(b) brings up material build-up parameter"
DefData "[Shift] +(b) toggles between two build-up values, both of which you can adjust"
DefData "[Ctrl]+[z] undo/redo (only 1 undo per layer at the moment)"
DefData ""
If there is any interrest in it i can complete the code.
Also i can give the exe if needed.