Search found 694 matches

Return to advanced search

Plugin: CSS Color Converter v1.0

WeBuilder Plugin: CSS Color Converter v1.0 http://i.imgur.com/ls9ICPj.png Convert CSS colors from one color scheme to another. Supports RGB/RGBA/HSL/HSLA & HEX (RGB) Color schemes. Code fully commented, so it might be useful as reference for other plugin authors ;) Installation: 1) Download plug...
by pmk65
Wed May 27, 2015 6:51 pm
 
Forum: Plugins for HTMLPad / Rapid CSS / Rapid PHP / WeBuilder
Topic: Plugin: CSS Color Converter v1.0
Replies: 0
Views: 3400

Re: Is it possible to set a custom toolbar icon in a plugin?

Thanks for the feedback..
It would be great if "plugin.ini" could be extended with an icon option in the next version.
by pmk65
Mon May 25, 2015 8:09 pm
 
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
Topic: Is it possible to set a custom toolbar icon in a plugin?
Replies: 2
Views: 1846

Re: Need a code example for Plugin API: RegexMatchAll()

Thanks! The "_v()" stuff was just what I needed. (It's missing from the Plugin API docs, so no wonder I couldn't get it to work! :D) I have another question regarding RegexMatchAll. I have a RegEx that has 3 captioning groups plus 1 optional group. Currently I do this (using TRY/EXCEPT), a...
by pmk65
Mon May 25, 2015 8:07 pm
 
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
Topic: Need a code example for Plugin API: RegexMatchAll()
Replies: 4
Views: 2888

Re: Floating point values have diferent decimal separators

In future versions of the API, it might be an idea to force the decimal separators into a period.
A period is the standard decimal separator in *most* programming languages..
(I bet Im not the only one who find it weird to see code where the decimal is a comma instead of period. :) )
by pmk65
Mon May 25, 2015 8:00 pm
 
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
Topic: Floating point values have diferent decimal separators
Replies: 2
Views: 1817

Plugin: CSS Unit Converter v1.0

WeBuilder Plugin: CSS Unit Converter v1.0 http://i.imgur.com/1JP5nuh.png Convert stylesheet units from one format to another. Can convert a pixel based stylesheet into em, rem, vmax, vmin etc, or the other way around. Can also be used to scale the current units. Code fully commented, so it might be ...
by pmk65
Mon May 25, 2015 7:47 pm
 
Forum: Plugins for HTMLPad / Rapid CSS / Rapid PHP / WeBuilder
Topic: Plugin: CSS Unit Converter v1.0
Replies: 0
Views: 3029

Is it possible to set a custom toolbar icon in a plugin?

I have noticed that you can drag a WeBuilder plugin to one of the toolbars, but it doesn't have any icon. So the name of the plugin just shows up on the toolbar, which is a bit cluttering compared with an icon. But I can't find any way of setting a custom icon in the plugin API. Program used: WeBuil...
by pmk65
Sun May 24, 2015 2:54 pm
 
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
Topic: Is it possible to set a custom toolbar icon in a plugin?
Replies: 2
Views: 1846

Re: Plugin function "Round()" doesn't work properly

Turns out that Delphi/Webuilder uses a retarded form of rounding called " banker's rounding "! :shock: Round y to an integer value, call it q. If the fraction of y is 0.5, then q is the even integer nearest to y. Here's a custom rounding function I made, that behaves as you expect a roundi...
by pmk65
Sat May 23, 2015 2:29 pm
 
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
Topic: Plugin function "Round()" doesn't work properly
Replies: 1
Views: 1408

Useful sites/tools when developing Webuilder plugins

Here's a list of some very useful sites/tools needed developing WeBuilder plugins: pdScript IDE (Precision Delphi Script IDE) is a development environment for writing the code and designing the forms (GUI) in a Pascal Script language. http://www.be-precision.com/download/ This tool is great for crea...
by pmk65
Sat May 23, 2015 1:15 pm
 
Forum: Plugins for HTMLPad / Rapid CSS / Rapid PHP / WeBuilder
Topic: Useful sites/tools when developing Webuilder plugins
Replies: 0
Views: 2924

Plugin function "Round()" doesn't work properly

Im working on a plugin and noticed that the calculations made differed from the ones I get from regular Javascript. After a lot of debugging, I pinpointed the problem to the "Round()" function. Here's an example of totally inconstant results (WeBuilder Plugin script): var test1 = Round(11....
by pmk65
Sat May 23, 2015 2:06 am
 
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
Topic: Plugin function "Round()" doesn't work properly
Replies: 1
Views: 1408

Re: Implement support for free HTML Validator

*BUMP* Isn't it a bit lame that the "CSE HTML Validator" button links to this if you don't have "CSE HTML Validator" installed? http://www.blumentals.net/cse/ The page advertise for a 30% bundle discount when buying "CSE HTML Validator" together with an Web editor. But ...
by pmk65
Wed May 20, 2015 5:11 pm
 
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Feature Requests
Topic: Implement support for free HTML Validator
Replies: 4
Views: 3671

Re: General discussion about plugins.

I managed to figure out the format of the RegEx parameter (It have to be escaped and enclosed in quotes) after some trial and errors. But I still can't iterate over results from the "RegexMatchAll()" function. :( The WeBuilder Plugin documentation lacks a lot of information, specially abou...
by pmk65
Tue May 19, 2015 4:31 pm
 
Forum: Plugins for HTMLPad / Rapid CSS / Rapid PHP / WeBuilder
Topic: General discussion about plugins.
Replies: 139
Views: 2790998

Floating point values have diferent decimal separators

Floating point values have different decimal separators depending on OS/Locale. Im trying to create a plugin for Webuilder which needs to process floating point values, but it turns out to be a real pain. Example: var teststring = _t( 7/3 ); var testfloat = StrToFloat(teststring); Script.Message(uni...
by pmk65
Tue May 19, 2015 4:27 pm
 
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
Topic: Floating point values have diferent decimal separators
Replies: 2
Views: 1817

BUG: Format CSS Code is breaks when CSS contains a calc()

The function "CSS -> Format CSS Code" is breaking when the CSS contains a "calc()" function. The operation could not be performed due to the following error: Incorrect syntax: Possibly caused by omitting or unnecessary language tokens. Error at row 6; token '5em)'. Example: .test...
by pmk65
Tue May 19, 2015 4:21 pm
 
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
Topic: BUG: Format CSS Code is breaks when CSS contains a calc()
Replies: 1
Views: 1440

Re: General discussion about plugins.

Here's a simple plugin script that illustrates the problem with "RegexMatchAll". I just can't access the resulting matches in the variable "unitMatch" & "unitPosition", only get the length. :( function tester() { str = "width: 123.4px;height: 5px;"; regEx ...
by pmk65
Mon May 18, 2015 9:56 pm
 
Forum: Plugins for HTMLPad / Rapid CSS / Rapid PHP / WeBuilder
Topic: General discussion about plugins.
Replies: 139
Views: 2790998
PreviousNext

Return to advanced search