HMGSCRIPT 2012: Programming For The Web in The Right Way :)

Moderator: Rathinagiri

User avatar
Roberto Lopez
HMG Founder
Posts: 4004
Joined: Wed Jul 30, 2008 6:43 pm

Re: HMGSCRIPT 2012: Programming For The Web in The Right Way

Post by Roberto Lopez »

rathinagiri wrote:Image demo is working fine in Chrome and IE and not in my Firefox 10.0 (Let me update and tell you)
OHHH NOOO!!!!

THE FIRST BUG REPORT!!! :)

CHROME RULES!

:)
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
User avatar
Roberto Lopez
HMG Founder
Posts: 4004
Joined: Wed Jul 30, 2008 6:43 pm

Re: HMGSCRIPT 2012: Programming For The Web in The Right Way

Post by Roberto Lopez »

HMGSCRIPT 2012 FUNCTION REFERENCE (R004)


WINDOW:

Element: DIV

You can use all the properties, events and methods availables for it via DOM.

Syntax:

Window( cId , cCaption , nWidth , nHeight )


BUTTON:

Element: INPUT (Type: BUTTON)

You can use all the properties, events and methods availables for it via DOM.

Syntax:

Button( cId , cParentId , nRow , nCol , cCaption , cOnClick )


LABEL:

Element: SPAN

You can use all the properties, events and methods availables for it via DOM.

Syntax:

Label( cId , cParentId , nRow , nCol , cValue )


TEXTBOX:

Element: INPUT (Type: TEXT)

You can use all the properties, events and methods availables for it via DOM.

Syntax:

TextBox( cId , cParentId , nRow , nCol , cValue )


IMAGE:

Element: IMAGE

You can use all the properties, events and methods availables for it via DOM.

Syntax:

Image( cId , cParentId , nRow , nCol , cSrc )


MSGINFO:

Syntax:

MsgInfo( cMessage , cCaption )


RELEASE:

Releases a window.

Syntax:

Release( cId )
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
User avatar
Roberto Lopez
HMG Founder
Posts: 4004
Joined: Wed Jul 30, 2008 6:43 pm

Re: HMGSCRIPT 2012: Programming For The Web in The Right Way

Post by Roberto Lopez »

rathinagiri wrote:Image demo is working fine in Chrome and IE and not in my Firefox 10.0 (Let me update and tell you)
OHHH NOOOO!!!

THE FIRST BUG REPORT!!!!

:)
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
User avatar
esgici
Posts: 4543
Joined: Wed Jul 30, 2008 9:17 pm
DBs Used: DBF
Location: iskenderun / Turkiye
Contact:

Re: HMGSCRIPT 2012: Programming For The Web in The Right Way

Post by esgici »

rathinagiri wrote:Image demo is working fine in Chrome and IE and not in my Firefox 10.0 (Let me update and tell you)
Confirmed for FireFox 12.0 :(

And, for IE, not working FINE, but after allowed ActiveX :(

Regards

--

Esgici
Viva INTERNATIONAL HMG :D
User avatar
dhaine_adp
Posts: 457
Joined: Wed Aug 06, 2008 12:22 pm
Location: Manila, Philippines

Re: HMGSCRIPT 2012: Programming For The Web in The Right Way

Post by dhaine_adp »

The test on Ubuntu works fine. It is ubuntu version 10. As always an excellent contribution by the Master.

Thank you Roberto for leading us in a new path.

Danny
Attachments
Screenshot.JPG
Screenshot.JPG (69.73 KiB) Viewed 5437 times
Regards,

Danny
Manila, Philippines
User avatar
Rathinagiri
Posts: 5471
Joined: Tue Jul 29, 2008 6:30 pm
DBs Used: MariaDB, SQLite, SQLCipher and MySQL
Location: Sivakasi, India
Contact:

Re: HMGSCRIPT 2012: Programming For The Web in The Right Way

Post by Rathinagiri »

Works fine in Android Tablet :)
Attachments
Screenshot_2012-05-31-23-40-45.png
Screenshot_2012-05-31-23-40-45.png (45.69 KiB) Viewed 5435 times
East or West HMG is the Best.
South or North HMG is worth.
...the possibilities are endless.
User avatar
esgici
Posts: 4543
Joined: Wed Jul 30, 2008 9:17 pm
DBs Used: DBF
Location: iskenderun / Turkiye
Contact:

Re: HMGSCRIPT 2012: Programming For The Web in The Right Way

Post by esgici »

rathinagiri wrote:Works fine in Android Tablet :)
This is best news of day 8-)

Regards

--

Esgici
Viva INTERNATIONAL HMG :D
User avatar
Roberto Lopez
HMG Founder
Posts: 4004
Joined: Wed Jul 30, 2008 6:43 pm

Re: HMGSCRIPT 2012: Programming For The Web in The Right Way

Post by Roberto Lopez »

esgici wrote:
rathinagiri wrote:Image demo is working fine in Chrome and IE and not in my Firefox 10.0 (Let me update and tell you)
Confirmed for FireFox 12.0 :(

And, for IE, not working FINE, but after allowed ActiveX :(

Regards

--

Esgici
Some developers calls FireFox, 'FireBug', I guess that we will find why :)

Look at this:

http://www.daniweb.com/web-development/ ... ..pls-help
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
User avatar
Roberto Lopez
HMG Founder
Posts: 4004
Joined: Wed Jul 30, 2008 6:43 pm

Re: HMGSCRIPT 2012: Programming For The Web in The Right Way

Post by Roberto Lopez »

rathinagiri wrote:Works fine in Android Tablet :)
Great!

I guess that we should consider larger buttons by default, since our main target are tablets and phones.
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
User avatar
Roberto Lopez
HMG Founder
Posts: 4004
Joined: Wed Jul 30, 2008 6:43 pm

Re: HMGSCRIPT 2012: Programming For The Web in The Right Way

Post by Roberto Lopez »

This is a very important thing to note.

A lot of properties, events and methods are available for the elements that we are creating.

They already are there, since they are available at control creation.

They are available always, despite how you are created the control (HTML tags or JS).

ie, for input text (textbox):

http://www.w3schools.com/jsref/dom_obj_text.asp

So, we do not need to code any more to enhance textbox or any other control. Once created, all is already there and we can manipulate it right now via JS.

Even more, as HTML standards evolve, new features will come when new browser versions.
Regards/Saludos,

Roberto


(Veritas Filia Temporis)
Post Reply