Jump to content

Recommended Posts

Posted (edited)

normalnie szczęka opada, zaskakujące, dzięki

 

normally jaw-dropping, surprising, thanks

mLipok

 

edit:

AutoIt just surprised me again, still amazes me

Edited by mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

btw.

nice avatar

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted
  On 2/15/2014 at 9:19 AM, wakillon said:

I had to use myhttpsproxy.com for be able to download your script !

and some includes are missing for test your source file...

vpaint_2_01_sourcepaint.au3 - 43 error(s), 100 warning(s)

I don't know why you have to use myhttpsproxy.com. It may be something with servers, I don't know. I updated source package, including some UDFs and optimized the code for version 3.3.10.2 of AutoIt. And you'll have to move, delete or rename Au3Check.exe to get rid of errors (works for me).

Posted

  On 2/15/2014 at 2:42 PM, wakillon said:

But how do you "undo" an action ?

ctrl+z has no effect.

I haven't implemented it yet. I'm thinking how to manage history of all layers, paths, adjutments etc.

Posted
  On 2/15/2014 at 2:52 PM, wakillon said:

ok, and an other suggestion : it will be handy if your gui support drag&drop as most editor. :thumbsup:

Actually, it'll be in vPaint 2.1 :)

Posted (edited)

I looked in your scirpt

where you have $pi declaration ?

EDIT1:

and $hMain , I mean you use it here

_ClipBoard_Open($hMain)

EDIT2:

where is Function _MultiTaskDialog()

EDIT3:

in gui.au3

change this:

Func _HighlightTools($id)

EndFunc

to:

Func _HighlightTools($id = Default) ; Default to omnit Aucheck Error by _HighlightTools() in external.au3k

EndFunc   ;==>_HighlightTools
Edited by mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted
  On 2/15/2014 at 9:19 AM, wakillon said:

and some includes are missing for test your source file...

vpaint_2_01_sourcepaint.au3 - 43 error(s), 100 warning(s)

 

  On 2/15/2014 at 2:21 PM, scintilla4evr said:

And you'll have to move, delete or rename Au3Check.exe to get rid of errors (works for me).

 

I do some CleanUp. It may be useful.

L:\TOOLs\Macro\___Z_FORUM\vPaint\vpaint_2_01_source\paint.au3 - 5 error(s), 2 warning(s)

paint.zip

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

  • 1 month later...
Posted

New version (3.1) of vPaint is now available!

New features are:

  • changing user interface theme,
  • turning on/off options like gradient antialiasing or convolution-based effects
  • drawing 3D model wireframes (cube only for now, specification of mesh data will be added to my site).

 

Download

  • 2 months later...
Posted (edited)

Here it is! I've just created version 3.3!

New features:

  • Two new brush properties: randomize rotation & randomize size
  • Rebuilded toolbox
  • Two new effects: Ripple & wind
  • Better aerograph (looks like brush in 2.0)

And to sycam0inc: I've tried to add icon editing option, but while I'm saving an icon, AutoIt crashes.

Download

Bugfix #1:

Fixes:

  • vPaint won't crash while using Lens Flare or Red-eye correcting

vpaint_bugfix1.zip

Edited by scintilla4evr
Posted

Hello my friend.

It looks very good.

 

I wish that this time, you have not included the code.
I was curious what you did progress.

Cheers 

mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

  On 6/2/2014 at 9:02 PM, mLipok said:

Hello my friend.

It looks very good.

 

I wish that this time, you have not included the code.

I was curious what you did progress.

Cheers 

mLipok

 

Sorry. I've just added the source to my website. :)

Posted (edited)

It would really help if you make training videos how to make a number of basic things - like how to add another layer, copy layer and some other basics.

If you do that it will very help.
Right now, I do not know how to do these basic things. If I knew, I was using your software!

 

And also add support for PSD files!

Well done!

Edited by Guest
Posted

Some comments about your coding style, and some good advice {I hope}


1.

in some include file you have not add #include-once

Add this to all.


2.

You do not need declare any variable in some cases:

for example:

Func _GetXMLTagArray($d, $n)
    $srt = _StringBetween($d, "<"&$n&">", "</"&$n&">")
    Return $srt
EndFunc

you can do this just like this:

Func _GetXMLTagArray($d, $n)
    Return _StringBetween($d, "<"&$n&">", "</"&$n&">")
EndFunc

even here:

Func _GetXMLMetaName($sTagData)
    $s = StringSplit($sTagData, " ")
    Return $s[1]
EndFunc

you can do this:

Func _GetXMLMetaName($sTagData)
    Return StringSplit($sTagData, " ")[1]
EndFunc


3.

Use scope in declaration

for example:

Func _AddPath_XML()
    If $isOpen = 0 Then Return 0
    $xml = FileOpenDialog("", "", "Path data (*.XML)")
    If @error Then Return 0
    $xmld = FileRead($xml)
    $isDoing = 1
Func _AddPath_XML()
    If $isOpen = 0 Then Return 0
    Local $xml = FileOpenDialog("", "", "Path data (*.XML)")
    If @error Then Return 0
    Local $xmld = FileRead($xml)
    Local $isDoing = 1

if some Variable are global add underline 

for example

Global $iApplicationVersion = 3.2 
Global $aLayers[1] = [0], $aLayerN[1] = [0], $aLayerB[1] = [0], $bInverseGrad = 0, $bFlipGrad

change to this:

Global $_iApplicationVersion = 3.2 
Global $_aLayers[1] = [0], $_aLayerN[1] = [0], $_aLayerB[1] = [0], $_bInverseGrad = 0, $_bFlipGrad

then in all your au3 modules it became easier to read and understand the code.

4.

I see you do not use Tidy . Why ?

look

Your code:

$file = @ScriptDir&"\Data\Mesh\"&GUICtrlRead($cidModel)
$iRadius = ((GUICtrlRead($cidRadius)/100)*(($iW+$iH)/2))/2

after using Tidy:

$file = @ScriptDir & "\Data\Mesh\" & GUICtrlRead($cidModel)
$iRadius = ((GUICtrlRead($cidRadius) / 100) * (($iW + $iH) / 2)) / 2

5.

nice, but why twice ?

If Not IsDeclared("Pi") Then Global Const $Pi = 4*ATan(1)
If Not IsDeclared("Pi") Then Global $Pi = 4*Atan(1)

btw.

I'm still impressed.

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

Hello. I've just uploaded vPaint 3.4, so have fun.

To mLipok, I don't use Tidy, because it crashes on my computer. I don't know why. I've just read your post, so I didn't use your advices, but I've made vPaint's code more modular.

New features

  • Calipers tool
  • Radial gradients
  • Support for Truevision Targa
  • HDR Merge (experimental)
  • New HUD icons

And to gil900, I've added first tutorial (Layers). I hope it'll be helpful.

Download

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...