Unexpected 'eq' Encountered
**Error** Scene=Scene 1, layer=PROCESS - BUTTON, frame=1:Line 394: Unexpected 'eq' encountered if (socmigm22.text) eq 0.0) {
**Error** Scene=Scene 1, layer=PROCESS - BUTTON, frame=1:Line 396: 'else' encountered without matching 'if' } else if socmigm22.text > 0 {
Total ActionScript Errors: 2 Reported Errors: 2
Code:
if (socmigm22.text) eq 0.0) { label.custommixtitle22.text = " "; } else if socmigm22.text > 0 { label.custommixtitle22.text = (socmii22.text) + " " + " " + Number(socmigm22.text) / Number(100) + " MG"; }
I can't get it to work!
ActionScript.org Forums > ActionScript Forums Group > ActionScript 2.0
Posted on: 04-23-2007, 01:50 AM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Newbie: Unexpected '.' Encountered In Actionscipt 2
I am trying to use some code that works well when publised as actionscript version 1, but when I try to publish it as action script version 2. I get the following errors:
Quote:
**Error** Symbol=Side Slider, layer=Layer 3, frame=1:Line 3: Unexpected '.' encountered
startDrag("", false, _x, ../:top, _x, ../:bottom);
**Error** Symbol=Side Slider, layer=Layer 2, frame=3:Line 1: Unexpected '.' encountered
../:amount = ((((_y-../:top)/../:scrolllength)*../:height)-(_y-../:top));
**Error** Symbol=Side Slider, layer=Layer 2, frame=3:Line 2: Unexpected '.' encountered
setProperty("this._parent.text", _y, ../riginally-../:amount);
I suspect its something to do with the '../:' way of refering to things? has been depreciated in Actionscipt version 2. How can I get resolve this.
TIA
Jubal
As3corelib - JSON - Unexpected Encountered
Hey Everyone,
I've been scouring Google for an answer to my question and I can't for the life of me figure it out...
I downloaded the as3corelib to do some JSON decoding, however, I always get this error
Code:
Error: Unexpected c encountered
at com.adobe.serialization.json::JSONTokenizer/parseError()
at com.adobe.serialization.json::JSONTokenizer/getNextToken()
at com.adobe.serialization.json::JSONDecoder/nextToken()
at com.adobe.serialization.json::JSONDecoder/parseObject()
at com.adobe.serialization.json::JSONDecoder/parseValue()
at com.adobe.serialization.json::JSONDecoder()
at com.adobe.serialization.json::JSON$/decode()
at mtvn.toonimator::Toonimator/_configLoaded()
at flash.events::EventDispatcher/dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at flash.net::URLLoader/onComplete()
I am reading the data from a file called config.dat... which looks like this...
Code:
config={
"actors": [
"actor1",
"actor2",
"actor3"
],
"decors": [
"decor1",
"decor2",
"decor3"
],
"props": [
"prop1",
"prop2",
"prop3"
],
"music": [
["song1", "music1"],
["song2", "music2"],
["song3", "music3"]
],
"intros": [
"intro1",
"intro2",
"intro3",
]
}
I've tried changing the config= to nothing and I get "Unexpected encountered". Reading a flickr feed (http://www.flickr.com/services/feeds...ex&format=json - as a test) and I get "Unexpected j encountered"
Can someone PLEASE help me out here?
Thanks,
--d
[CS3] "Unexpected 'var' Encountered"
Hi guys. I'm trying to create a website entirely in Flash using a tutorial, and I copied the tutorial exactly. However, when I go to test it, it doesn't respond to my clicks. I'm pretty sure it's supposed to.
Anyway, my main problem is that when I enter script assist mode to check if my coding is all correct, I get the error message "Unexpected 'var' encountered" on line 4, with "var i = 1" highlighted in red.
Code:
sections.stop();
speed = 10;
target = menu.button1._y
for (var i = 1; i<5; i++) {
menu["button"+i].pageNum = i;
menu["button"+i].onPress = function() {
target = this._y;
sections.gotoAndStop(this.pageNum);
};
}
this.onEnterFrame = function() {
menu.current._y += (target-menu.current._y)/speed;
};
I looked over everything in the tutorial, and my code is exactly as it is supposed to be. I think my version is different from what the tutorial used, so that may be an issue. And maybe the tutorial is wrong. I have no clue.
The tutorial is located here(linking to the last few steps, including the script):
http://www.tutorialized.com/view/tut...-Website/34837
I'd really appreciate it if anyone could let me know what the problem is. Also, I'd appreciate it even more if anyone could link to any tutorials dealing specifically with creating web sites. I must not be able to search Google very well, since I can't find any good ones.
Thanks in advance!!
Has Anyone Encountered This?
I wrote yesterday about a .swf file that won't display after being FTPd.
The .swf file views in Dreamweaver, and in Flash Player, however in Fetch 4.0 , I slected the .swf, went to Remote>View Media File and nothing but a blank screen that is the size of the movie. Can I get around this? Is there anything that can be assesed by this behavior? I've tried everything, and I'm just about to rebuild the WHOLE .fla. I don't think I'm publishing it wrong, as I haven't changed settings from other files that have worked.
thanks in advance....
'else' Encountered Without Matching 'if'
'else' encountered without matching 'if'
Code:
on (release) {if (sally == false){this.gotoAndStop(2);}
}else if(sally == true) {
this.gotoAndStop(3);
sally = false}
what's wrong?
'{' Expected Encountered '{' - Why Is This?
HELLO
Im sure a lot of you have seen this script before. It is part of the swfobject1-4.zip which supposedly checks for the Flash Player version installed on the clients computer and upgrades it to the version needed to view the site if necessary.
PROBLEM
Every function of the other scripts in the pack seem to work apart from the ExpressInstall.as. When i check the code in flash it throws up an error on line 30 saying that '{' was expected encountered '{'. And it finds the '}' but doesn't anticipate it because the open wasn't found.
MY UNDERSTANDING
Seems mad, i have a small amount of experience with code and understand the principles of how action script works, but this seems strange to me and i don’t know why it wont read the '{'. i have tried moving it to different positions (below line 30 and changed the spacing between the end of line 30 and the bracket) and it still wont read the '{'.
The relevant line is highlighted in bold in the script below.
I hope this is clear and that someone has encountered this sort of error before, i would be grateful for your help. I have a client that is breathing down my neck. ;-)
Kind regards,
Paul Hudson
=====START=====
/**
* expressinstall.as v1.0 - http://blog.deconcept.com/swfobject/
*
* SWFObject is (c) 2006 Geoff Stearns and is released under the MIT License:
* http://www.opensource.org/licenses/mit-license.php
*
* Updated: 12-20-2005
*
* Use this file to invoke the Macromedia Flash Player Express Install functionality
* This file is intended for use with the SWFObject embed script. You can download SWFObject
* and this file at the following URL: http://blog.deconcept.com/swfobject/
*
* * SWFObject is the embed script formerly known as FlashObject. The name changed
* due to legal reasons.
*
* Usage:
* var ExpressInstall = new ExpressInstall();
*
* // test to see if install is needed:
* if (ExpressInstall.needsUpdate) { // returns true if update is needed
* ExpressInstall.init(); // starts the update
* }
* // these actions can be placed on a button for extra
* // functionality (see fo_tester.fla), or can be invoked at the start of the movie
*
*NOTE: Your Flash movie must be at least 214px by 137px in order to use ExpressInstall.
* Please see http://blog.deconcept.com/swfobject/ for other notes.
*
*/
var ExpressInstall = function ():Void {
// does the user need to update?
this.needsUpdate = (_root.MMplayerType == undefined) ? false : true;
};
ExpressInstall.prototype = {init:function ():Boolean {
if (this.needsUpdate) {
this.loadUpdater();
return true;
} else {
return false;
}
}, loadUpdater:function ():Void {
System.security.allowDomain("fpdownload.macromedia .com");
// hope that nothing is at a depth of 10000000, you can change this depth if needed, but you want
// it to be on top of your content if you have any stuff on the first frame
this.updater = _root.createEmptyMovieClip("expressInstallHolder", 10000000);
// register the callback so we know if they cancel or there is an error
var _self = this;
this.updater.installStatus = _self.onInstallStatus;
this.hold = this.updater.createEmptyMovieClip("hold", 1);
// can't use movieClipLoader because it has to work in 6.0.65
this.updater.onEnterFrame = function():Void {
if (typeof this.hold.startUpdate == 'function') {
_self.initUpdater();
this.onEnterFrame = null;
}
};
var cacheBuster:Number = Math.random();
this.hold.loadMovie("http://fpdownload.macromedia.com/pub/flashplayer/update/current/swf/autoUpdater.swf?"+cacheBuster);
}, initUpdater:function ():Void {
this.hold.redirectURL = _root.MMredirectURL;
this.hold.MMplayerType = _root.MMplayerType;
this.hold.MMdoctitle = _root.MMdoctitle;
this.hold.startUpdate();
}, onInstallStatus:function (msg):Void {
if (msg == "Download.Complete") {
// Installation is complete. In most cases the browser window that this SWF
// is hosted in will be closed by the installer or manually by the end user
} else if (msg == "Download.Cancelled") {
// The end user chose "NO" when prompted to install the new player
// by default no User Interface is presented in this case. It is left up to
// the developer to provide an alternate experience in this case
// feel free to change this to whatever you want, js errors are sufficient for this example
getURL("javascript:alert('This content requires a more recent version of the Macromedia Flash Player.')");
} else if (msg == "Download.Failed") {
// The end user failed to download the installer due to a network failure
// by default no User Interface is presented in this case. It is left up to
// the developer to provide an alternate experience in this case
// feel free to change this to whatever you want, js errors are sufficient for this example
getURL("javascript:alert('There was an error downloading the Flash Player update. Please try again later, or visit macromedia.com to download the latest version of the Flash plugin.')");
}
}};
=====END=====
Else Encountered W/o Matching If
why doesnt this code work?
my output is:
**Error** Scene=Scene 2, layer=Layer 1, frame=1:Line 5: Syntax error.
else {this.gotoAndStop(1))
**Error** Scene=Scene 2, layer=Layer 1, frame=1:Line 11: 'else' encountered without matching 'if'
else {this.gotoAndStop(1))
Total ActionScript Errors: 2 Reported Errors: 2
Attach Code
onClipEvent (enterFrame) {
if (Key.isDown(Key.LEFT)) {
_x--;
this (gotoAndPlay(2)) }
else {this.gotoAndStop(1))
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.RIGHT))
_x++;
this (gotoAndPlay(2))
else {this.gotoAndStop(1))
}
Problems Encountered With Preloader
Friends,
please check the URL http://personal.vsnl.com/daksh/preloader.htm
Note: after "Done" press "enter" key on the same URL address.
My preloader works fine, and loads all elements well. but after loading it don't jumps to the frame where it is assigned to move after loading process...my action script
on the preloader frame is
stop();
ifFrameLoaded(5)
{
gotoAndStop ("sound")
}
where "sound" is a frame label at frame no 10 where I've placed another movie clip.
your help will be appreciated...
Help Flash 6.0 R25 Has Encountered A Problem
Hello
I am having a problem with the flash program. each time I try to open flash file .fla I get this message
Flash 6.0 r25 has encountered a problem and needs to colse.
This problem happens with more than one file i tried to open.
what could be the problem and how to solve this?
thanks
[F8] Error 'else' Encountered Without Matching 'if'
Hi there...
I've found this script in a other forum. It should turn decimal values like 27.9 into 27.90 and 5 into 5.00, but I'm getting the error:
Code:
**Error** Scene=0_HOME, layer=Layer 19, frame=3:Line 24: 'else' encountered without matching 'if'
} else if ((i+1) == (strGetal.length-1)) {
Can any one tell what's wrong in this code?
Code:
strGetal = String(getal);
var returnval = "undefined";
for (var i =0; i<strGetal.length; i++){
if (strGetal.charAt(i) == ".") {
returnval = i;
}
}
if (returnval == 'undefined') {
strGetal += ".00";
} else if ((i+1) == (strGetal.length-1)) {
strGetal += "0";
}
Thnx,
Leon
SANDBOX/SECURITY? Bug With FLV Loading Across NAS Encountered
So I recently setup a Network Attached Storage device (very handy!), so I can have one hard drive act as a sort-of server for my various workstations around the office. Now a new (and extremely annoying) catch is that FLVs won't load into flash flvDisplay when attempting to test/access them during development. They'll load just fine if I take the directory and put them onto the local machine, but when attempting to access from the NAS drive, they won't load. The strange thing is that Flash will load FLVs across an internal windows network but for some reason there is a discrepancy when trying to do so through the Linksys NSL adapter and/or EXT3 formatted Seagate HD. (these devices do happen to utilize Linux formatted firmware).
If anyone has any idea about how to resolve something like this, I'd appreciate it so much. i'm hoping maybe there is a local Sandbox/Security tweak I could make, but i can't find any reference to this issue anywhere.
Thanks so much!!
Encountered Problems With A Hidden Button On A Loaded Movie...PLEAE HELP
Hi,
If anyone can give me a hint , anything ... on why is it that a loaded movie whose function is to scroll a menu ( it has a /tracker [hidden button])...is disabling my other buttons on the lower level. Before u rollover the menu, the buttons actually work..
I made sure that the button(hidden) is the same dimension as the scrolling menu.
I'm sure it has to do with the Drag...I am new at this ...actually I've tryied to work on another way to get a scrolling effect ...ja , no luck
If anyone knows of a thread for scrolling , that doesn't involve a hidden button ...please post it ...
Gracci tanti
[Edited by flashrican on 07-25-2001 at 09:08 PM]
Code To Resize Flash Content Based On Screen Dimmensions? Already Encountered Problems.
Ok Guys-
So I have put up a trial of my flash website-
www.nicksdesign.com/flash
I'm new at flash- as this is the first project I've done in flash, and the problem is...
I put the file in a simple HTML file in dreamweaver, and i published the files, tested them on my computer, and it's great- the size fits enough so that no scrolling is needed.
However-
I asked a friend to test it- and on his computer you are required to scroll both vertically and horizontally in order to see all the content on the 100% flash website.
My question-
Are there any codes that can resize the swf file or the HTML, based on screen resolution/browser [however- we tested in the same browser]
Any help would be SUPER appreciated
Best Regards,
Nick Smith
Well That Was Unexpected
im pretty new to using variables and i have a problem. this is the code im trying to use:
set Variable: "amount" = 100
now for some reason when i try to use this variable i get this error:
Scene=Scene 1, Layer=main, Frame=1: Line 1: ';' expected
set Variable: "amount" = 100
now from my understanding i somwhere have missed out a ";". but where have a missed it out and why am i getting this rubbish.
manyt thanks
Something Unexpected For Me
PHP Code:
import fl.controls.DataGrid;
import flash.display.MovieClip
var aBox:DataGrid=new DataGrid()
aBox.x=0
aBox.y=0
aBox.width=200
var s:MovieClip=new MovieClip()
trace(s.width +" " +aBox.width)
s.addChild(aBox)
trace(s.width +" " +aBox.width)
out puts are :
0 200
115 200
I am wonder Why the sprite size is not equal by aBox ?
Unexpected Mc Reload. HELP
I have a masked mc that I have scripted to goto and stop frame 2 so as the mask tweens, it appears to reveal the mc.
As the last frame of the mask tween loads, it also forces the masked mc to reload and reset to frame 1.
I can't figure out why or how to correct this issue.
Anyone experience this?
any ideas?
Flash MX && :unexpected
if(this.hitTest(_root.ship)) && (_global.second = false){
produces:
"Unexpected '&&' encountered
if(this.hitTest(_root.ship)) && (_global.second = false){"
why??????????????????
Unexpected Format On .FLA
Hi all, first post so be gentle !
I have been passed an FLA to edit, simple stuff really but author unknown by provider, i have tried to open in both MX Studio and MX 2004 and get a loud beep (turn down that speaker) and a grey box saying UNEXPECTED FORMAT - any ideas ?
There is an outside chance that the file is corrupt, but the included SWF works fine.
Cheers all.
Unexpected Fileformat Why?
Im trying to open a old site i did in 2004 (probably in an older Flash version) because i have tu update it. But i get the message "Unexpected fileformat" when i try to open the .fla's
Im aware of that this can hapen if you go from Newer to older versions but to my knowledge it shouldn't happen when you go from a older to a newer!!!???
Does annybodey have a clue??? should a try an older flash version!??
can i probably go around it somehow?, or is my problem something else!?
please help fast, have to resolve this otherwise im screwd! :-(
Unexpected XML Behavior
I have an XML file with a list of photos which I need to step through and put the data into a couple of arrays. I am using a for loop and nextSibling to step through the data, but it takes 2 iterations to get to the next sibling for some reason, and that is messing my script up. Any ideas?
Actionscript 2.0 code snippet:
var numOfRooms = parseInt(photoData.firstChild.attributes.num);
aChild=photoData.firstChild.firstChild;
for (var c=0; c<numOfRooms; c++)
{
trace("c="+c+". Current node: "+aChild.attributes.path);
photoPaths[c] = aChild.attributes.path;
photoDescs[c] = aChild.attributes.desc;
aChild=aChild.nextSibling;
}
XML:
<photos num="7">
<photo path="1.jpg" desc="This first room"/>
<photo path="2.jpg" desc="this is the second room"/>
<photo path="3.jpg" desc="This is the third room"/>
<photo path="4.jpg" desc="This is the fourth room"/>
<photo path="5.jpg" desc="This is the fifth room"/>
<photo path="6.jpg" desc="This is the sixth room"/>
<photo path="7.jpg" desc="This is the seventh room"/>
</photos>
Output Window:
c=0. Current node: undefined
c=1. Current node: 1.jpg
c=2. Current node: undefined
c=3. Current node: 2.jpg
c=4. Current node: undefined
c=5. Current node: 3.jpg
c=6. Current node: undefined
I am perplexed, maybe my data is not formated quite right? Thanks in advance for any help. I'm using MX 2004 Pro.
Unexpected Format
Hey,
I have been working with flash from vesion 4
(Not professional, just for fun)
Now I have some troubles with Flash MX 2004
Last nigth I reïnstalled my pc and reïnstalled Flash MX 2004
When I try to open a flash file that I made last week with Flash MX 2004, it gives the error: unespected format
The same error I get for all fla's made in Flash MX
Can anybody help me out on this one, cause I realy need to be able to open those files
Unexpected MouseOut
I have a menu item,...mouse over, and the sub menus will appear below. The architecture i was going for was,
1-mouse over main mc
2-mc adds an empty mc (a container) that will hold the submenu mc's
3-add submenu mc to container
4-user can mouse over submenu and select a submenu mc
the problem is a few: the container mc appears to be quite low, and then when i am to mouse over the subs (or the container) Flash responds as if it is a mouseOut on the main mc...any thoughts
i think this may be answerable (is that a word?) without the code, but i have attached the key methods as well
Code:
private function showSub(me:MouseEvent):void
{
var bx:bbb_Button=bbb_Button(me.currentTarget);
bx.upDown="down";
//find boxes below:
this.lowerGroup=extract(bx);
//add the submenus
var subContainer:MovieClip= new MovieClip();
subContainer.name="subContainer";
subContainer.addEventListener(Event.ADDED_TO_STAGE,positionSUBS)
bx.addChild(subContainer);
//start the flow:
bx.addEventListener(Event.ENTER_FRAME,roll);
}
private function positionSUBS(ev:Event):void
{
var bx=ev.currentTarget.parent
var subLength:Number=bx.xml.sub.length()
for(var y:Number=0;y<subLength;y++){
var subMenu:bbb_SubButton= new bbb_SubButton(bx.xml.sub[y].toString(),bx.xml.sub[y].attribute("url"))
subMenu.addEventListener(Event.ADDED_TO_STAGE,positionAndPrep)
ev.currentTarget.addChild(subMenu) ;
}
}
Where Did These Unexpected Errors Come From?
Hi,
So the project I'm working on has started throwing errors for apparently no good reason. It tells me one of the classes is trying to reference something it can't, but nothing relating to it has been changed. I haven't so much as touched the class files and documents that were publishing before (and haven't been changed) are now throwing these errors too. It also happens whether I use Flash 8 or CS3.
I've tried replacing the classes from a backup, just in case they'd got corrupted somehow, and clearing the ASO cache but to no avail.
Please, does anyone have any idea what might be happening?
Unexpected '/' In RegExp
Thanks for reading this, I am trying to match values from a texfile using Zinc 3.0 to import the text file into a string. If you read the following page,
http://www.actionscript.org/forums/s....php3?t=183562
it will explain what I've done so far. But I am working in AS2.0. So how can I solve the Unexpected '/' encountered that I am getting on this code?
ActionScript Code:
var DataArray = Data[1].match( /-?d+.d+w*/ );
trace( DataArray );
Thanks for your help.
Unexpected Results
I'm not getting the results I expect with this code: var numPoints:uint = selectedPieces * selectedPieces * selectedPieces;
What I expect is selectedPieces^3 what I'm getting is (selectedPieces^2)^2
I.E. if selectedPieces = 3, I expect 3 * 3 * 3 = 27; I get (3*3)(3*3) = 81 why?
Tween, Unexpected End
Hi,
I'm trying to simulate ocean waves for a presentation. In order to make it look random I've added 2 waves with a coded tween each. Once a tween is over it gets recalculated and moves to the other edge. And so and so.
The problem here is sometimes this tweens comes interrupted with no reason and neither a TweenEvent is dispatched. So... why does my tween end unexpectedly or how can I detect it in order to make it run again?
Thanks a lot
Unexpected Error
I imported a gif picture, and some frames became like this:
Wtf is going on??
Unexpected File Format?
Half the .fla files I download from flashkit or Macromedias own site, I try to open in Flash 5, I get an "unexpected file format". Anyone have any idea? Appreciate it.
Unexpected File Format
I have Flash 4, and am a new registered person in this FlashKit place. I tried to download a movie on this forum, that clearly states "V4" in black, but when I attempt to pull it up, my Flash 4 says "Unexpected File Format". Anybody have any suggestions for me? Thanks. (I feel like a real dumb Flash user that wants to become a pro one day. Fat chance I guess?)
Unexpected Mc Reload Problem
I'm scripting a masked mc to goto and stop frame 2,
but when the mask finishes it's tween to reveal the mc, it reloads the masked mc which has a stop on frame 1.
so I can see the mc as the mask opens and as soon as it stops, the mc goes to and stops frame 1.
Any idea how to overcome this?
'unexpected File Format'
Am a newbie with Flash 5 on a Mac, can anyone tell me why some of the .fla's I've downloaded from Flashkit won't open and show me the error message: 'unexpected file format'
thanks for any help
Unexpected File Format
I can't open a Flash MX file in Flash 5. When I am using MX, how do I save the file to work for Flash 5?
Unexpected File Format?
Hi there,
Total newbie here, just started playing around with MX and cant seem to download anything, well I can dwnld but when I try to open it Flash says "unexpected file format" Is cant just be a mx v f5 so where am I going wrong? Prob a dunce newbie question but, ya know.....
Unexpected Increment In Array
Hello,
I cannot understand why the value in test1 is being altered in this code, can somebody please explain
test1 = [[0,0],[0,5],[0,10],[5,0],[5,5],[5,10]];
test2 = new Array(test1);
trace("test1 * "+test1);
trace("test2 * "+test2);
trace("-----");
this.onEnterFrame = function(){
test2[0][0][1] += 1;
test2[0][0][1] >= 5 ? delete this.onEnterFrame : null;
trace("test1 - "+test1); // why does test1 change ?
trace("test2 - "+test2);
trace("=====");
};
/* Output
test1 * 0,0,0,5,0,10,5,0,5,5,5,10
test2 * 0,0,0,5,0,10,5,0,5,5,5,10
-----
test1 - 0,1,0,5,0,10,5,0,5,5,5,10
test2 - 0,1,0,5,0,10,5,0,5,5,5,10
=====
test1 - 0,2,0,5,0,10,5,0,5,5,5,10
test2 - 0,2,0,5,0,10,5,0,5,5,5,10
=====
test1 - 0,3,0,5,0,10,5,0,5,5,5,10
test2 - 0,3,0,5,0,10,5,0,5,5,5,10
=====
test1 - 0,4,0,5,0,10,5,0,5,5,5,10
test2 - 0,4,0,5,0,10,5,0,5,5,5,10
=====
test1 - 0,5,0,5,0,10,5,0,5,5,5,10
test2 - 0,5,0,5,0,10,5,0,5,5,5,10
=====
*/
thanks for any assistance,
Unexpected Pauses In Scenes ..?
I am having an issue with a FLA i am working on. The movie contains lots of scenes (by neccesity) and there are only simple goTo label commands in the movie. The playhead seems to stop at acertain poins, and in particular one scene (the menu scene). I have re-written and checked through the actions in the movie, but to no avail.
This movie was doing the same thing a while ago, but in a different place, and i changed the position of some of the labels.. and it seemed to just start working again. This situation didn't last long, as the problem started to crop up elsewhere??
The scene that is the problem will load, but it just stops as soon as it hits frame 1. I have tried different labels names, and going to a frame rather than a label, but it makes no difference.
Does anyone know if there is a way to force and a scene to play?? i have even tried putting 'play' actions on the first few frames.. but NO..
err... any help would be very much appreciated.
chunk
Unexpected Pauses In Scenes ..?
I am having an issue with a FLA i am working on. The movie contains lots of scenes (by neccesity) and there are only simple goTo label commands in the movie. The playhead seems to stop at acertain poins, and in particular one scene (the menu scene). I have re-written and checked through the actions in the movie, but to no avail.
This movie was doing the same thing a while ago, but in a different place, and i changed the position of some of the labels.. and it seemed to just start working again. This situation didn't last long, as the problem started to crop up elsewhere??
The scene that is the problem will load, but it just stops as soon as it hits frame 1. I have tried different labels names, and going to a frame rather than a label, but it makes no difference.
Does anyone know if there is a way to force and a scene to play?? i have even tried putting 'play' actions on the first few frames.. but NO..
err... any help would be very much appreciated.
chunk
_____
Unexpected File Formats
Hello!
I had a Flash movie that I made on a PC, then altered it on a Mac OS 10, and now it says "unexpected file format" when I load it back on my PC. Before, I did this with no problems. Any help on how I can get my movie back?
Thanks
Unexpected File Format
Hello,
I was working on flash mx (on a mac) at work and I sent the file to myself via email because I thought I could work on it at home (on a pc). When I tried to open it, it said unexpected file format.
Is there anyway I would be able to work on this file on my PC?
HELP Unexpected File Format
I have recently formated my HD, and have reinstalled Flash MX pro. I created files on my old HD in Flash MX pro, but here is my problem. Some .fla flies open up, but some keep saying "Unexpected file format". I tried opening the files in older versions of flash MX but same error! PLEASE HELP!
thanks
Unexpected File Format
every time i try to open a project that was not made on my computer, i get an error saying"unexpected file format". im using flash2004PRO on winXP home.
Unexpected File Format?
Please tell me why, oh WHY can't I openan MX file in the newere MX 2004? Every time I do it goves me an unexpected file format error message? What am I doing wrong? Do I have to import it? I simply can't believe that Macromedia would be stupid enough to have NO backwards compatibility in the new software. Please HELP!
Unexpected File Format ?
I don't understand why I am getting this error message when trying to open a .swi file. Nothing has changed since then (ie. no new updates to swish, etc) I have been working on the movie every day..and suddently today I get this message. I have a lot of time invested in this, I really hope it is not gone forever! Does anyone know what could be wrong/how I can fix this?
Thank you for any feedback.
-Sabrina
Unexpected File Format
Hey guys .. I am having this issue. I wanted to look at an FLA that someone posted here, but when I tried to open it (in 7.0), it says "UNEXPECTED FILE FORMAT." So I updated to 7.0.1, and now they work! But all my files that were created in 7.0 are now not openable!
Im going insane I just lost my whole homepage design, because no one is going to have v7.0 to download.
Unexpected File Format
what makes i cannot open the fla saved in my friend's flash? he use mac verison flashMX and i use mac and pc flashMX.
but the problem we are experiencing is
i cannot use my pc/mac flash MX to open his fla files
the alert dialogue is:
(pc flash MX)
unexpected file format
fail to open document
thanks who can help
I Get 'unexpected File Format' PLZ HELP
Hi,
I know most of you already passed trought that kind of problem before...
But i think my problem is a little different...
I made a tiny flash file on FlashMX(doesnt remember version) 4 month ago and now im trying to open it using FlashMX and im getting the error... UNEXPECTED FILE FORMAT...
what is wrong? it is possible i made it in FLASH 5, but doesn't Mx open flash5 file?
any help would be appreciated...
|