i have a flash interface to let users create nice design to post as a "Photo" content type node.
this part is done already and it works well.
what i would like to do know is to let people play with this flash even before they register.
only when they try to post their work they are finally asked to register/login.
there are 2 ways to do this:
ask user to register/login from within flash, even before the content is posted.
i dont like this because it means i need to rebuild login/register/lostPassword/etc within flash..
another way i would prefer is:
unregistered user i allowed to publish anyway, but the node is not published at first.
when we publish, we check: IF user is logged in, publish automatically.
if not, redirect to login, and only once login is successful the node gets published.
there is a step where i need to store the saved node ID temporarly somewhere, and us it to publish the content once user is loged in
is anywhere to do this easy?

Comments
an idea would be doing it by
an idea would be doing it by storing NODE iD temporarly in session:
creating 2 rules:
first rules would be:
event: on node save
condition: user is not registerd
action:
1. STORE NODE ID IN SESSION
2. redirect to login page
second rule:
event: on login
condition: THERE IS SOME ID IN SESSION
action: PUBLIC NODE[session:ID]
where actions/condition written in CAPITAL are those i'd need to add...
now, where can i add my custom actions to RULES?
any idea about this?
any idea about this?
Heya dude. I'm looking for
Heya dude. I'm looking for the same thing. I scouted all of drupal sites the last four days without finding anything. I take it you already found the solution after a year? Shed me some little light over here. Thanks.