Two CS4's Produce Different Published .swf From The Same Fileset?

Dec 12, 2009

*Can two CS4's produce different published .swf from the same fileset?I have a flash suite written by a young man in China.When I test the .swf file in the suite it works fine.However I need to make some minor redesigns so I need to change the .fla file - but before I do I found that when I publish a new .swf from the .fla file (with all the necessary action scripts/xml etc in the right place) it doesn't produce the same outcome. Instead the navigation (next page, items per page etc) is missing.

When he does the same thing (I trust his integrity) he gets the new .swf with the navigation in tact.You can see the two outcomes at the web address below (mock data).There are no code changes, no library changes that I can find.So I thought maybe there is something about different settings or 'environments' that can affect the outcome?

View 3 Replies


Similar Posts:


Flex :: Use ANT To Produce .air File?

Apr 7, 2010

[code]There are no errors produced when this runs and a .air file is produced but when the .air file is double clicked I get the error message:"The application could not be installed because the AIR file is damaged. Try obtaining a new AIR file from the application author."

View 2 Replies

Media Server :: Cannot Get FMS To Produce DVR Stream

Jun 11, 2010

I have FMS 3.5 (Dev. Edition) and I'm trying to get it to add DVR features to an existing feed on another server (that I do not control). I've created the following application on the server:

var nc = new NetConnection();
var localStream = Stream.get("dvr-148");
nc.onStatus = function(info){
if (info.code == "NetConnection.Connect.Success" && nc.isConnected) {
trace("We are connected");
playVideo();
[Code] .....

The issue is, when I run this code, I get a "StreamNotFound", if i change the "0" to a "-1" in the play() call, I get the stream (as a live feed) but cannot seek() in this stream.

View 1 Replies

ActionScript 2.0 :: Use Methods To Produce On Different Formats

Oct 28, 2009

I've been pondering the various ways in which video's can be used in flash, and how to use these methods to produce on different formats.The company I work for, creates multimedia presentations on CD. These are designed primarily in flash, the presentation houses a video that plays from start to finish, coinciding with slides that appear 'on cue' with the various slides. the presentation controls also offer the user the ability to skip through the presentation.Now we upload these presentations to our testing site so the speaker in question can see and check the presentation, giving feedback on changes to slide order or skip positions and so on... After the go-ahead the presentation is then burned to CD and mass produced from here url...

1. When uploading these presentations to the net, when the user starts playing the video, but wants to skip onto a later question, say 'question 10'... there is a delay in which the video stops and then plays several seconds later (often MANY seconds later) I did some looking into this, am I right in thinking that using 'FlashServer technology' will solve this problem? I am presuming the timeline cannot skip directly to this part of the video and begin buffering from here on a standard FLV?

2. When burned to a CD, there is still a 'pause' when skipping to different parts of the video (using FLV), although the delay is not as long as that of the online version, it still presents itself as a problem in my own eyes, when skipping from 'question 1' to 'question 9' were still waiting several seconds for the buffer to catch up... Is there a work around for this to make the skips more instantaneous? like like a dvd/cd skip? Perhaps and embedded video setup?

View 3 Replies

ActionScript 2.0 :: How To Produce An Elastic Effect

Mar 22, 2002

I've seen it done on sites, and it's totally baffled me. And I'm not talking about those nifty effects where the line twists, and flexes when it bounces back to it's original size, I'm stuffed just with making a straight line have an elastic feel.Here's what I want to do.Have the bottom of the line anchored, and the top part linked to an object which I can move with the mouse. Moving that object will not only stretch or shrink the line, but it would also change it's angle based on where the object is.

View 4 Replies

ActionScript 3.0 :: Produce A Photo Gallery With Thumbnails?

Aug 20, 2010

I am trying to produce a photo gallery with thumbnails. I cant work out whats wrong i keep getting these 2 compiler error codes, 1021: Duplicate function definition & 1023: Incompatible override.

View 17 Replies

Professional :: Produce Interactive Page With Timeline?

Mar 30, 2011

Can any one tell me what s/w needed to produce [URL]

View 4 Replies

Flex :: Why Does Flexmojos Produce A Different Size Swf To Mxmlc

Oct 5, 2011

I am compiling a very simple app, Main.mxml:

<?xml version="1.0" encoding="utf-8"?>
<s:Application
xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark">

[code]....

This is quite worrying because I am developing in Eclipse (which uses mxmlc) yet my master build script (which uses flexmojos) is producing a totally different file.

View 2 Replies

ActionScript 3.0 :: Using A For Loop / Array To Produce Variables?

Apr 8, 2011

This must be simple but I am unsure of the syntax for the variables and the text fields. I have to produce 200 variable names and use the variables to populate text fields. I would like to use a for loop and possibly an array.Here's what I'm trying to avoid:

ActionScript Code:
var weekDay1Text = evt.target.data.weekDay1Text;
var weekDay2Text = evt.target.data.weekDay2Text;

[code].....

View 2 Replies

Testing Movie In CS4 Produce Nothing But A Black Window?

Nov 3, 2011

I followed this tutorial: [URL]but I work in CS4. I followed the tutorial to the letter, but apperantly there is something wrong... All I see when I test the movie is this:

Image2.png (69.97 KiB) Viewed 268 times

View 1 Replies

IDE :: Cannot Produce A Situation To Test This Script On Browser?

Jul 8, 2009

I have implemented a flash detection script (downloaded from [URL].. Because I have Flashplayer installed I cannot produce a situation to test this script on my browser. Has anyone an idea how I can test if this script works on browsers that have an old version or no Flashplayer installed?

View 2 Replies

ActionScript 2.0 :: Use Two Components To Collectively Produce A Result From An Array?

Jun 24, 2009

PHP Code:

function spaceCalc() {//selected item from a list trace(mainList.value); //selected item from a group of radio buttons trace(sizeGroup.selectedData);//trying to make it realise that mainList.value is the name of an arraytrace(mainList.value[sizeGroup.selectedData]);}

I'm trying to use two components to collectively produce a result from an array. This is what I have so far...

PHP Code:

function spaceCalc() { object = mainList.value;objectB = sizeGroup.selectedData; trace(objectA[objectB]);}

View 3 Replies

ActionScript 1/2 :: Produce Random Of Images In A Flash Movie?

Nov 14, 2010

I have used a code to produce random of images in a flash movie:
 
var ldr:Loader=new Loader();addChild(ldr);ldr.load(new URLRequest("ima00" + (Math.ceil(Math.random()*5)) + ".jpg"));
 
With that code, besides the random of images each time you acess the website (that is ok!), it keep changing the images while you still with the swf open. We would like to change it, making it to load a different image each time we get in the web site, but making the images to keep still, not changing while the film is open.

View 5 Replies

Professional :: Flash Cannot Produce Wingdings On Vista Machine?

Jan 17, 2011

Several months ago I created numerous flash files that use a wingdings checkmark. Recently I had to update these files, and now every single one of them displays as the Arial equivalent (umlauted u). It shows as the umlaut in FLA and in SWF. Selecting the unlauted u, looking at properties confirms the font is set to wingdings. Copying a wingdings checkmark out of another app and pasting into Flash, it immediately overwrites to the umlaut. In fact, changing it to any font just makes it a slightly different umlaut.

The easy question is, "What changed between when it worked, and when it doesn't?" and the answer is I'm not sure. It's the same Flash installation, same machine, same OS, etc. I've tested this with co-workers. Those who open the exact same file on XP machines see the checkmark. Those who open the exact same file on other Vista machines see the umlaut. I have an XP machine to my left, and a Vista machine to my right, and I'm seeing both a checkmark and an umlaut off the same FLA.

View 3 Replies

ActionScript 3.0 :: Testing Movie In CS4 Produce Nothing But A Black Window?

Nov 3, 2011

I followed [URL] but I work in CS4.I followed the tutorial to the letter, but apperantly there is something wrong... All I see when I test the movie is this:

I tried to change the publish settings back and forth, but using Flashplayer 8,9 or 10 and actionscript 2.0 or 3.0 doesn't make any difference.

View 1 Replies

Flex :: Air App Swf Assets In ApplicationStorageDirectory Produce Sandbox Violation?

Oct 21, 2009

I have an Air application that lets users import jpg, png and swf files and use them as the source to an Image which they can drag around a Canvas.he import function copies the selected file to an images directory inside ApplicationStorageDirectory.When I click on an Image that has an swf as its source, I get a Security Sandbox Violation (eg. SecurityDomain 'app-storage:/Project1/images/menuBarBkgd.swf' tried to access incompatible context 'app:/Main.swf'). My mouseDown handler doesn't get called so I can't select it and allow it to be dragged.

View 4 Replies

Actionscript 2.0 :: Produce An Image Gallery Exactly Like The Sliding Panels?

Feb 7, 2010

I'm looking to produce an image gallery exactly like the sliding panels here [URL]

The total length of the images are greater than 2880px (Flash's max stage width).

View 3 Replies

ActionScript 2.0 :: Produce A Smooth Transition When Roll Off A Button?

Jul 5, 2007

how to produce a smooth transition when you roll off of a button..

View 1 Replies

ActionScript 3.0 :: Produce A Simple Button With An Over, Upstate And Downstate?

Apr 6, 2009

I am trying out some code, which is supposed to produce a simple button with an over, upstate and downstate, but I only get a blank white canvas when playing the swf. I have the code added to frame 1 of the timeline. I am guessing I am doing something wrong, but don't get any errors.

[code]...

View 3 Replies

Professional :: Produce Some Very Simple Checkboxes To Insert Into An Elearning Program?

Dec 23, 2011

produce some very simple checkboxes to insert into an elearning program.The Checkboxes he created before he left are apparently overly complex and refer to _root and/or _level0, which is a no-no for the elearning software.I've done some web searches to see what I can find but honestly I haven't felt this stumped since first year calculus.

View 3 Replies

Actionscript 3 :: Run Executable Code That Accept Input Parameter And Produce Output, In Flex 3

Jun 24, 2011

I have written a jquery/javascript editor in FLEX 3 and actionscript 3. It has syntax checking facility. I will write a syntax checking parser either in C or in java. Here, I will include executable file only with flex code. That executable file should accept fully qualified file name as input parameter and it produce compilation result as output, that i need to display in flex.

Please anybody provide suitable solution that how to add executable file in flex, that will accept input parameter and produce output.

View 1 Replies

Actionscript 3.0 :: Produce High Score Table For Online Game Using Document In Same Location?

Jul 11, 2010

I've been looking on the net for some time now (about 4 weeks on and off) and i've come across various ways of producing high score tables for both online and offline games. My query is:

Is it possible to produce a high score table for an online game using a document in the same location as the swf without using a PHP, SQL or any of the like languages? Either using a text document, xml, another swf or something else like that?

View 1 Replies

ActionScript 2.0 :: Flash Menus - Produce A Flash Menu Similar To Those On 2advanced.net?

Sep 20, 2004

how to produce a flash menu similar to those on 2advanced.net and url....? Is each option (and it's submenu) a separate movie clip or is there some complicated actionscript involved? I am a fairly new flash user.

View 3 Replies

ActionScript 2.0 :: Typewriter Effect Here Is Very Fast - Much Faster Than When Use Onenterframe To Produce The Effect

Jun 14, 2005

check out: [URL] The typewriter effect here is very fast, much faster than when I use onenterframe to produce the effect. Does anyone know how this is done?

View 14 Replies

Professional :: Produce Swf Files From Video Files?

Oct 10, 2011

I have no experience with Adobe Flash because others have done this out of house in the past. (time has come for me to learn - quickly)
 
I need to simply create  "swf" files from a number of videos I have finished in Premiere Pro 5.5.
 
These videos are 800 x 600 videos that display at "point-of-sale".  The spec is swf and not flv.
 
(I do not need to do anything else in Flash apart from create the video file with the swf extension.)

View 2 Replies

Professional :: .gif Not Being Published Correctly?

Oct 30, 2011

I created an animation in Flash CS5 and tried to publish it as a .gif. For some reason,there's a dark box around the moving text, as you can see.

View 5 Replies

ActionScript 1/2 :: Key.getCode() On PC And Published .exe - .swf And .app

Nov 3, 2011

I have a kind of unusual problem... Im building a prototype for a UI wich you can navigate around in. And we use a mockup-prototype-model with a numeric keyboard built in and connected trough USB to fetch keypresses and use that as a joystick to navigate around and get a feeling how it would feel like to navigate around using a joystick in your hands. The problem is that it sends kind of unusual keypresses from the joystick. Everything works fine when I test the movie in Flash CS5 on a mac (cmd + enter). But not on a PC or in all of the published modes (.exe, .swf or .app). The codes I use in my if statements to navigate that doesnt work is:

[Code]...

View 5 Replies

ActionScript 2.0 :: Not Centered When Published?

Feb 23, 2007

I can't get my "dock" to center horizontally when i publish the movie for full browser flash(100%/no scale).It works fine when you test the movie. I don't get it. heres the code

Stage.scaleMode = 'noScale';
this.dockActions = function(label) {
switch(label) {

[code]....

View 1 Replies

IDE :: Png Loses Transparency When Published As Swf?

Dec 22, 2008

I'm working on a project where I want to use a transparent png, and when authoring in Flash CS3 (using actionscript 2.0) the png image appears transparent just as it should. However when I test it the .swf file loses the transparency entirely. The png image was saved for web from photoshop as png-24.

View 1 Replies

ActionScript 3.0 :: Changes To Code Not Being Published?

Mar 8, 2011

I'm working on a project in Flash Builder 4 and I've run into an odd situation. The changes I make to the code do not seem to be published in the swf that pops up when I build and run. I can actually delete the entire main class and (even though I get lots of compile errors), the swf will still run just fine. This is actually a project I imported after it had been setup by a previous developer. We may be using different versions of Flash/Flex Builder.

View 2 Replies







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