Submitted by clemens on Sun, 2008/03/16 - 8:29pm
I want to build some flash games. Just for fun? Yes and no.
Yes because it's fun to learn ActionScript. No because I hope to make money some day.
Some pointers for my system setting which is linux
- ActionScript Language Reference
- a swf compiler and more
- swftools
My first trials ended with a moving square rotating on click ... not very ... but I have some idea how it works.
Submitted by clemens on Sun, 2008/03/09 - 5:43pm
What is the best way to translate a relational database into a drupal based site.
In looking for modules i ran into the next modules.
nodefamily looks promissing to navigate through nodes. It promisses to be a directed graph so it MUST BE cool ;-)
views_fusion makes it possible to create joined views "fuse multiple views into one" It looks unmaintained since may 2007.
nodehierarchy looks like nodefamily.
Submitted by clemens on Fri, 2008/03/07 - 1:47pm
It's amazing to see so many modules being converted.
I definitely needs to start converting my modules too!
It take quite some time to upgrade my modules. I guess coder.module will help a lot with all hints.
Submitted by clemens on Fri, 2008/03/07 - 10:18am
Submitted by clemens on Thu, 2008/03/06 - 2:45pm
Call me stupid but I thought it was easy. Building a new payment method.
I know drupal development a little. I read the core_systems and ubercart_hooks. No sweat developing this new payment method.
Submitted by clemens on Mon, 2008/02/25 - 4:57pm
I want to create a edit node into a block with ajax submit.
I wanted to try panels 2 minipanel with a node%/edit override together. But some hour later ... nothing found yet.
This raw view may be handy: http://drupal.org/node/48816
But why not using some php? Below is a raw version
<?php
global $user;
$sql = "select nid from {node} where uid == %d";
$result = db_query( db_rewrite_sql( $sql), $user->uid);
$row = db_fetch_array( $result);
if( isset( $row) && isset( $row['nid']){
$node = node_load( 30);
print drupal_get_form($node->type .'_node_form', $node);
}
Submitted by clemens on Tue, 2008/02/19 - 10:46am
Just installed some modules. It eventually becomes overwhelming. So many modules.
This is an installation while building a callcenter website.