I am trying to create a system of applications where the user must perform some actions in a flex applications, then when that is completed the user will be taken to an Aviary application to make a drawing or edit a drawing. When done with that a php file will be called that saves the Aviary drawing on my server and finally a new Flex Application will be opened that will import the image created in Aviary.
So there is basically 3 steps: 1. Do something in Flex App (information from here must be saved/stored) 2. Draw image in Aviary (image will be saved on my server) 3. Import image in new Flex App So the problem I have is how to manage the session between the different steps. How can I associate the information from the first Flex App with the URL information from the saved Aviary image to import all that into the last Flex App to be used there? I have looked into using php sessions but I am not familiar enough with php to figure it out. I found that a new session was started in each step so it wasn't possible to retrieve values stored in other sessions and it wasn't clear how to retrieve the session id from the Aviary application. I looked into using SharedObjects but again it wasn't clear how to store information from the Aviary application in the SharedObject. Kristian

