mySqlI am planning on creating a database module for flashblocks so that it can pull data directly from a mySql database into a block. I don't mean to say that flashblocks will actually alter the data in the database, it will just propagate a text block with text/html from the database.
I really like the idea of keeping all the data in a text file. It makes setting up a new Flashblocks powered site very simple and quick. And it runs on the most basic hosting service this way.
In the future, I do plan on creating a Version of Flashblocks that will store all data in a mySql database but for now, I want to focus on the original vision of simplicity with one text file. This is more then sufficient for small / medium size sites.
Edit ButtonCtrl/e or Esc is the default way to launch the password field / editor.
But you can also launch it any number of ways using simple action script:
_root.flashblocks.startPassword() is the command to launch the password field. so you can attach that command to a button, etc...
| Code: : |
onPress = function() {
_root.flashblocks.startPassword()
}
|
With Flashblocks, I wanted to get away from editing in a disjointed backend area. I wanted it to be clear what content is being changed and for the client to be able to see the results right away. Is this what you mean by your note for point 2?