File Move...
I'm working on a flash file as part of a team, after fully completing one of the scene's i tested it and it worked fine. Moved onto the next scene i was going to work on and tested that to see how it currently looked and it gave this output:
Error opening URL "file:///four/Users/designunit/Documents/International%5Fdave%5FAccommodation.swf"
Found out that every scene apart from the one i had been working on gave a similar output... I am working on a different computer to the one that the file was created - but all elements that are contained within each scene have been imported into the library and not just externally linked to... Anyone got any ideas why i'm having this problem?
Thanks
FlashKit > Flash Help > Flash General Help
Posted on: 04-14-2004, 06:30 AM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
- How To Move SWF File To Back On HTML ?
- How Move Entire Scene To Different .fla File? Please Help
- If I Remove The Title Bar How Will I Move The File?
- Move Clip With External File
- Move Clip With External File
- How To Save A Move Clip As A .jpg Or .gif File Using Actionscript
- Move Flash Code To External File
- Problems /w A Simple AS 3.0 File Intended To Move A Cursor
- URLRequest In The Code. Not Seeing The Images If Swf File Move To Other Location
- Hyperlink In Loaded Text File To Move Timeline
- Images Move Left To Right, Fast And Slow On Mouse Move...
- Images Move Left To Right, Fast And Slow On Mouse Move...
- Images Move Left To Right, Fast And Slow On Mouse Move...
- Allowing The User To Move Move An Object (graphic Asset)
- Images Move Left To Right, Fast And Slow On Mouse Move...
- Move Movie Clips On Mouse Move (opposite)
- On Mouse Move, Move Movieclip Behind Mask
- Move Movieclip Vertically On Mouse Move
- On Mouse Move, Move Movieclip Behind Mask
- Preloader Progress Bar Not Move In IE, But Move Well In Firefox
- User Uploads Picture > Can Move And Edit Picture With Tools In Flash File
- Scene Move = Timeline Move
- Move Mc, Load Ext Swf, Move It Back
- Scene Move = Timeline Move
- MovieClip Move To Here-if Here Move Back
- Move With AS And Move Back Again
- Move On Mouse-move
- Move MC On Mouse Move
- Make One Box Move On Roll Over, Make Other Box Move On Click
- Make One Box Move On Roll Over, Make Other Box Move On Click
- Automatic Update In Flash File(.swf File) When There Is Any Change In A .txt File
- How Can I Move A MC With AS?
- Move To Top?
- Move MC With AS - Two Way?
- Ok A New One _x Move.
- X Move
- Move Pop Ups
- Move MC
- Move Everything Down
- Move From One Mc To Another
- On Key Move Help
- Move To The Right
- Move The MC
- How To Move Img From Right To L
- I Can Move It But Not The Way I Want...
- I Can Move It But Not The Way I Want...
- Move A MC
- Mc Won't Move
- Mc Move With AS
How To Move SWF File To Back On HTML ?
I have a swf on a page and over that i have some javascript menus (these menus drops down and expands on mouseover).. but after placing the swf file, and when i mouseover on the javascript menus, the menus expands but HIDES BEHIND the flash file !!??!!
Is there a solution for this.. should i include any actionscript on the flash file..?!
PLEASE HELP...
Thanks in advance..
If I Remove The Title Bar How Will I Move The File?
If I remove the title bar from my flash file how will I be able to move the file around the screen. You know, nothing to grab onto. Im guessing i can make a close button, have never tried but im guessing I can make it. So yeah anyone ever done this before?
Move Clip With External File
If i have a clip on the stage with an instance name, can it be moved its x,y position with an external .txt file?
Can anyone point me to a tutorial?
thanks
Move Clip With External File
If i have a clip on the stage with an instance name, can it be moved its x,y position with an external .txt file?
Can anyone point me to a tutorial?
thanks
How To Save A Move Clip As A .jpg Or .gif File Using Actionscript
i have a move clip which is running in the browser. i want a save button in that move clip, and when i press that button the movie clip should be saved as a jpg file.
Note: The move clip is running in the browser, and the size of the movie clip is 800X600 Pixel
Move Flash Code To External File
I want to move as much of the flash code to an external file to make my html page cleaner. I am in the process of moving all my javascript to .js text files, so I want to do the same for flash, anyone, need assistance please.
Problems /w A Simple AS 3.0 File Intended To Move A Cursor
I finally got it to stop giving me errors, but it's still not working. The cursor is simply not responding to any keyboard input. I'm sure it's an easy fix, I guess I'm just missing some crucial aspect. All help is greatly appreciated, thank you.
ActionScript Code:
package
{
import flash.display.*;
import flash.events.*;
import flash.ui.*;
public class Move extends MovieClip
{
public function hearKey (yourEvent:KeyboardEvent):void
{
stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey);
var cursor_mc;
if (yourEvent.keyCode==Keyboard.RIGHT)
{
cursor_mc.x+=5;
}
if (yourEvent.keyCode==Keyboard.LEFT)
{
cursor_mc.x-=5;
}
if (cursor_mc.x<0)
{
cursor_mc.x=0;
}
if (cursor_mc.x>400)
{
cursor_mc.x=400;
}
}
}
}
URLRequest In The Code. Not Seeing The Images If Swf File Move To Other Location
Using URLRequest and Timer class i wrote a program about slide show and all images are in the same folder. It is taking the images from the path and executing. it is executing good. but, If i move the swf file to other location my swf file is not showing images. Here is my code can any one help to see the pictures if i move the swf file to other location.
var screenBox:CustomBox = new CustomBox(125, 25, 350, 150, 0x6f6f6f, 0x4f4f4f);
addChild(screenBox);
var screenBlackShade1:CustomBox = new CustomBox(126, 27, 348, 15, 0x000000, 0x000000);
screenBox.addChild(screenBlackShade1);
var screenBlackShade2:CustomBox = new CustomBox(126, 159, 348, 15, 0x000000, 0x000000);
screenBox.addChild(screenBlackShade2);
var navigationTextBox:CustomBox = new CustomBox(125, 200, 350, 25, 0x6f6f6f, 0x4f4f4f);
addChild(navigationTextBox);
var imageIndex:Array = new Array("image6.jpg",
"image7.jpg",
"image8.jpg",
"image1.jpg",
"image2.jpg",
"image4.jpg",
"image3.jpg",
"image5.jpg");
bStart.addEventListener(MouseEvent.CLICK, startSlideShow)
function startSlideShow(evt:MouseEvent):void
{
var imageQueue:Timer = new Timer(3000, imageIndex.length);
imageQueue.start();
imageQueue.addEventListener(TimerEvent.TIMER, onImageLoad);
}
function onImageLoad(evt:TimerEvent):void
{
//trace(evt.target.currentCount);
var imageLoader:Loader = new Loader();
imageLoader.load(new URLRequest(imageIndex[evt.target.currentCount-1]))
imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onComplete);
}
function onComplete(evt:Event):void
{
//trace(imageLoader.content);
var image1:Bitmap = Bitmap(evt.target.content);
image1.x = 126;
image1.y = 26;
screenBox.addChild(image1);
}
Hyperlink In Loaded Text File To Move Timeline
Hi,
I'm using the kirupa tutorial "Scrolling Dynamically Loaded Text" and I have added a couple hyperlink to other website which work. I would now like to have a hyperlink in the text file that moves the timeline like a you would do on a button.
on (press) {
gotoAndPlay('contact');
}
Is this possible?
Thanx,
Images Move Left To Right, Fast And Slow On Mouse Move...
I'm looking for a tutorial or example of the effect when you have images all next to each other horizontally and when you roll the mouse oneway they move in the opposite direction and when the mouse is centerd on screen they slow down... Anyone have an example or tutorial of this?
Images Move Left To Right, Fast And Slow On Mouse Move...
I'm looking for a tutorial or example of the effect when you have images all next to each other horizontally and when you roll the mouse oneway they move in the opposite direction and when the mouse is centerd on screen they slow down... Anyone have an example or tutorial of this?
Images Move Left To Right, Fast And Slow On Mouse Move...
I'm looking for a tutorial or example of the effect when you have images all next to each other horizontally and when you roll the mouse oneway they move in the opposite direction and when the mouse is centerd on screen they slow down... Anyone have an example or tutorial of this?
Allowing The User To Move Move An Object (graphic Asset)
I'm working on a Flash presentation that will be an instructional tutorial. I'm teaching users how to navigate a map and I'd like to have them move a ruler or legend to measure distances between two points. Can anyone direct me to a reference source that can help me set this up?
I'm a fairly new Flash user but very eager to learn this technique.
Thanks,
Jerry Marino
Images Move Left To Right, Fast And Slow On Mouse Move...
I'm looking for a tutorial or example of the effect when you have images all next to each other horizontally and when you roll the mouse oneway they move in the opposite direction and when the mouse is centerd on screen they slow down... Anyone have an example or tutorial of this?
Move Movie Clips On Mouse Move (opposite)
Hi.
Does anybody have idea how this thing work (the cirlcles moves)?
http://www.templatemonster.com/flash...tes/15650.html
As well as the button gets closer to mouse when near the buttons.
I cant seem to find here .
Thanks very much.
On Mouse Move, Move Movieclip Behind Mask
people,
an example of my wanted work is on:
www.boss.com
(check an item in the collection)
the photo exactly scrolls behind the mask, how to do this?
i want to implement this, please help?
THNX already!
Move Movieclip Vertically On Mouse Move
Hi, i wondered if anyone would be able to help me.
I want to create the same effect as what is used on the URL below
http://www.jobescalator.com/vacancie...ctive_map.html (scroll over the map)
I want a horizontal bar to move up and down the page as and when my mouse moves.
Can anyone help?
Thanks
On Mouse Move, Move Movieclip Behind Mask
people,
an example of my wanted work is on:
www.boss.com
(check an item in the collection)
the photo exactly scrolls behind the mask, how to do this?
i want to implement this, please help?
THNX already!
Preloader Progress Bar Not Move In IE, But Move Well In Firefox
I have been in this problem for several days. I really got frustrated about it. Pls. anybody can give me some help.
I created a general preloader using movieClipLoader object and draw a progress bar using movieClip. I set the progress bar's progress by setting bar_mc._x = percentage, and created as a swf file. when test it , it works well, when open it using firefox, it still work well, can show the gradual progress in the bar, but if I using IE 6 or 7 to open it, it will not show the gradual progress , just jump from 0% to 100% after the whole file is completely loaded.
I saw a note about progress bar not show graduate progress in Flash Player 9, so I uninstall it and install Flash Player 8 again, it is still like that.
I really don't know what 's the problem. Could any friends give me some suggestion or idea, that will be greatly helpful.
Thanks.
User Uploads Picture > Can Move And Edit Picture With Tools In Flash File
Hello,
I am looking for some help with this. It seems like something that can easily be done.
http://www.sonypictures.com/movies/t...customization/
I am looking for the user to be able to upload their picture, and then the picture loads into the flash file. once in the flash file, they can move their picture up, down, left or right, rotates in a circle, and also click a button that makes their picture smaller or larger.
I am working on a project for my family, so they can put their picture with an actor and I wanted to know if anyone could point me in the right direction for this?
Thanks so much in advance.
Scene Move = Timeline Move
Hi,
I have found a very inspiring site which made in Flash http://www.burberry.com/UK/History/History.shtml
In the history part, when you mouse over on the scene, it is not only the scene is moving but also the timeline at the bottom.
Anybody can tell me how to do it?
Yours,
Bell
Move Mc, Load Ext Swf, Move It Back
anyone got any ideas on how i could move an mc across my stage, load an external swf once it hits the destination, then move it back to it's original location? i want to do this all in actionscript 1.0, sans tweening if thats possible. i've tried to set up a function for this with if statements and loops based on x position, but i've had no luck.
Scene Move = Timeline Move
Hi,
I have found a very inspiring site which made in Flash http://www.burberry.com/UK/History/History.shtml
In the history part, when you mouse over on the scene, it is not only the scene is moving but also the timeline at the bottom.
Anybody can tell me how to do it?
Yours,
Bell
Move With AS And Move Back Again
I have an mc called knas_mc that i would like to move something like 10 pixels to the left and 10 px up - a diagonal move. Thats not to hard but i want it to move back to its original location after it has "arrived".
I have this code that doesn't work - the problem with it is obvious but it shows what i want to happen:
Code:
MovieClip.prototype.moveIt=function(moveSpeed){
this.onEnterFrame=function(){
if(knas_mc._x<=271 && knas_mc._x>252){
knas_mc._x-=moveSpeed;
//trace(knas_mc._x);
}else {
if(knas_mc._x<=252 && knas_mc._x<268){
knas_mc._x+=moveSpeed;
}
}
}
Move On Mouse-move
peepz i have this script on a movieclip:
Code:
onClipEvent (load) {
_y = 20;
speed = 1;
}
onClipEvent (enterFrame) {
if(_y <= 0 or _y >= 297){
_y += 0
}else{
endY = 320-_root._ymouse;
_y += (endY-_y)/speed;
}
}
my problem is that if the movieclip is on 0 it stops and if i move the mouse it will not start moving again :?
please help?
Move MC On Mouse Move
Hi all . How to move this MCnavigation on mouse move. For example if I move my mouse to the right the MC Navigation text moves to the left and mouse to the left it moves to the right.
Example file: http://lex.zeelex.com/navigation.html
Is there any components can help me move it.
Make One Box Move On Roll Over, Make Other Box Move On Click
Okay here's the story: I have one box that moves the way I want it to on roll over, moves over my nav buttons and stays over them after you click one of them. The clicked button becomes where the box snaps back to. I have another box that I want to stay where it is until you click on a button. If you click on a button the box will move under the button that I have clicked on. Every attempt so far to get the second box to do that usually negates the other box's ability to do anything. Please, any help or suggestions?
Make One Box Move On Roll Over, Make Other Box Move On Click
Okay here's the story: I have one box that moves the way I want it to on roll over, moves over my nav buttons and stays over them after you click one of them. The clicked button becomes where the box snaps back to. I have another box that I want to stay where it is until you click on a button. If you click on a button the box will move under the button that I have clicked on. Every attempt so far to get the second box to do that usually negates the other box's ability to do anything. Please, any help or suggestions?
Automatic Update In Flash File(.swf File) When There Is Any Change In A .txt File
i have a site(intra) in my college for displaying notices.the clerk is completely ignorant of flash.he knows how to type the text in notepad.so whenever he changes the .txt file it should get updated in the flashfile automatically.
so anybody please help me in solving this problem..
kiran
[Edited by kiranwizz on 04-16-2002 at 05:25 PM]
How Can I Move A MC With AS?
I know how to animate a movieclip using tweening, but I would like to be able to create the same effect using actionscript. Basically what I need is an onClipEvent that takes the _x and _y position and then adds a specified number of pixels to each. Could anyone help me out with some code which would allow me to do this?
Move To Top?
I have a page which is very long and uses the browser scroll.
What I need to do is create a button that can get the user back to the top of the page.
But I've failed to do that and I've failed to find info about it.
If someone can explain me or direct me towards the solution I'd be highly thankfull.
thank's in advance.
Move MC With AS - Two Way?
Hi friends..
It Simple but..i think i'm overlooking somethin..!!
Im trying to move a MC horizantally (i.e x-axis) from left to right; i want to change direction once it touches border at right side and vice versa!!
Thanx in advance
Ok A New One _x Move.
Ok a new one, what is it that's rong with this code. I have wrote it to try and make this this (mc) move from up and then down on the _y axes. It moves alright ,I cant figure out why it won't move the other way. Put this on a movie clip and it will move on the stage but it won't move up, have i got the - +'s mixed up!!??
onClipEvent (enterFrame) {
if (_y<=340) {
s = true;
if (s) {
_y += 5;
} else if (!s) {
_y -= 5;
}
} else if (_y>=400) {
s = false;
}
}
[Edited by Jaffasoft on 03-21-2002 at 03:23 AM]
X Move
Hi,
How can I declare a variable, which for each "_x" or "_y" move of an MC, makes another one doe the same.
Thanx
Koen
Move Pop Ups
ok so i have the pop up window things right. like click on a button, a new window in flash opens up. what's the action script to click on the title bar and move the window? i use flash mx...i was also wondering how to do the close buttons on the title bars.
[Edited by [hxc]media on 09-26-2002 at 01:29 PM]
Move MC
Hello,
i have a MC and a Button in my stage.
i want the MC to move in the yy directon while the button is pressed and stop when the button is released.
How can i do this?
Thanks,
Miguel
Move Everything Down
Here is an interesting problem...only because I lost some hair and a few brain cells trying to figure it out..still haven't so I'm asking for some guidance. Here it is....
I have my flash movie with buttons and stuff on the stage. The entire stage is full from left to right and top to bottom. I have over 25 layers with everything imaginable. So someone says to add another item to the stage and add it to the top no less. So I increase the Movie demensions by another 50 Pixels to fit the other item. But when I increased the movie properties, the extra hight went to the bottom (From the bottom down). So I selected all and moved all the stuff down to make room. However..here is the problem..eventhough I selected all, and everything showed as if it were selected, not everything moved down.
In Firworks I can anchor the items on the stage either top, bottom, left or right. then when I increase the stage size, the items stay in place and the stage expands from the top, bottom, left or right.
In Flash, can I anchor everything and have the stage area expand from the top instead of from the bottom?
Sorry for the long explanation. I hope you didn't fall asleep reading it.
On Key Move Help
I asked a question about 2-3 weeks ago about how to make a ball move: left, down, right, and up. I asked if someone could give me complete details, step by step. I'm wondering if someone could do that for me since no one really did last time.
also, this link was given to me... what it means i have NO idea
http://www.kirupa.com/developer/mx/images/loadBar.gif
Move To The Right
I used this code to make my spaceship move, and shoot. But he doesn't moves to the right, but I did added the code to move it to the right...
onClipEvent(load){
moveSpeed=10;
_root.laser._visible=false;
laserCounter=1;
scrollx=_root.mainGround.ground._width/3;
scrollStart=false;
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.CONTROL)) {
laserCounter++;
_root.laser.duplicateMovieClip( "laser"+laserCounter, laserCounter );
_root["laser"+laserCounter]._visible=true;
}
if (Key.isDown(Key.RIGHT)) {
if (this._x<scrollx){
this._x+=moveSpeed;
} else {
scrollStart=true;
}
} else if (Key.isDown(Key.LEFT)) {
this._x-=moveSpeed;
}
if (Key.isDown(Key.DOWN)) {
this._y+=moveSpeed;
} else if (Key.isDown(Key.UP)) {
this._y-=moveSpeed;
}
}
onClipEvent (keyUp) {
if (Key.getCode() == Key.RIGHT) {
scrollStart=false;
}
}
Move The MC
here's the situation:
There's 3 MCs, which loaded with image using XML. I need to move the MC one by one. After the 1st MC move and stop at the target area, it pause for a second, and the 2nd MC move to the target.
this is the script:
Quote:
for (var j = 0; j<Cred.length; j++) {
blank["blank"+j].container.loadMovie(blank["blank"+j].menuImg);
}
// this script to move the MC
for (var k = 0; k<Cred.length; k++) {
_root.permission = false
blank["blank"+k].onEnterFrame = function() {
currentlocy = this._y;
differencey = targety-currentlocy;
accely = differencey/4;
this._y += accely;
};
// this script to pause
if (_root.permission==false) {
time.gotoAndStop(2);
}
}
the fact is The MCs move together not one by one. anyone know how to solve this problem ?
Thanks in advance
How To Move Img From Right To L
I have like, a serie of 30 images, in a movie.. and i wanna make them rotate from left to right as the mouse moves. When I move the mouse right lets say, the frames should go right, and the same when I move to left. Does anyone know how to do this? plz help, I gotta finish this work for tomorrow.
Max.
I Can Move It But Not The Way I Want...
I made the file below to show what I mean. It easier to see instead of axplaining..
but a little explaination:
if you click one of the buttons (red ones) the bar above should move to the number you clicked at. I can move it one way...but I can't reverse the move...
please help me out..
thnx
I Can Move It But Not The Way I Want...
I made the file below to show what I mean. It easier to see instead of axplaining..
but a little explaination:
if you click one of the buttons (red ones) the bar above should move to the number you clicked at. I can move it one way...but I can't reverse the move...
please help me out..
thnx
Move A MC
Does anyone understand how to write a script to move a MC like www.lennykravitz.com site?
Mc Won't Move
k i am making a preloader for my huge file i am making and the guy won't move when i press the arrow keys i put a/s on him but he won't move could it have to do with the 2 frame style preloader iw ill attach the preloader in mx and mx2004 please help and thanks
here is mx2004
Mc Move With AS
How can I make a mc move from right to left and then back to its current position?
I want the mc to move when I move the mouse over something
if(this.hitTest)
move left to a given point
}else{
move from current position back to original position
Do I need to set a boundary for the mc not to pass? Also how do I tell flash what the orignal position of mc is.
|