ActionScript 2.0 :: Built In SharedObject Error With Browsers

Apr 8, 2009

On this website [URL] you will find a big flash applet at the top of the page. It has a sharedobject built in. Every time the applet goes to a new slide/scene (which it automatically does after x seconds), it updates the SharedObject so that once you refresh the page you end up at the same slide/scene again. Now the thing is that it does this only correctly in Internet Explorer.

Code:
var so=SharedObject.getLocal("pagehit");
if(so.data.pagehit != undefined){
/* Er bestaat al een cookie */
if(so.data.pagehit == "Scene 1"){
gotoAndPlay("Scene 1", 1);
};
[Code] .....

This is the code of Scene 1. Where you get forwarded to another scene if the cookie exist.
Code:
so.clear();
var so=SharedObject.getLocal("pagehit");
so.data.pagehit="Scene 2";
so.flush();
This is the code of the other scenes, ofcourse with a different scene number for each. It doesn't depend on the browser but on flash alone.

View 3 Replies


Similar Posts:


ActionScript 3.0 :: SharedObject Error: Error #2134: Cannot Create SharedObject?

May 9, 2011

Gives me this error:

Error: Error #2134: Cannot create SharedObject.
at flash.net::SharedObject$/getLocal()
at as3_shared_objects/showVar()

[code]....

View 2 Replies

Media Server :: SharedObject.NoAccess Error When Trying To SharedObject.getRemote?

Feb 18, 2012

I've installed developer version of Flash Media Server 4.5 and trying to get remote object, but no matter how I call my object all i get is this error .I've rad configuration guide and it told me that I should set StorageDir for shared objects, enable RPC (<RPC enabled="true">) and allow shared object (<Allow>users</Allow> in <RPC> - <SharedObject> tags)

View 1 Replies

Flash :: Flex - Running Good In Browsers But Error By Player Directly ReferenceError: Error #1056

Jul 13, 2011

I wrote a flex demo, customized spark TextInput skin with rounded corners and a search icon in it, like mac os x search box, it's running good in browsers (by Flash Player browser plug-in) either .html or .swf, but error by flash player directly.

[Code]...

View 2 Replies

ActionScript 3.0 :: Error #2134: Cannot Create SharedObject

Oct 7, 2011

I'm making a game. The game will have a save file. There are no compiler errors but when I run it, it throws the title error. I've isoalted the error to be from this line:

ActionScript Code:
var savegame:SharedObject = SharedObject.getLocal("New Atlantis: Project Phoenix");

When I export the SWF from Flash CS5, all I get is dots and this error message. Why can't I create a SharedObject on my own computer? I've tried on two different machines and ran it on Flash Pro, Flash Player and IE9. Nothing works.

View 3 Replies

Flex :: Error #2130 Unable To Flush SharedObject

Apr 22, 2010

I cant flush the shared object in my project. What can I do for that problem?

View 4 Replies

Professional :: Canceled Opening Page Error In All Browsers

Jun 7, 2011

I added a Flash animation to a web page, and instead of showing it, I get this Canceled opening the page error (that, or it just shows this big blank space) in all of the browsers I've tried (IE, Firefox, Safari, Chrome, Opera). Adobe says Flash won't play in a 64-bit browser. I made sure I'm using Safari's 32-bit mode; it still won't play. I empty the cache, reset Safari, still nothing. I admit to not having loads of Flash experience, but this strikes me as odd.g

View 1 Replies

ActionScript 2.0 :: Flash Audio File Works On Mac Browsers But Not Windows Browsers

Jan 13, 2011

I inherited a flash website about a year ago.. not sure what version it was originally done in. I've made changes on the model last year using CS3 Flash Action script 2, but don't remember the flash version when published. The audio in question is the music that plays in the background when you get on the website:

[URL]

When I changed the image of the model this last week using CS4, I published it as Flash8 actionscript 2... now, the music plays on Mac Safari and Mac Firefox, but not on the Windows versions of IE or Firefox..

this is the code called sound control

onClipEvent(load)
{
_root.soundstatus="on";
_root.mySound = new Sound(_level0);

[Code]....

then there's the stop() that's used when the music is toggled off..

I've tried updating the flash player in Windows to the latest release, and I even tried republishing as flash 10, just not sure where to troubleshoot this..

View 3 Replies

WebKit Browsers :: Error In Flex Webapp With TabNavigator Loaded Using SWFLoader?

May 19, 2011

I use a flex app (A) to load another flex app (B) using SWFLoader (both built using Flex Builder 3 sometime ago).Everything works fine as expected across all (IE, FF, Chrome, Safari) desktop browsers.However, if I use a TabNavigator within the flex app (B) then when you click on any of the tabs it unloads the flex app (B) and re-starts flex app (A). This behaviour appears to be limited to Webkit based browsers (Chrome & Safari) the rest of the browsers (IE, FF) work fine.

View 1 Replies

ActionScript 3.0 :: SharedObject Data - Arrays - Error #1069: "Property Undefined Not Found On BaseScreen And There Is No Default Value"

Mar 5, 2012

The player buys engines these are added to an array called _model.purchasedEngines. During save i'm trying:

[Code]...

View 14 Replies

Professional :: How To Built An Animation

Apr 22, 2011

I downloaded Creative Suite 5.0 Web Premium so I could built be an banner animation for my web site. There are three programs included in the suite, Flash Builder, Flash Catalyst and Flash Professional. Which one do I use to built and animation or do I need to use them all ?

View 3 Replies

Determine If IOS App Is Built With Flash?

Apr 5, 2011

Is FarmVille on the iOS built with Flash? And if so, how can you tell? Are there certain flags that exist in the form of certain files or magic numbers within the .app folder hierarchy?

View 3 Replies

Scrolling On A Flash Menu Built With XML?

Feb 23, 2010

I did a xml image gallery, with buttons for each image (using the duplicateMovieClip function + a for loop).Now i went to next step, I need to make a scroll for the menu, BUT, i don't have any idea how to set something to happen after the for loop is done.

My code so far:

Code:
stop();
var yPos = -10;
var depthCount = 1;

[code]....

Just for a simple test (since i noticed what i tried wasn't working well), I added a test movie clip and added a _visibile = false to be executed, i added it right after the closing of the for loop. I didn't had sucess thou, it happened before the loop .

View 1 Replies

ActionScript 3.0 :: No 'wiggle' Class Built

Jun 22, 2010

i've come to realize there's no "wiggle" class built into as3. i mean an affect similar to the wiggle command in AE. so i've been making my own and been banging my head on stuff the past few days cuz of this.i've got something!...but i can get the code to work ONLY if i make the constructor a method instead. but when i do that all the movieclips the method in the fla is applied to wiggles around the same place. see:URL...so i figured the way around this was to make the method a constructor of an object. then in the lfa instance a wiggle object to wiggle movieclips. but now im getting a ArgumentError: Error #1063: Argument count mismatch on wiggle().

View 3 Replies

Actionscript 3 :: BitmapData Built-in To Bitmaps?

May 25, 2010

i've used a Loader and URLRequest to download a .png from the internet and add it to my display list. since it's already a bitmap, does it have built in bitmap data already? or do i have to create the bitmap data myself?also, why does the same trace statement return false in the mouseMoveHandler when it outputs true in the displayImage function?

var imageLoader:Loader = new Loader();
imageLoader.load(new URLRequest("http://somewebsite.com/image.png"));
imageLoader.contentLoaderInfo.addEventListener

[code].....

View 1 Replies

Ios :: Localize App Built In Flash For Different Languages?

Jan 14, 2012

I'm currently working on converting an Android app I built natively as an iPhone app. I'm recreating it in Flash as I know AS3 but not Objective C. My original Android app is localized for 4 different languages (it's so easy to do with Android!) - and my question is - how would I do this for the iOS version from Flash? Would I be able to use separate XML files with all the strings in each language and load them in after somehow detecting which language the user's device is set to?I ended up using the following code:

var languageSettings:Array = Capabilities.languages;
var locale:String = languageSettings[0].toString().toLowerCase();

This gave me a 2-letter language code: 'en' for English, 'de' for German, etc. which I was able to use to load the correct xml file for each language.

View 1 Replies

ActionScript 3.0 :: Dynamically Built Calendar Using It?

Nov 5, 2009

I have been fighting with this for nearly a month, (My wife is tired of hearing about it) and have been avoiding putting the question onto this forum because it feels like it's just within my reach. But obviously it isn't.

I have the code set up to dynamically build this calendar. It works for the month we're in but attempting to go to the previous or next month does not work. Sometimes next month works actually.

Ok I just checked it and it really only worked for October and now it is incorrect for November. The problem is determining the first and last days (i.e. Sunday, Monday, etc...) of the month.[code]...

View 0 Replies

ActionScript 2.0 :: Editing Built In Classes?

Aug 5, 2005

I have been playing around with the tweening class, and wanted to make some tweeks to the motion inside the Back class, but when I tried added in some trace code it was like the /classes/functions were not being called?I went as far as renaming the easing folder to see what would happed, but nothing did, swf continued to play fine as if nothing had happened...are the classes it uses at run time in a different place?

View 2 Replies

ActionScript 3.0 :: Flash CS5 Built In Physics Discovered

Dec 27, 2010

You know how adobe promised us physics in flash?URL...If you've been wondering why they left it out, turns out they didn't.URL...

View 4 Replies

ActionScript 3.0 :: Built A Pre-Loader For My RSS Feed Project?

Nov 6, 2008

I have built a Pre-Loader for my RSS feed project. I have tried the example of a remote loader from the gotoandlearn() tutorials, but I need a ActionScript3 loader built in the same timeline.I have read and tried many tutorials on this but none work.All my information loads in Frame1 no matter how I set the linkage in my components or my global settings.

View 5 Replies

ActionScript 3.0 :: The CS4 Built-in Password Protection Safe?

Apr 9, 2009

I've spend the last 6 months developping a Flash (CS4 / Flash v10) game. As I'm now ready to publish it online, I would like to ensure that my actionscript code is safe. Hence my questions are: - Is the CS4 built-in password protection safe? (I guess not given that my actionscript still needs to be executed hence has to be readable for the client)
- What are the best options to further protect my code? (I guess obfuscation is the most common approach: which obfuscators are good?)

View 13 Replies

ActionScript 3.0 :: Fit A Pre-built Photogallery In A 800x600 Area?

May 27, 2009

I've downloaded a prebuilt gallery .fla (570x350) from this lesson I don't understand where to fix it to adapt on my site.I've copy the fotograms and the AS3 code from the original file and paste on the mine(I've used only 10images), it works, but I don't know where I can fix this problems:1) the gallery is over the menu and I would like to fit in the center2) if I click on the image (randomly) the result is the same, I've the pic over the menu, and I would like to center

View 6 Replies

ActionScript 1/2 :: Website Built And Buttons All Mapping?

Sep 29, 2009

I am have about 80% of a my website built and buttons all mapping where they should go, along with a number of XML driven BANNER ROTATORS/ACCORDIAN MENUS...ect
 
This site requires users to be signed in, which is done through a site previous to mine. Once they log in, they can click a button which then allows them access to my site.
 
My site has three "user levels" or "autentication levels" as we have "Managers", "Supervisors" and "Staff" levels.
 
For testing purposes, we have placed the below actionscript in the first frame of my project. The purpose of this actionscipt is to reference the "authentication level" that the user is using (as they will have already signed in so we are simply looking to obtain their "auth level").

[Code]...

View 3 Replies

Professional :: Update Flash Player Built Into CS5?

Aug 18, 2010

how to go about getting the Flash Player(s) that's built into the CS5 IDE updated? According to System.capabilities.version, it's running v10.1.52.14 which, according to this page on the Adobe site, says was a pre-release version of Flash Player and should not be used! It also seems to have an annoying bug where HTML tags are frequently shown as raw HTML, rather than being rendered, which makes testing stuff in the IDE a real pain.

View 12 Replies

Flash CS5 :: Cannot Handle Custom-built Components

Dec 10, 2010

A few days ago I decided I wanted to make my own drag&drop flash components, with inspectable properties. Since the documentation for flash components is so limited, I followed the workflow of some blogs I found around the web (mostly about CS3 components). In the end I managed to create a component that has a Live View, that gets a visual update whenever you change the properties (width, height, color..) ....in CS4 !
 
The problem in CS5 is that when I drag my component on the stage, the timeline of this movieclip starts playing in a loop. As you may or may not know, Components have 1 "Avatar" frame, and 1 "Assets" frame. So this looks kinda weird when that timeline plays.
 
There is always the possibility that I made a mistake, but when I download the source files from the blog post on the page  http://active.tutsplus.com/tutorials/actionscript/creating-flash-compo nents-for-distribution/comment-page-1/#comment-33865
the same thing happens.
 
When I then save my CS5 FLA as a CS4 FLA and try to use the downloaded component and my own, both of them work fine in CS4. So I think this might be a bug in CS5.? Which is pretty bad because I wanted to use these components in iphone development using the CS5 packager...I read somewhere that we actually use the UIComponent because it has no timeline, so I don't see how it's possible that it plays.
 
I uploaded my source files to [URL]

View 1 Replies

Flash :: Professional - Animation For Built-in Component

Nov 17, 2011

Lets make it simple. Lets say I have the stage with a combo box. I will have 100 frames with the combo box tweening from position to another. I easily can do it and see the animation of the combobox over the timeline. But when I create the swf file, the animation doesn't work. This also happens to all the other components. They don't accept any type of animation except if they are embeded in another movie clip.

View 6 Replies

Flash :: Find Out When A Property Of A Built In Type Changes To A Certain Value?

Jan 26, 2010

I'm having an issue with Movieclips inside my Swf resizing to the wrong dimensions. I'm currently tracing the width of the offending clip every half second, and I can see the value change to an incorrect size at some interval in the logged output. I really want to see what code is changing the width. My plan was to extend Movieclip, override the set width property, and dump a stack trace when the value set is too low. This isn't so simple however. Flash is complaining about undefined reference to UI components that are on the Movieclip fla. Is there a simple way to find out when/why this value changes? I cannot use a debugger.

edit: The reason I cannot just extend MovieClip is because I am getting my Movieclip object from Event.currentTarget.content after using a Loader. I cannot point my Test (extends MovieClip) object at this return value because it is illegal to do so.I have an app with lots of different windows. They all open to a size of around 750x570. One of these windows contains a FusionChart. when I load this, according to my trace, the background Swf I am using changes to a dimension of about 2712x1930. This doesn't make sense to me because it looks the same size as before and at those dimensions it wouldn't even come close to fitting on my screen.If I then close the window and open another, the new window is tiny, but says it has the same dimensions as the original windows (750x570).

It is almost as if the window is scaling to the huge 2712x1930 without showing a change in size, and then showing the next window (750x570) as a size relative to what the huge window would look like. If that makes sense...

View 3 Replies

Flex :: Modules Does Not Inherit Css Styles When Built With Ant

Nov 26, 2010

I'm creating a Flex 4 application which contains different modules in it. The main application contains a style sheet and the modules inherit the styles defined in this file.Its working fine when the swf's are generated using Flash Builder. But when I'm generating it using Ant script, the modules does not inherit the styles and everything looks weird.I added isolate-styles="false" as an additional parameter to mxmlc, but still its not working.

View 2 Replies

Html :: Built Fith Flex Builder 3 For FP 9.0.124 ?

May 17, 2011

So I got Bada Wave II.. It shall have FP9 and Adobe site thinks it has! but we see strange banner on top. So I thought - grate - we have it... And I built this fith flex builder 3 for FP 9.0.124 but when I go to it I see nothing but this

or ...

Code behind is simple:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:VideoDisplay id="va" source="http://imgproc.apmath.spbu.ru:4773/robot669394444.flv?action=read" autoPlay="true" [code]...

I also tried to compile it for FP 9.0.28 which was one of big FP game changers... So I whent to Google and found something that worked on Bada and at the same time was FP9!) It was not working 100% correctly as you can see but any way - I can operate with out navigation... Here are screensho. Note that flash content was unscrollable, unzoomable and browser about was showing ...

So at leasted it worked! So I descided to try and go into html... and modified my flex builder generated html into something as close as possible to that sample that worked and it shows this same wary FP9 logo thing...:... so It seems that I can not run Flex, mxml based projects on my bada... or can I?

import flash.events.SecurityErrorEvent;
import flash.media.Video;
import flash.net.NetConnection;[code].....

View 1 Replies

Actionscript 3 :: Playing Video In AIR App Built For Android

Jan 5, 2012

I'm building an app that plays video in AIR for Android.when I package the video into the apk and set the source like this: FLVPlayback(player). source = "clip.mov";It loads and plays, but as per this discussion, it's very jerky, and I'm trying to implement the suggested solution of loading the video from the DCIM folder instead of packaging it with in the apk.When I put the video into the DCIM folder (manually) and then call this:[code]
Nothing happens (it reports the path correctly as /mnt/sdcard/DCIM/clip.mov, which I can see is sitting in the correct place on the device's file system).I seems like some sort of permission thing, but I'm not sure what permission I'd need to set for this to function correctly.What's the correct methodology for loading video from the file system into FLVPlayback component that is slated to run in Android?

View 1 Replies







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