Hey guys, I finally started to develop and adapt my plugins that I already did for another program.
Here is one of my last - Dropbox - Dropbox plugin will let you take control of your Dropbox directly from your HTML5 Application.
This is adapted from the Please login to see this link..
Before using the plugin, you will need to get an API developer key.
Read about this in the help page.
Please login to see this link.- Please login to see this link.
To install it, just unpack the rar archive into your MMF2 folder - keep the hierarchy from my rar archive.
Since it's a plugin developed with the EDIF SDK of MMF, the plugin has none C++ code - This will make unusable directly in the MMF2 native preview mode. You should have to build and run it.
Also, since there's still some issues with the "HTML Project" of this Beta 11, here is the method if you want to use the Dropbox plugin with the this mode.
Otherwise, you still can use it with the "HTML Final Project".
Open the Data/Runtime/Html5/Extension.js file and go to the line 195 - or search for loadRunObject() function. At the end of this function, just before // ENDCUT paste this :
if (this.name=="Dropbox")
return new CRunDropbox();
Save and close.
Then, open Data/Runtime/Html5/RuntimeDev.js file and go to the line 94 - or search for Runtime(canvasName, appName) function. Before this function, or at the end of the big list of 'document.write.....' paste this:
document.write('<script src="'+document.srcPath+'dropbox.js"></script>');
Save and close.
The dropbox plugin should now work with the 'HTML 5 Project' mode.
I started to learn javascript one year ago, so it may still have some bugs (I already developed 10+ plugins and now begin to be confirmed as js dev though) - Please feel free to support me by reporting bugs, ask questions, make propositions, or just tell me more about your work you'll do with my plugin
Finally, sorry for my english (here, in the help file and in my plugin), it may be sometimes precarious or have mistakes - I'm french but I do my best to improve my english skills (I'm working for universal and spent all my time with american people, so I haven't got the choice :p )
I started to develop/adapt other plugin which may come in the next few days/weeks.
Thanks for reading to here and enjoy!