Categories
Blog News Programming

Revoking a Flex 3 License Activation is not easy.

This is a bit of a weird story, which most people probably won’t have happened to them. Still for those out there in the same situation, this is what happened.

Previously I had bought the “Flex builder Standard edition”, which comes without graphic elements (bars, charts, pies, whatnot). In order to show the results of filtering in my flex program I found it didn’t do all I needed. So I purchased the Flex Builder Pro edition (the full build, not an upgrade).

When you register your products on the Adobe website, you can see on your adobe.com profile page that each flex builder product can be installed two times – typically used for installing once on Windows and once on Mac, so you can test your products on both environments. This suited me fine, as I have a windows XP laptop and an iMac.

Each time you install Flex builder, you can see in your profile page on Adobe.com that the license count for the registered product decrements by one. My standard edition was installed on both my Mac and my XP, so I had zero licenses left to install (which it showed on my Adobe profile page).

After buying the full Flex Builder, I no longer needed the Standard edition. So I wanted to uninstall and if possible sell the standard edition. So I searched for a deactivation routine inside of the Flex builder Standard edition. Most recent Adobe products like Photoshop and so on have online activation, but I did not find one, so I uninstalled my standard Flex Builder 3 completely, thinking that uninstalling would also revoke the used Flex license with the Adobe server. This does not appear to be the case, as the license count does not increase again.

Erasing the license key from your machine and replacing it with the full flex license also does nothing for the used-up licenses on adobe.com.

So in the end I asked for help at Adobe (Benelux). They too asked me if I could not start the deactivation routing, but admitted they did not have much training in supporting Flex builder. After some more mails and phone calls, the technicians could not help me further, and had no further information to give me, as Flex Builder is a server product, only used in big corporations ( I told them I had bought it in via the Adobe.be online shop as a retail customer, so it’s not only just for big corporations) . After inquiring internally, they told me the only support for Flex on the issue I was experiencing was in America, which I could try to call, but probably would not get in as I would need a support contract.

I reopened the by-now closed support case and wrote quite a lengthy mail explaining that I was not satisfied with the solution. An extremely helpful (dutch) lady has since then tried to help me and has herself contacted the Flex support guys.

It seems Flex is considered an enterprise product, so it is not supported by retail support people and you need an enterprise support contract.

However, the upshot of it seems to be that a normal uninstall should be sufficient. There should be no penalty or license deactivation apparently needed, you can reinstall the Standard edition elsewhere. However, I have not yet tried to sell my license, and probably will not for some time. I’m a bit scared of trying it, and not everybody around me is so deep into programming as I am…

All in all, I have mixed feelings about the support I’m getting for this issue. On the positive side, I was always courteously treated by the support people, and all of them were helpful (but in particular Helene was helpful above and beyond her duty, for which I thank her). On the negative side, it seems that Flex is not considered a retail product, although there are scores of people out there using it to create lots and lots of cool things with it in flex/flash.

Categories
Blog News

Do-Re-Mi in Anwerp Central Station

Categories
Blog News

Flex update is coming

I’ve not been posting a lot on my blog lately, as I have been busy on several things at the same time. But I’m still programming in Flex (and in Python) and have been trying out ways to get them to work together. More details later on, including on my pet flex project that uses converted xml.

Categories
Blog News

MacHeist 7 Days Left

There’s still 7 days left over to sign up for the Macheist software package. For 39$ you get 600$ worth of software ! For me, it was worth it. Just hoping we can get ‘espresso’ as well…

Btw, using the link provided lets me earn some more software too.

Categories
Blog News

Extreme Sheep Hearding

Categories
Blog News

How to recover all pictures / photos on your iPhone when they don't show up on your desktop

I’ve added a howto on my iPhone page that’s been very usefull to me (source from TUAW) : sometimes the syncing between iPhone and iPhoto goes a bit haywire and you don’t see all the pictures on your iPhone that you need to download.

The above howto shows you how to solve that.

Categories
Blog News

Loewe commercial

This one really made me laugh !

Categories
Blog News

Skankiness levels…

The Onion Network…

Categories
Blog News

Now I Lay Myself Down To Sleep

Now I Lay Me Down To Sleep is a organization of benevolent photographers that are on-call for when the magic moment of giving life turns tragic and a new-born baby dies. When parents loose their child in the very early days, often there are practically no images or pictures.
Often they would have wished to have more than just those few pictures to remember him or her by, shot at a time when the panic and stress levels were very high.

Via this organization, these photographers can be called up in the middle of the night and come and assist the grieving parents in taking professional quality pictures of their beloved deceased baby.

NILMDTS is already active in several countries, but at this moment not yet in Belgium – there are no photographers listed.

Seems to me that we could use some of this care and attention here as well. I’m not a really good photographer, nor, being the father of two children myself, am I certain I could contain my emotions, so I’ll be trying to spread the worth of this organization to others who are.

Categories
Blog News

Disk Usage on a mac : a little bash can take you a long way

I’ve been looking for a free solution to see where all the diskspace on my iMac has recently gone to, and so far I found only a few apps. All are to be purchased, and for what wanted this was overkill. I just wanted a quick check on where the source of biggest disk space consumption lay : was it the music collection ? or the movie collection ?

So here’s a quick tip on how to solve this for free, no new tools needed, on a Mac or Unix machine : I introduce to you the ‘du’ command.

DU stands for Disk Usage, and in combination with some switches, it’ll let you quickly and (fairly) easely find out where all those mega- and gigabytes have gone to.

Here’s the line you can use all ready for you – I executed the command in my user directory :

du -d1 -kc | sort -nr

Written out it gives the following command : show me the Disk Usage only to the first Directory level (or Depth) and give (pipe) the results to the sort program and show the reverse output from big to small. If you just use du without sorting, you can add the -h flag to it : this will show you the size in Kilobytes, Megabytes or Gigabytes.

Which gives the following output :


334265428    total
334265428    .
168926644    ./Movies
46947780    ./Library
38262372    ./Music
21862824    ./Documents
17618688    ./Software
16472220    ./Archive
14429940    ./Pictures

This means that there’s 161 GB in my movie collection !! Obviously I need to check what’s going on in there. I can now perform the same command in the movies directory and have the information there to see which directory in there is the largest..

[Update] I just remembered a program I used to use on Windows, and lo and behold, it’s still active, and is multi-platform as it is written in Java. If you need more than that or want something more graphical or extensive, you can also try JDISKREPORT, which is is free to boot!