Actionscript 3 Simple Cookie - actionscript-3

I have a flash-based screen that includes a small checkbox indicating whether or not the user would like the screen to show up on future visits. The design is done, and now I just need some assistance with AS3 to make it functional.
The check box is using one of the built-in Flash components. If the box is checked, I'd like for the tutorial not to show up upon future visits.
Any help would be most appreciated. Thanks in advance!
D

I think this (http://www.adobe.com/security/flashplayer/articles/lso/) is what you are looking for.

Related

Windows phone 8 morse keyboard

I'm trying to develop my own app for windows phone 8, its an app to help visually impaired people text. I'm only starting off and im struggling to find stuff on how to create my own input method using a button so if the user taps or slides their finger on the screen it would print a letter into a text-box. Does anyone know if its even possible or any website to guide me in this task. thanks and any help would be much appreciated.
It is possible. Every UIElement has something like ManipulationStarted, ManipulationDelta and ManipulationCompleted events. You can play with them very well. Of course you need to program your own functions to recognize letters and so on.
You can read some information about that: http://msdn.microsoft.com/en-us/library/windowsphone/develop/ff426933(v=vs.105).aspx
I think you can find more articles if you search those events.

CSS3 HTML5 panorama viewer

I need your help for an university project.
I want to achieve the same result that you can see on this page.
I need to build a div with a panoramic image inside, that the user can navigate with the mouse controls and when an artwork is hovered/clicked, some informations about it pop out.
I have searched the web and there are a lot of plugins that should work well, but they don't give me the chance to implement the hover/click event to show the informations I want.
Some tutorials/suggestions about my problem? Do you think that this method could be a solution?
Thank you all!
Here it is, the solution I've been looking for!
http://www.openstudio.fr/jQuery-virtual-tour,67.html?lang=fr
Hope it helps anybody who has encountered the same problem!

Any ideas on how to create a flying tile 3D transition just via script/classes?

Right guys,
I have been looking all over the internet for a tutorial to which will show me how to re-create this effect on images...
http://flash-effects.com/tutorial-image-transition-flying-tile-3d/
I dont want to install these 3rd party components, because the project I am working on at present, may in future need to be edited by other designers/developers.
Is there anyway to do this just via scripting???
Any feedback would be appreciated, im ideally looking for a tutorial...
Most of what you're looking for is here. Then download the Bitmap.zip example and look through it. Although I will reiterate what the page says, you really should buy the book. It's quite good and teaches a lot about Flash in general, not just game programming.
You'd still have to figure out how to randomize the height and width of the pieces, add an onClickListener, and then move the pieces. From the example you provided it looks like they're just moving them back and forth in a z-dimension.
Hope this helps.

name of click-to-expand widget

This is kind of a strange question, but what is the name of the widget that you can click on to show/hide content? Usually they have a triangle that you click on and it changes orientation. It is a pretty simple widget to write, but a few days ago somebody told me the generic name, and for the life of me I can't remember what it is called. Does anyone know what I'm talking about?
Twisties, otherwise known as “Disclosure Triangles”

Image manipulation in ActionScript 3.0 : realistically editing faces

I am a flash developer who has worked mostly on small ActionScript projects, in particular websites, but I am dipping my toes into image manipulation with AS3. I have a project I'm working on to develop an application which would allow a user to upload their own picture into a swf, and then, using a slider, they can alter the image to make themselves look thinner or fatter. The condition is that it should require minimal user input - so ideally the most I could expect from the user would be a couple of control points identifying certain areas of the face in response to prompts e.g. 'click on the centre of the chin' and when the user clicks, the position would be stored, but this would need to be used sparingly, if at all.
So far, I have been able to use the FileReference class to handle the upload, and I am experimenting with using the DisplacementMap filter to edit certain parts of the uploaded image, but I am having serious trouble implementing this in a manner that would allow realistic deformation of the facial features in the image uploaded.
Is there anything that exists that might run along the same lines and that provides an explanation/source code I could look at to get a better idea of how to go around doing this? Or if there are any other ideas on how to manipulate and distort the image that doesn't use the DisplacementMap Filter?
Any feedback and help is greatly appreciated. Thank you for your time.
see http://sakri.net/technology/flash/flex/convolution_filter/ConvolutionFilterExplorer.html
(source code available)