-
New language features:
- Element reuse
- Multiple parameters in macro
- Named parameters in macros (a macro could be used in the same way of a native tag)
- Import
- Do we need port? Couldn't we use an extern annotation to say that the media is acessible outside it context?
- Add key to link
-
Others
- Web Editor / Player (using Web NCL?)
-
Fixes:
- linkParam should be bindParam of Condition
- Multiple properties in a line
- Revert port to how it was
- Add transition properties in Media
[ ] Create Ports
-- Producer
slideshow:
fotos(m1, "src1", m2, "src2")
end
-- Programmer
macro createFoto(id, src)
media id
src: src
end
end
macro createSeqPhotos(m1, m2)
onEnd m1 do
start m2 end
end
end
macro createSelectAlbum()
end
macro createAlbum(table)
context album
assert medias[photo] > 0
end
end
macro createSlideshow()
createAlbum()
end
createSlideshow(slideshow)