I want to compile my locale, resource.properties file into a swf.
How can I do that??
The documentation on Adobe site seems to be insufficient.
Can someone please help.
Thanks
Neera
I think this post from Sönke Rohde will help you: http://soenkerohde.com/2008/07/flex-localization/
He explains how to set up the localization in Flex.
Maybe you should also have a look at BabelFX: http://babelfx.org/
http://livedocs.adobe.com/flex/3/html/help.html?content=l10n_1.html
You can't do it directly from Flash Builder, you need to write a shell, ANT or Maven build script.
Related
I'm using Netbeans 8.0.2. I used the wizard to created a Java class library project so I could share a class among several projects. I now want to add some capability that requires me to import from javafx (SimpleStringProperty). Fix imports didn't work and Intellisense says it doesn't know javafx.
I looked at the Project Properties | Libraries setting of one of my JavaFX applications and I see javafx.classpath.extension. I think I need this, but I don't know how to add it. I searched and someone suggested adding the jdk's jfxrt.jar file to the compile libraries, but that didn't work.
Is the lack of javafx.classpath.extension my problem? If so, how do I add it?
I finally found this bug that addresses this: Bug 213219 .
Basically, you: "...go to Project Properties, Deployment panel, and check "Keep JavaFX Runtime on Classpath"..."
Thanks everyone!
I have been looking at QHelpEngine and QHelpEngineCore, and I was wondering if there is a nice guide on how to start making a help file.
QAssistant was theviewer for html help files.
The new QHelp framework uses a single compiled help file and includes a set of classes to implement a viewer in your app and some standalone tools to build the help file
Ironically I find it difficult to locate this information in the Qt manual. It's under QAssistant.
I have an adobe air application and it must make screenshot for entire screen (not only app area) and save it to a file on hdd.
Could you give me a link how can I achieve this?
thank you
On Windows, you can use this one to grab screenshot ...
https://github.com/pcichon/ScreenShooter
it uses Native Extensions for AIR.
Video Tutorial:
http://gotoandlearn.com/play.php?id=125
http://gotoandlearn.com/play.php?id=126
Look at this project; which is called the Nitro ScreenCap component.
You can build native extension for all platforms.
If are making windows application you can make dll with c or c++.
Here are some usefull links for start.
http://easynativeextensions.com/air-native-extension-for-windows/
https://forums.adobe.com/thread/2307093
Is it possible to find some information about Qt? I need chm file with all documentation of all classes (https://doc.qt.io/qt-5/classes.html). Does somebody knows where can I find it?
If you have installed Qt in your machine, use Qt Assistant. The help available are pretty much the same as that in the online.
Qt Assistant is just an application which requires no internet connection and useful for offline help..
You can use the script from this site: http://www.interclasse.com/scripts/chm.php in order to generate chm file from an online tutorial you find anywhere in the web. Like this one: http://doc.qt.nokia.com/nokia-qtsdk-1.0/index.html
I haven't tried it myself, but seems rather promising.
Good luck!
I've made a little script that will automatically build a CHM file out of the latest available documentation for QT. All credits to char101 for the main script that actually converts HTML docs into the CHM project, my part was only a little automation.
https://github.com/vzhd1701/qt-documentation-chm-autoupdated
hallo all
i have an asp.net site which i have no source code for it.
anyway i would like to decompile the whole site and that way i can work on it agian.
how can i decompile an entire website easily to c# and not do it file by file with feflactor?
please help me with this, thank you!
You can use the File Disassembler plugin for Reflector. It'll let you dump out a whole assembly into code files all at once.
There's another plugin: FileGenerator, that looks like it'll do the same thing, and generate a project file for you to boot.
I have used Decompiler.NET in the past. It does a very nice job.
Decompiler.NET
Hopefully you have permission to Decompile this code.
In the time passed a number of new and much better options became available. JustDecompile and DotPeek are up to date free decompilers that are definitely up to the task of decompiling and asp.net site.
ILSpy should also be capable of doing this although it seems work on keeping it up to date is slowly coming to an end. dnSpy is a more obscure alternative for assemblies that have been somehow processed/modified after compilation, e.g. by obfuscator or IL optimizer, etc.