Flex :: Set Values In Cookie And Get Values From Cookie Not Using With Shared Object?

May 18, 2010

I need to save email-id in my login form through the cookies. if I use shared object I am able to save but my requirement is need to save in cookies. How can I save? I got sample code from net. Attaching that code `package com {

import flash.external.ExternalInterface;

/**
* The Cookie class provides a simple way to create or access
* cookies in the embedding HTML document of the application.

[Code].....

View 1 Replies


Similar Posts:


ActionScript 2.0 :: Local Shared Object Or Cookie To Track Time

Jan 28, 2010

I need to make a local shared object (or javascript cookie function- below) that I can use to calculate the time since an ad was last loaded. It's an expanding ad, and I only want it to expand once every 2 hours. (Trying to keep the expanding-annoyance to a minimum!) I understand the basics of creating an "lso" but the action script for retrieving the time, placing it as a variable in the lso, and later retrieving it to figure the time is well beyond me. I considered a normal browser cookie, set to delete after the session, bypassing all time calculations... Forcing javascript to create a cookie ONLY when flash tells it to (after the ad has expanded) is tripping me up and creating a function to check for the cookie on the first frame to decide whether or not to continue is also beyond my simple animation skills.

View 0 Replies

Professional :: Store And Read 'cookie' Or Shared Object For A Mute Button In Flash?

Jun 10, 2010

I have only ben using flash for a little while and do not know a lot about action scripts.I have used a flash file found online which plays music and has a mute button, but at present it plays the music when the page is viewed at another time.So need to have a cookie or shared obect as i have been told it is, so that when the music tries to play it can read the mute state cookie to decide if it should play or not.i see i can not upload a file so have uploaded to the following location

View 1 Replies

Flex :: Get Property Values From Shared Object In Client's Load Event?

Mar 5, 2010

I am using shared object to share data between two users. First user connect to shared object and set some value in shared object. Please consider that second user has not connected with the shared object yet.Now when second user connects to the server and try to get that property set by first user, he could get shared object but could not get properties of Shared object set by first user. I observed few times that Second user can get these properties within "Sync" event between two users. But I would like to get these values for Second user in any stage (i.e. in load event etc.). Whenever Second user tries to get the property of Shared object, the object will reset the actual property value and then return reset value.

1) Is there any way to get all the properties of shared object before sync event called, as I want to get it immediately when second user connect to the application and perform next task based on the values stored in shared object.

2) Is it possible for second user to check whether any property has been set by first user? So that second user can use the property instead of reset it.

View 1 Replies

ActionScript 2.0 :: Using Shared Cookie To Save Frame Position Inside Movieclip?

Feb 16, 2010

i have a pie chart with clickable sectors. when you click a sector it jumps to the next frame on a movieclip and changes colour. I want to use Local Shared Object to save the frame position so when i come back to the swf later on the sectors of the pie chart are saved.

View 16 Replies

ActionScript 3.0 :: On Entering First Frame, Get Shared Object Values, Enter Into Variables

Apr 7, 2011

I am trying to create an AS3 Fla to score a quiz's results. The quiz is a separate swf that stores its results to a shared object ("G1"), and both the quiz swf and this new scoring swf would reside on the same website.
 
I've tried scripting the AS3 in the new scoring Fla but I keep getting error messages.
 
So far, here's what I have that doesn't work.

[Code]....
 
The goal is to open the scoring swf, populate some variables with the values from the SO, then (not yet tried in the script) apply some if/else conditions to show specific results based on scores.

View 3 Replies

Flex :: How To Access Cookie

Aug 9, 2010

I made a blog widget in flex. I need manipulate cookie in my widget which is added to my user's blog. But under some circumstance, some blog hosts forbid accessing to javascript, so i can not access cookie in flex by externalInterface. Does anyone know how to access cookie in this context?

View 3 Replies

Java :: Maintain Last Cookie Value In Flex With Jsp?

May 31, 2010

my login form in flex when I login I have created a cookie in jsp like this name setValueCookie.jsp [code]through the httpservice value i am getting but if i open a new window or any new tab cookie value is not getting how can i solve this?

View 1 Replies

Flex :: Retrieve Cookies From The Cookie Space Used By AMF?

Sep 16, 2010

I have a flex app that uses AMF to talk to a Spring Java backend. How do I get the values of cookies that have been set by the server and are being sent back by AMF?

View 1 Replies

AS3 :: Test Services With Cookie Based Sessions In Flex?

Jul 6, 2011

As the title indicates the question is in regards to the service layer of a flex application. Specifically in a test case class. To call the services the user must first authenticate through an html/CF based page. Once that's done and the authentication has occurred the user is directed to the html page with the flex application embedded in. Once authenticated the server side CF code writes a cookie to the users computer. This cookie is then read by the flex app and is required for the flex app to make calls to the CF services.

The question is: how should this be handled in a test case class for the service class in the flex app? The following steps need to basically take place: use some account data to hit the server and authenticate, the cookie then needs to be written (which it will already), then the test case needs to pick up the session id from the cookie and pass it to the service call within the test case. That just all seems like too much for a test case class.

So, how is this type of thing usually handled. From what I gather it's typical for web service calls to require a session id like this.

View 1 Replies

Flash :: Create Cookie Through Flex / Coldfusion That Is Readable By Another Template?

Feb 4, 2010

Inside a flex app, I have a user login. The login calls a ColdFusion function as a remote object which authenticates the user and, if applicable, returns their id and access level. This works fine, but now I'm at the point where I want to also create a cookie for another ColdFusion template (called from fileReference.upload()) to be able to access later. I have tried several different methods for creating the cookie -- cfcookie, creating a cookie with JavaScript inside the ColdFusion function, and creating the cookie with JavaScript with an external interface once the coldfusion function returns to the flex result handler. All of these have been tried with a plethora of options regarding expiration, path, and domain tags.

[Code]...

View 1 Replies

Flex :: Security - Blaze DS Not Passing OpenSSO Authentication Cookie?

Jun 15, 2010

I have a set of RESTful web services. These services are protected on a Glassfish server by OpenSSO. When I attempt to call the RESTful services directly from a browser, OpenSSO intercepts the request, then forwards the request to the REST service once the user's credentials are authenticated. OpenSSO utilizes a session cookie on subsequent requests (until the session is invalidated) . I'm sure this piece is working correctly.We'd like to call these services from a Flex client. In order to enable PUT and DELETE operations, we set up BlazeDS to proxy the RESTful requests from the flex client to the REST service. When security to the RESTful services is disabled, this piece works great.

Now we're trying to secure the entire application. We've placed the Flex SWF into a war and deploy to Glassfish. We've placed security around this resource and when a user attempts to download the SWF (through an HTML link in the war), OpenSSO intercepts the request, then forwards to the application on successful authorization (just like it does for the RESTful web services).The problem is - the RESTful calls made by the Flex application (via BlazeDS) are failing. OpenSSO seems to be intercepting these requests as well and again asking for the users credentials. It doesn't seem the authentication cookies are being passed to (or maybe by) the BlazeDS proxy.

View 1 Replies

Flex :: Air - Cookie - Storage - Remember A Simple Value Like Date When The App Was Last Opened

Feb 14, 2012

Does an AIR app built with Flex have something similar to a browser cookie? I want the app to remember a simple value, like date when the app was last opened. I'd rather not create a SQlite database just for this.

View 1 Replies

Flex - Run Flex/BlazeDS Without Dropping A JSessionId Cookie?

Jul 20, 2011

The question says it. Does anybody know the answer to this? We're running into problems when 3rd-party cookies are disabled.

View 1 Replies

Flex :: Listen To Any Change In The Values Of An Object In Actionscript

Jun 4, 2010

I have an Object in actionscript which has a few dozens of properties each of which is defined to be bindable and has its own change event. I would like to listen to any changes made to this object without having to add a listener to all of its properties. Is there a way in actionscript using which I can listen to any change in the values of an Object ?

View 3 Replies

C# :: .net - Pass Cookie To AxShockwaveFlash?

Dec 12, 2009

I'm developing a video player using WPF and AxShockwaveFlash.

It has following steps:

find video from a web service. it acquires information of each video. pass video information to AxShockwaveFlash and embedded flash video player. embedded flash video player starts streaming download from web service.

I have a problem on step 4. Step 1-3 shares a cookie (CookieContainer), but step 4 can not. How can I pass its cookie to embedded flash video player?

View 2 Replies

Show A Cookie Value On Flash?

Dec 15, 2011

I have a question that I cant quite start.I have a web site that record some cookies: name, age, sex, etc.

I would like to know if it is possible to create a flash banner that display this information, like: hello [name], how are you doing today?

I was searching online and everything that I found needs something outside flash to work.

Is that a way to create a flash that can read cookie's values and show then?

View 2 Replies

ActionScript 3.0 :: How To Read Cookie

Jan 9, 2011

I already tested SharedObject class in native actionscript trying to get the arbitrary name of cookie from local system but it doesn't work.For your information, I am working with cookie returned from user's browsing sites (not my own sites). That's is to get some cookie values resulting from browsing of site A from user in order to work with my own application.

View 0 Replies

ActionScript 3.0 :: Flash Look For Cookie?

Mar 15, 2011

Long time leecher, decided to join in and ask a question. I have a video auto play on a site i am working on [URL].. Issue is, it auto plays every time the page loads...

Is there a way for me to set a cookie that flash could look for and either choose a welcome back video or not auto play video?

EDIT: SharedObject is awesome. Ignore this i did it.

View 0 Replies

ActionScript 2.0 :: Cookie Is Not Cleared

Mar 5, 2009

I have developed a flash application with .NET. That application is something like image cropping. That is user can upload any image from anywhere. after he cropped that image we save that particular cropped image in .NET. The problem is the cookie set into the Temporary internet files. That is If I have uploaded a image for cropping then I have to save that cropped image. Once again I have upload the new image for cropping. But in flash that new uploaded image file is not displays. It always displays the image file which I was uploaded at first time. This was occurred in both IE & Firefox browsers.

View 1 Replies

Flash8 :: Get Session Cookie In Flash?

May 13, 2009

How can I retrieve a session cookie inside Flash ? ($_SESSION['member'])

(I am using Flash 8 and ActionScript 2.0)

View 3 Replies

FLVPlayback And Cookie State Check

Aug 30, 2009

I have been at this for 5 hours and I'm about to pull all my hair out.I have a seemingly very simple problem that I can NOT find any reason for why it's happening.I built a simple flash doc that has three distinct pieces in it (2 frames):

1) A FLVplayback component on frame 1 - (working)

2) An AS listener that checks for end of Video and progresses to 2nd frame - (working)

3) a cookie script that checks to see if the video has been played and if it has skips frame 1 and goes to frame 2 (also working)

The video successfully plays the first time and moves to the 2nd frame. But, when the document is reloaded it checks the cookie (finds it) skips the 1st frame, moves to the 2nd BUT it does NOT display ANY of the elements in the 2nd frame. NOTHING!! There is a simple graphic and button that allows the users to replay the video (by simply clearing the cookie and going back to Frame 1) but they do not show up. (However, they DO show up if the video plays first and moves to frame 2 via the listener, just not via the cookie).I have placed traces in each frame to show if it is indeed arriving on frame 2. It is, but NOTHING shows.I have rebuilt the FLA step by step testing each time and have found that it works perfectly, right up until the FLV Component is dropped in. Then it moves to the 2nd frame and shows NONE of the 2nd frame elements. URl...

View 1 Replies

ActionScript 3.0 :: Read The Cookie Directly From The Swf Now?

Feb 22, 2010

I remember that in flash 8 you needed to read the cookie via php script to get it into flash. Has that changed in CS4? Is it possible to read the cookie directly from the swf now? If not how does one go about getting cookie information into flash CS4?

View 1 Replies

ActionScript 3.0 :: Disable Swf Based On Cookie

Mar 17, 2011

I have js all set up and tested to check for cookie. If cookie set I ant to disable the swf.
 
The code in my AS is as follows::
 
import fl.video.*;import fl.video.MetadataEvent;import flash.external.ExternalInterface;import flash.system.fscommand;//-----------------------------------------function

[Code]....
 
and have this in the init() called by page load it does not work. I was going to use the play variable to kill the loading of the swf but can't figure out how best to make that work.
 
So,  my questions:
 
Best way to facilitate this action:
 
1. In AS by calling the function by:
 
a. Timeline
 
b. AS callback from <body onLoad
 
2. Using js to call the fucntion in the external js and then blocking loading of the swf  in the html page.
  
I don't want to spend anymore time exploring alternatives as this is very frustrating.  I am assuming that 1.b is the best route.

View 3 Replies

ActionScript 3.0 :: Passing A Cookie With URL Call?

Aug 1, 2011

Is it possible to pass a cookie with a url call?

View 3 Replies

Actionscript :: Session Id Or Cookie In Flash?

Jul 25, 2010

How can I distinguish different users with actionscript, or is that possible?

View 1 Replies

Flash :: .net - Read Cookie From Javascript Or ASP.Net?

Oct 27, 2010

We have a flash video that was created for our project, we dont the source so we have to work around the compiled flash file. We are going to host the video on our domain and the video creates a sol cookie (flash cookie) file to store how far the user has proceeded though the video. So my plan is to access this cookie to see how far the user has progressed and then fire an event when they have finished the movie.

I have been googling for some help but haven't found to much. I have found out that its possible to do in javascript and I have found some .net sol file viewers but haven't seen any examples I can get my mind around.

I have watched the traffic that gets created with fiddler and every time the next button is clicked a new request is fired with the swt file that is being accessed. I would also be happy with tracking every time one of these swt files has been accessed as well.

View 1 Replies

Read An HTML Cookie In Flash?

Dec 6, 2010

I'm hoping to get pointed in the right direction here. The problem I'm having is trying to figure out how to read an HTML created cookie in Flash. I have a video player that should autoplay once in a 24hour period, the next day it should autoplay again for the end-user.This is what the script on the HTML page looks like that displays the Flash player and the cookie:[code]I did some searching and found this Have a HTML page play Flash movie only once (not when revisited...) but again this is just a Flash function which never allows for a restart in a certain time period.how do I read that var x(cookie) in Flash?

View 3 Replies

Flash - Cakephp Authentication Cookie?

Dec 12, 2010

i have a flash application connected with a script on a remote server(X)different from the server hosting the website(Y)the application on server X needs to get some user information so i need to identify the user by what i have in the cookie

remote server X will get those informations from server Y is there any way i can get the user name or user id from the CAKEPHP cookie var?the authentication is the one found on cakephp website

[flash]----request---->[server X]----request---->[server Y]----response---->[server Y]...

View 1 Replies

Flash :: Method To Retain Cookie?

Jul 10, 2011

I use an application which uses flash cookie to store some important information. This information is critical and should not be deleted. But I have observed that the flash cookie or the shared local object is getting deleted under the following situations. When the local history(including cookies) are deleted by the browser. When flash is upgraded in the system.

This is adversely affecting my application. Please let me know, if there is a way to forcefully retain the 'shared local object' by placing some kind of lock on it. It will be better if this can done programmatically.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved