Step 1, PDT : Download PDT here, extract the content and put it somewhere on your disk
Step 2, Aptana : Launch your brand new PDT and go to Help>Install New Software click add, fill the fields with ‘Aptana’ and this url http://download.aptana.com/studio3/plugin/install , click ok, check the checkbox and install. When you’re prompted to restart eclipse, restart
Step 3, adding java stuff for FDT 5 requirements : Again return to Help>Install New Software click Add and enter p2 for the name and this repo (depend on your eclipse version, mine is indigo) : http://download.eclipse.org/releases/indigo/ ,click ok and look for Eclipse Java development tools in Programming Languages, check and install restart if you’re asked for.
Step 4 FDT5 : Help>Install New Software : Add, enter FDT5 in name and http://fdt.powerflasher.com/update/fdt5/ for the location, click ok check the checkbox and install, restart eclipse
Step 5 : Enjoy your pdt + aptana + fdt eclipse combo :)
How to quickly access to system infos on Windows 7 ?
- Just press Windows + Pause
We often need to open command line prompt and have to change to a path to launch some commands.
Here is a quick way to do it :
Just press and hold SHIFT key and press the right mouse button, in the context menu you’ll see an entry with something like « Open command prompt here » (i have a french OS) et voilà :).
On a project I have to do some flash and facebook connect. I did it with OAuthGraph and the classes you can found on http://blog.yoz.sk. At the end (after some pain) everything work. After some time we had report that under internet explorer the facebook connect fails. That was a surprise since nothing in code has moved.
After some investigation i found that the error occured on the call on /me here is the scenario :
Call on :
https://graph.facebook.com/me?access%5Ftoken=XXXXXXXXX [...]
With Debug bar in internet explorer under Info & cache we can see :
Error result: 0x800c0008
Error constant: INET_E_DOWNLOAD_FAILURE
Error description: The download has failed (the connection was interrupted)
Extended error result: 0x2f7e
I search solutions and explanations but didn’t found concrete solid answers. It seems that the facebook header make internet explorer to try to launch a download and fail.
Finally i saw that some coders published the swf with flash player 10 and it resolved the issue. I did that and yes it does working again.
So i note this ugly patch here to remember.
But this is driving me mad because i can’t see relation between the bug issue and the version of the player.
Furthermore it worked well for several days with a swf in flash palyer 9 version …
If someone has understand what’s going on with this one, don’t hesitate to leave a comment