I am not sure how to describe it, but I guess the closest thing in mind is
.dfm files in Delphi, which are templates of tables, text objects, dropdown boxes etc…
It would be great to have something persistent as a table object where you decide a free number of parameters, read bellow, and then with a script in Hype populate the table with data (say from a json source, like php script on server-side).
the “table” files/elements can be on the page but the content can be dynamic, depending on what the “load” page populates the table with, read from a json source…
example of “pageobjects” :
object prevbutton: TextObj
Left = 8
Top = 96
Width = 70
Height = 20
BackGroundColor = White
shown = True
BackGroundColorThemeIndex = 0
Align = Left
Font.PrimaryFont = 'verdana'
Font.SecondaryFonts = 'SYSTEM'
Font.Size = 2
Font.Color = Black
Font.Bold = False
Font.Italic = False
Font.Underline = False
Font.Strikeout = False
Font.ColorThemeIndex = 0
AutoLineBreak = True
Text.Strings = (
'previous')
end
object Nextbutton: TextObj
Left = 880
Top = 96
Width = 70
Height = 20
BackGroundColor = White
shown = True
BackGroundColorThemeIndex = 0
Align = Right
Font.PrimaryFont = 'verdana'
Font.SecondaryFonts = 'SYSTEM'
Font.Size = 2
Font.Color = Black
Font.Bold = False
Font.Italic = False
Font.Underline = False
Font.Strikeout = False
Font.ColorThemeIndex = 0
AutoLineBreak = True
Text.Strings = (
'Next')
end