Flash HTML Editor Manual
Would you like to create your
own Flash CMS or Blog in minutes? Try out our
first of a kind,
flashy new Flash HTML Editor. It is a
revolutionary new product and it is
cross browser compatible! The editor makes full use of the Flash Player and contains a
fully customizable toolbar. The editor is
XHTML compatible, which means that users can create formatted content
without even having to know HTML! Nothing will break the rest of your code.
Easy-to-use but
mighty in functionality this extension will enable you to create
incredibly good,
powerful and
original websites! Key features of this new extension include:
- Fully cross browser compatible by using the Flash player
- Fully integrated with Dreamweaver with amazing inline preview
- Image Upload with Direct Preview
- Visual preview for fonts and size
- Easy and flexible file upload capabilities
- Text search functionality
- Insert special characters
- Create links
- Clean-up HTML styles
- Fully compatible with Pure ASP/ PHP Upload extensions for image upload and management.
- Full International Support
Note: check the new Flash Video and see the Flas HTML Editor in Action!
Get it now
FAQ
Q: How can I display raw code with the Flash HTML Editor?
A: It is really easy to display raw code from a database using the Flash HTML Editor.
With a simple step, drag a binding onto your page which contains some data.
In the Bindings panel, select the Server Formats (if you can't see it, scroll across to the right) and choose HTML.Encode, for the binded field.
Your data will now be displayed as it is in the database, with no parsing of tags.
Note: Only for use displaying code, don't use on normal text entries.
Q: The Insert & Update are not Working Correctly, what can I do to fix this?When my page updates a record in the database, the new text in the editor is not updated unless I press buttons on the editor itself (like switch to HTML view). I have tested using Macromedia's Update Record server behavior and tested using an updateable recordset.
A: You are probably submitting the form with form.submit() call instead of using a standard submit button...
Well this function indeed submits your form but it does not execute any scripts that are defined on the onsubmit handler.
So your form validation as well the copy of the html contents to the hidden text field that is used to update your database do not get executed this way...
So the best solution is to make the submit button a real type="submit" and get rid of any form.submit() functions.