Time Management
Question not so much related to a design technique but more broad into working with flash as a career. I am the web designer for my company and have started to work outside my company creating websites for other clients. I know that many people do freelance work on the side and was just wondering if anyone can give me some suggestions on effective time management and any tools you use to perform well for your employer while still having time to create on the side. Any comments are appreciated. Thanks.
General Flash
Posted on: Mon Nov 27, 2006 9:53 pm
View Complete Forum Thread with Replies
Sponsored Links:
Url Management
i'm wanting to do a photo gallery website, but would like to do it with flash.
ie, have a bar of thumbnails, user selects one, and it loads into the screen.
However, my concern comes to url's. it would be nice for people to be able to bookmark certain images.
For instance, on my current site, I have domain.com/33/ and that will bring up a picture out of my database with an id of 33.
I'd like to be able to keep a similar kind of functionality. Ie, url's map to certain images. However, my concern is that Flash can't do that (i think). So i thought I'd come and ask to make sure that this is the case, or if i am wrong.
I know how i can do this with server programming, but my concern comes with once the user is on my page and chooses a new image. Is the only way to reload the entire page (and all the thumbnails)? Or is there a way to change the URL, and main image, but leave the menu/thumbnails untouched?
thanks in advance!
tyler
View Replies !
View Related
Url Management
i'm wanting to do a photo gallery website, but would like to do it with flash.
ie, have a bar of thumbnails, user selects one, and it loads into the screen.
However, my concern comes to url's. it would be nice for people to be able to bookmark certain images.
For instance, on my current site, I have domain.com/33/ and that will bring up a picture out of my database with an id of 33.
I'd like to be able to keep a similar kind of functionality. Ie, url's map to certain images. However, my concern is that Flash can't do that (i think). So i thought I'd come and ask to make sure that this is the case, or if i am wrong.
I know how i can do this with server programming, but my concern comes with once the user is on my page and chooses a new image. Is the only way to reload the entire page (and all the thumbnails)? Or is there a way to change the URL, and main image, but leave the menu/thumbnails untouched?
thanks in advance!
tyler
View Replies !
View Related
PHP Management AS3
Hi:
Im kind of a Newbe when it comes to AS3, i've been working with AS2 for the las 5 years so migration is kind of making me go Nuts, but still i have to migrate some day and I'm starting to learn AS3 but as of now i only know the basics like buttons, movies etc.
So i desperately need your help!
I am making an e-learning course with flash CS4, but because it is e-learning i need to have a database telling me the users that have entered, their scores, times they have entered etc.
In AS2 i used to have several PHP's one for managing the exercise's results, another one for the final test, another one for login etc, and everything was merged in a database for that course!
But now i don't have any idea if my AS will work in AS3 so i was wondering if you could help me.
I'll post my Login AS2 and please help me changeit for it to work in as3!!
the users actually inly have to enter the username, password is not required.. so here it goes and thanks in advansed:
Attach Code
/* Import the required classes.
Use the wildcard (*) to import all classes within the mx.controls package.
This includes the TextInput, Button and Label. */
import mx.controls.*;
// strict type instances on the Stage.
var status_lbl:Label;
var status_lbl2:Label;
var username_ti:TextInput;
username_ti.setStyle("fontSize", 20);
status_lbl.setStyle("fontSize", 15);
status_lbl2.setStyle("fontSize", 15);
/* Define a click handler for the submit_btn Button instance,
which calls the checkForm function (defined below). */
submit_btn.clickHandler = function() {
checkForm();
};
/* Create a listener object which is used with both the
username_ti and password_ti TextInput instances.
This listener "listens" for the "enter" event,
which triggers when the enter key is pressed. */
var formListener:Object = new Object();
formListener.enter = function(evt) {
checkForm();
};
username_ti.addEventListener("enter", formListener);
// set the form focus to the username_ti TextInput instance.
Selection.setFocus(username_ti);
/* define the checkForm function, which is responsible for checking that the
required fields are filled in and using LoadVars to send login information to the server to validate. */
function checkForm() {
// ensure that the username_ti field isn't blank.
if (username_ti.text.length == 0) {
// if the username_ti field is empty, display an error message in the status_lbl Label instance.
status_lbl.text = "<font color="#FF0000">Porfavor ingrese su USUARIO.</font>";
// set the form focus to the username_ti TextInput instance.
Selection.setFocus(username_ti);
// exit the checkForm function.
return false;
}
/* if the password_ti TextInput instance is blank,
display an error message in the status_lbl Label instance and exit the checkForm function.
if (password_ti.text.length == 0) {
status_lbl.text = "<font color="#FF0000">Porfavor ingrese su PASSWORD.</font>";
Selection.setFocus(password_ti);
return false;
}*/
// clear the status_lbl Label instance
status_lbl.text = "";
status_lbl2.text = "";
/* define two instances of the LoadVars object.
One is used to hold the variables being sent to the server-side script,
and the other one is used to hold the variables returned by the
LoadVars.sendAndLoad method. */
var result_lv:LoadVars = new LoadVars();
var login_lv:LoadVars = new LoadVars();
// copy the value of the two TextInput components into the login_lv LoadVars instance.
login_lv.cursoID = _root.cursoID;
login_lv.username = username_ti.text;
/*status_lbl2.text = login_lv.cursoID;
login_lv.password = password_ti.text;
send the variables in the login_lv instance to the server-side script
using the POST method (send as Form variables rather than along the URL)
and place the results returned in the result_lv instance. */
login_lv.sendAndLoad("login.php", result_lv, "POST");
// When the results are received from the server...
result_lv.onLoad = function(success:Boolean) {
// If Flash is able to successfully send and load the variables from the server-side script...
if (success) {
// if the server returned the value of isValidLogin with a value of 1...
if (this.isValidLogin == 1) {
/* set the status_lbl Labal to a "success" message.
Typically here you'd do a gotoAndPlay or set any local variables
related to a successful login. */
_root.userID= result_lv.userID;
_root.status= result_lv.status;
_root.andale= result_lv.Go;
_root.name= result_lv.name;
_root.AluEjer= result_lv.AluEjer;
_root.opportunity= result_lv.opportunity;
status_lbl.text = "<font color="#009900"><b>login exitoso.</b></font>";
/* else the login information wasn't valid,
therefore display an error message in the status_lbl Label instance. */
} else {
status_lbl.text = "<font color="#FF0000">Clave interactiva incorrecta.</font>";
status_lbl2.text = "<font color="#FF0000">Porfavor intente de nuevo.</font>";
// set the form focus to the username_ti TextInput instance and select the existing text.
Selection.setFocus(username_ti);
Selection.setSelection(0, username_ti.text.length);
}
/* this code is only executed if for some reason the SWF is
unable to connect to the remote page defined in LoadVars.sendAndLoad */
} else {
status_lbl.text = "<font color="#FF0000">Connection Error please try later</font>";
status_lbl2.text = "<font color="#FF0000">or inform the site administrator.</font>";
username_ti.enabled = false;
password_ti.enabled = false;
submit_btn.enabled = false;
}
};
return true;
}
View Replies !
View Related
Site Management
I have a basic understanding of flash and action script. I have a website (www.ulink.net/pat) where I'd like to use server side scripting but they don't allow server side scripts to run from my personal site. I was wondering If I could accomplish some backend site management tasks with flash and if so where I could find resources that don't require the uses of cgi or php.
Thank you
View Replies !
View Related
Session Management
I have a web application made of multiple flash movies and multiple php documents. Now my client requests me to control web access to some sections of the application, but he doesnīt want the user to enter username/password on evry page.
Is there a way to login a user with flash/php at the first page and then, manage a session on all flash movies?.
Thanks in advance.
View Replies !
View Related
Memory-Management In MX
Hi,
is there any possibility(eg actionscript etc.) to manage the memory size in MX ???
Exactly:
We have done a CDrom-Project in MX.
There are different databases (in swf-format) and 3d-Visualizations embedded. The databases should stay embedded becauses of different search functions (full-text,...)so a fast search is guaranteed.
The 3d-animation is just at the beginning, also itīs combined with the search results of the databases.
Now we have problems on older computers cause the *.exe - file takes over 60mb (over 40mb database, 5mb the 3d-stuff)
Is there any possibility, workflow, actionscript, javascript or something to organize and manage the memory-size ?????
Thanks
View Replies !
View Related
COLOR MANAGEMENT
a very important question for workflow problems:
i have a vector-map in a flash film, but all the vectors have not the colors they should have.
is there a way to change f.ex. all blue vectors into light blue without doing it for each vector?
thx.
View Replies !
View Related
Dns Management Causes Troubles?
Hi
In this site I made, there is a popup function that's allow to see
pictures. When I click on the buttons, it tries to open a new page
but not a popup.
Since I applied a dns management package and cloaked the site's name, that function doesn't work anymore( and it used to ).
The pictiures are in a file that's on the same level that the only
.fla wich contains the all site.
function popCenter (url, nom, largeur, hauteur) {
getURL ("javascript:window.open('http://www.webcold.com/MahalR" +url +"','" +nom +"','width=" +largeur +",height=" +hauteur +"scrollbar=yes,top='+((screen.height/2)-(" +hauteur/2 +"))+',left='+((screen.width/2)-(" +largeur/2 +"))); void(0);");
}
On the buttons itself:
on (release){
_root.popCenter("popup/IMG_1393.html", "gpopup", "410", "307");
}
If you want to have a look, go http://www.mahalrayan.com ,in the photogallery section and click on the pictures.
View Replies !
View Related
User Management
hey ppl.....can u guys help me please with creating a user management system on my website i suck when it comes to php and actionscript codes....i just need something simple like log-in and register and the user/registration info gets saved in a database thats mainly it......please help if you can
View Replies !
View Related
Info Management
Hi,
I am trying to populate a list box with individual names and addresses that, when selected,.... will call up account information. I am just looking for suggestions as to how to manage large amounts of information. My idea right now is to create a master text file for each "area" of the application and just use the name on each account to populate the single list box..... something like this......
Code:
myArea = new Array(marina,campground,storage,total);
myPerson = new Array(FName, MI, LName, Address, Zip, Phone, Email);
function accounts(myArea,myPerson) {
if (myArea==marina) {
for (i=0; i<=myPerson.length; i++) {
accountsList = "dock" +["slip"+i] + ["myPerson" + i];
}
} else if (myArea == campground) {
for (i=0; i<=myPerson.length; i++) {
accountsList = "campground" +["campsite"+i] + ["myPerson" + i];
}
} else if (myArea == storage) {
accountsList = "storage" +"locker" + ["myPerson" + i];
} else if (myArea == total) {
accountsList = ["accounts" +i] + ["myPerson" + i];
}
}
Would this be the best approach for easily searching and editing account information? Something else to consider is static and dynamic information. For example,..... the slipholder info in the marina will be fairly static,.... it will not change much. However,.. the campground info will be very dynamic and change regularly. Should I account for this somehow and focus more on the dynamic information first and worry about populating a form with the static info later or should both kinds of information be dealt with in the same manner? Also,.... how to manage overlapping information such as a slipholder haveing a storage unit and a campsite. Any suggestions as to how best approach this?
Thx for looking
NTD
View Replies !
View Related
File Management
Is there a way of having a folder in my main website folder and putting some swfs in there to better organinse my folders or will flash not be able to refrence them when it comes to publish the files
Thanks
View Replies !
View Related
Content Management
Hello again.
Been trying to learn as much as I can about building content management interfaces as I'm always being asked for them by clients. Until now, the best I've managed is a flash panel for the client which modifies a text file on the server which flash looks at and then displays at runtime. (if anyone is interested, I learnt it from this excellent tutorial
http://ntdesigns.net/tutorial/NewsManager.html
What I want to learn now, is how to set up a panel so that the client can upload mp3s to a folder on the server. Can anybody point me towards a tutorial or give me some advice?
Thanks
View Replies !
View Related
Right Click Management
I was trying to make a Flash file that disables right click, now I got the movie finished but what is the AS for it?
What I mean by "disable" is so that you cannot rightclick and click play, stop, foward.. etc..etc.
Any tutorials or Actionscripts would do..
Regards,
Tongxn
View Replies !
View Related
Looking For Some Help On Memory Management
Ive been working on a kuma clone for my friends band...Its comming along fairly well but Im really hammering the CPU clock and I need some help on how to lower the footprint and not mess up the game
are there any tutorials on how to lower CPU time?
I tried attaching files but they are too big...
View Replies !
View Related
Project Management
Hi there. I'm just starting to step out of the "FLA bubble"- that is, I'm figuring out how to set up a Flash project, version control, and improved organization of my stuff in general, instead of relying completely on the structure of my FLA files.
I've been told that it's a very good idea to externalize my Actionscript code- class files can be read by most text editors, and they put all your code in one place so you don't lose it in a hundred separate movieclips. (Not a big problem, for the most part.)
However, externalising the Actionscript means leaving behind all the symbols in my .fla's library. Every single one of these symbols relies on my code to appear on the stage- that is, the stage at first is completely empty. And when you publish a flash file with an empty stage and no actionscript, you get an empty .swf file.
So, I'm looking for a way to package up and externalize a library of symbols, just like I'm externalizing my Actionscript into classes. Is this possible? Or, in this case, does it make more sense to leave my Actionscript in the same flash file as my symbols?
View Replies !
View Related
AS3 And Memory Management
I have a big problem with memory management. every "click" loads up a "page" which is really 3 or 4 swfs loading onto the document class.
i try my hardest to unload everything properly, when loading up a "new page", but i still get inclining system memory usage. it will never stop, the mem usage climbs and climbs infinitely, the stage starts to get cluttered with unloaded remnants of sprites, frozen in between a Tween animation.
so what is the proper way to load external swfs onto stage, and unload them so that memory is not being wasted? i'm pretty sure i'm doing it very wrong.
thanks
View Replies !
View Related
FLV Stream Management
Hi folks,
As well as we know, if I would like to play a FLV inside my swf, I need to call netstream.play(<flv-url>) method. Such method, automagically, downloads and plays the flv. Currently, my scope is to manage/modify the bytes in the stream before the method plays them (by istance, I need to modify them in some way).
Anyone knows how do it? I need to override the .play() method or the NetConnection.some() method???
Any help will be appreciated!
F.
View Replies !
View Related
Resource Management
Hey,
ive got an SWF file that dynamically loads its content based on whats happening in other SWF files. Anyway it may have to load the same file up multiple times onto the screen... imagine loading "myImage.jpg" and displaying it various times around the screen.
Anyway at the moment each time the file is loaded it makes a new loader and then fires the complete event that makes the stage addChild() from the loaded content...
All works fine, but i want to try to optimise it a bit so once it loads the file once it stores it in a cached array or something similar, so then whenever it is loaded again it just grabs the already existing version and spits it back out... i thought in principle it would be easy... but ive got a couple of problems..
1) I couldnt find a reliable way of working out if something is loaded and storing it, and then if i do store something, then working out if it is fully loaded or still loading. I tried doing the bytesLoaded == bytesTotal each time and if they matched it is loaded and use it. However it never acctually got displayed on the screen if i did that.
2) The best way to fire off a complete event on an already complete object, i tried doing the dispatchEvent(complete); method, but if something isnt 100% loaded this will just break it..
Anyway ive tried looking round the net but there isnt anything specific on this subject that i could find, apart from bulk loaders... anyone done anything similar or got any advice?
View Replies !
View Related
Content Management
Hi
I'm doing a site for someone and he wants to be able to change some sections from his end as he'll be on the road alot.
He needs:
* A blog/diary section
* An images section
Both need to be updated by him.
Is this possible?
Many Thanks
View Replies !
View Related
Sound Management
Hi
I have created a flash presentation with narrations that relate to specific frames. It is all working well and I am controlling the sounds with actionscript . My resulting file size is about 6 MB, so I created a preloader in frame 1.
All my sounds are exported in frame 1, so the preloader only appears when 92% download has ocurred, which is not what I want. I know that I could make the preloader a separate swf or I could break up the main swf into 1 frame per swf. Alternately, there may be someway of streaming sounds from an external file using actionscript that I don't know about.
Can I please get some advice on the best way with the best way to proceed? or provide reference to solution?
PS I hope I have posted this to the right forum.
View Replies !
View Related
Depth Management
Hey guys, this is my first time trying to use mx.transitions so if im doing something wrong there, please point it out..
the idea is, each Folder Image will be a separate page which will load external swf files, but i need to get the animations working first..
I can get each folder to move to depth(1); no problem, but i would like it to go back to it's original position when a different folder is clicked.
how would i say for example, when a button is clicked, whatever is in depth(1); remove back to original depth, and the corresponding folder symbol move to depth(1);
the folder symbols are on separate layers, on _root timeline...do they have to be on the same layer?
this is the code i have to bring them to depth(1);
btn.onRelease = function(){
_root.six.swapDepths(1);
}
this works, but i dont know how to move it back to original depth when a different folder comes into depth(1);
I would also like the symbols to have a _alpha property of 40, then if they are in depth(1); Tween _alpha to 100. and Tween back to 40 if not in depth(1);
this is what i have on _root timeline, trying to achieve this.. it's not working tho. when i test movie, they tween to _alpha 100 and stay there.
Attach Code
if(six.depth=1){
new Tween(six,"_alpha",ease, 1, 100, 1, true);
}else{new Tween(six,"_alpha",ease, 1, 40, 1, true);
}
View Replies !
View Related
Simple DB Management
Hi!
I want to make some simple database methods (an insert in onConnect, and getting a value with a query) within FMS.
How can I achieve these in the simplest way?
I don't want to use/buy FlashRemoting, because I don't use app servers, etc, just simple DB methods.
My other idea is deploying a Tomcat with web services, and do the DB methods in the webservices, they can be called with FMS, can't they?
But I have a little headache: to set up a webserver, implement and generate the webservice --> in order to do a simple DB insert and select...
Any idea would be appreciated!
thanks!
View Replies !
View Related
Color Management
I've created a movie with CM enabled via AS3, and I see colour-corrected output when I open the SWF file directly in CM-enabled Firefox 3 or Safari. But in the same browsers the colour-managed output isn't showing when the movie is viewed via an HTML page. Any thoughts?
John
View Replies !
View Related
Movement Management
Hey Guys
Ok, what I'm trying to figure out is how to have for example:
3 images doing movement continueous (non-stop) But then I have one image I like to just fade in and stop. I try to place the stop command for the fade image but then it stops all the images once it reaches that frame. How can I get it to where it will not do this? I heard before, new scene or something like that. If you could help, I really appreaciate it.
thx
View Replies !
View Related
Content Management?
Hi all,
I have flash MX, and am not too good at coding, and was wondering if you could help me.
The attachment shows a graphic mock-up of what I'm trying to achieve. I've anonymized some things...
http://img220.exs.cx/my.php?loc=img...final4dl2ku.jpg
In window 1 I want a list of keywords that I can add to inside an external file. So it'll be a word/ excel etc file with a list of words that I can update/ link from etc etc
In Window 2 I'll essentially have a long page of information - text and pics, maybe links to files etc. Clicking the buttons at the top (3) will take you to the top of that page, and clicking the keywords (1) will take you to that specific bit on the long page in window (2) - ok so far??
Essentially - I want the information for the keywords (1) and the main body information (2) to be held in separate files. So in order to update the website all I have to do is update a word/ txt/ excel file etc.
Can anyone give me pointers on this??? It'd be a real help if you could.
View Replies !
View Related
Asset Management
me and a friend of mine are developing one game ( its pretty big) ... she does all the art and i do programming. we are currently facing problem to manage art and audio assets. like, i use whatever she gives to me, but then she modifies it and i have to integrate it all over again. are there any ways to manage assets effectively , with out any need to re-do stuff over and over again.
View Replies !
View Related
Content Management
Hi there, I am building a flash site for a client, and am wondering how can I make it so they can update it themselves. So that when I say its done.. Im done with it unless there are meltdown type probs. I know there are content managements systems and all, but Im a little in the unknown about them. Anyone have any suggestions? I can design, but Im not much of a coder Thanks in advance for any help you guys can give.
View Replies !
View Related
Code Management
Does anyone here use a system for tracking their releases of Flash/PHP (Dreamweaver) applications they write?
If so what do you use with your system and how did you set it up?
Currently, I use eventum to track my bugs into the different projects I've written. I have a little php script that auto inserts bugs when ever errors are found in the code. And a system where clients can report bugs to me. But after that I have to write the code and then just attach it to the bug. But I'd like to use a CMS (or subversion) or something to integrate with Eventum so that when I make the changes they can be assigned as a resolution to bugs I have in the system.
When I worked for a mortgage comp we had a system of doing this that used source safe (and we didn't use Flash) but I'm trying to keep my cost's low and source safe isn't exactly cheap.
So if you guys know of anything that works with Flash & some bug tracking system I'd love to hear how you set it up. And what you used to set it up.
Thanks a lot,
Ryan
View Replies !
View Related
Content Management?
What is the best way to update a news section in flash? what I am wanting to do is on my flash site have a login where I can login (go figure) to a page that allows me to edit and save the new update very easily without having to use flash to open an fla and editing that?
Hope that makes sence.
thanx
View Replies !
View Related
Depth Management Beyond Me.. [AS3]
Hello,
I'm having some trouble getting around this little depth thing of mine... Anyway, please look at the picture I attached, now, there is a number on each planet.. Quite obviously the depth.. But I'll refer to the planets by their number.
So, imagine planet 1 is behind planet 0, this could be handled by just switching their index, but... As planet 2 is in a orbit around planet 1, it would have to be switched as well, same would apply when they emerge again..
I've got no idea how I should approach this
Any help would be appreciated, thank you.
Note that the 'real thing' contains way more than 3 planets
View Replies !
View Related
Movement Management
Hey Guys
Ok, what I'm trying to figure out is how to have for example:
3 images doing movement continueous (non-stop) But then I have one image I like to just fade in and stop. I try to place the stop command for the fade image but then it stops all the images once it reaches that frame. How can I get it to where it will not do this? I heard before, new scene or something like that. If you could help, I really appreaciate it.
thx
View Replies !
View Related
Content Management?
Hi all,
I have flash MX, and am not too good at coding, and was wondering if you could help me.
The attachment shows a graphic mock-up of what I'm trying to achieve. I've anonymized some things...
http://img220.exs.cx/my.php?loc=img...final4dl2ku.jpg
In window 1 I want a list of keywords that I can add to inside an external file. So it'll be a word/ excel etc file with a list of words that I can update/ link from etc etc
In Window 2 I'll essentially have a long page of information - text and pics, maybe links to files etc. Clicking the buttons at the top (3) will take you to the top of that page, and clicking the keywords (1) will take you to that specific bit on the long page in window (2) - ok so far??
Essentially - I want the information for the keywords (1) and the main body information (2) to be held in separate files. So in order to update the website all I have to do is update a word/ txt/ excel file etc.
Can anyone give me pointers on this??? It'd be a real help if you could.
View Replies !
View Related
Library Management
All the sites I've worked on in the past have been light enough to only need one flash file. Now I'm working on a site that is too big for a single flash file. My question is, if I break my flash file up into multiple smaller flash files and multiple html documents, how do I manage the library so the browser only needs to load library elements once. For example, If html page 1 uses library item A and html page 2 uses the same item, how do I set it up so once Library item A is downloaded and used in one page, the other page doesn't have to download it but would use the item in the cache.
Any thoughts?
View Replies !
View Related
Memory Management
Last edited by depth : 2004-09-13 at 16:25.
my code is getting bigger and bigger til it explodes all over the wall.
i need to make sure i don't have any memory leaks...anyone have any tips they want to add here?
one question i have: does removing a movieclip effectively delete all of the properties and methods stored within it? e.g. if i have a movieclip with an onEnterFrame chugging away, and i remove the mc, will the onEnterFrame die peacefully and leave my CPU alone?
one tip i have is the ol' store your onEnterFrame in a property and delete it when it's no longer needed:
ActionScript Code:
function doStuffEveryFrame():Void {
//do some stuff
if (noMoreStuffToDo) {
delete this.onEnterFrame;
}
}
this.onEnterFrame = doStuffEveryFrame;
another trick i've just started putting into practice is a custom garbage collector for actionscript; i know java does this somewhat automatically, but i wasn't sure that AS does the same. also, i read somewhere that writing
ActionScript Code:
delete (this);
doesn't actually work. so i wrote the following method, collectGarbage. i then store collectGarbage as a class method of a class i use exclusively for globals (which i call GlobalData). look two posts down for the code.
any additions / corrections / suggestions are welcome!
thanks,
-depth
View Replies !
View Related
Cache Management
I guess Flash retrieves its data from default system browser cache when loading variables from php.
Because the problem we have is that, when we display a list of vars those were loaded from a db via php, when we delete some data from db and refresh the swf, the data deleted are still displayed, as if they were stored in some cache.
I tried to add the famous Pragma-Nocache etc headers to my php files but without success : swf cannot read anything when i put these headers...
So how can I manage the flash cache ? is there a special sshared object feature that manage that ?
View Replies !
View Related
File And Folder Management
Hey,
I'm hoping someone has had some type of experience in this. What I'm trying to create is a Document/File Management system. I can accomplish this pretty easily using ASP and HTML, but we're looking into Flash to give the users the ability to drag and drop file into folders.
Is it possible, through Flash and its actionscript capabilities to interact with a file/folder structure located on the server? I'm basically looking for a Windows Explorer type deal, where a user logs in, sees a tree view of his/her files and folders and can manipulate it through dragging and dropping, renaming, etc.
Has anyone seen or done anything like this?
Thanks in advance,
Tom
View Replies !
View Related
Delete And Memory Management
Does AS require serious memory management or does it have a GC to take care of business? Suppose I write this.
Code:
foo = [2,3];
foo = [];
Will the first array be collected or must I write this?
Code:
foo = [2,3];
delete foo;
foo = [];
Another way to put the questions: Is "delete foo" different from "foo = undefined"?
View Replies !
View Related
Advertising Engine And Management
Hi guys, I would like t knou if anyone know about building a Advertsing engine in FLAS MX, I would llike to display On line advertisment and want to count each display, I mean feed some data base with information about advertising espositions for each client.
Thanks for your help.
View Replies !
View Related
Content Management System
Hi all.
Recently,I started looking for a relatively cheap,or FREE management system, that I use to update my Flash site. I do have a couple of questions about the whole thing.
Is there a CMS out there that can work for a site built entirely with Flash MX????
If so, which one best rated???
Thanks in advance for any info.
soli.
View Replies !
View Related
Site Management Help Needed
I have a problem with managing my
full Flash site.
On my site I have 7 buttons. I wanted to
create a folder for each button, because they
contain a lot of swf's and sub-swf's.
That would make it easier to find files
if I need to change them.
Is it that all the files and sub-files have
to be in the same folder in order for Flash
to find them?
Tried to find threads on this issue, couldn't
find any... Could use some help and tips please.
Thanks
regards
View Replies !
View Related
Folder Management Part II
I'll try to make it more simple, and use other names for my files.
I have "main.fla" in a folder. In the same folder is a folder called "files".
In that folder is "file_1.swf", "file_2.swf" and "file.txt" (The last 2 files are loaded in "file_1.swf").
When I test "main.fla" in Flash, it loads "file_1.swf", but gives an error message
that it can't find the files attached to "file_1.swf", namely "file_2.swf" and "file.txt"!
When I put them all in the same folder, it's allright. Everything works.
Could someone help me with this? I realy need a good folder structure for my
complex site.
If I put everything in the same folder, I'll have a hard time finding files when I need them.
regards
Hugo
files: www.inflicted.nl/folder_files.zip
View Replies !
View Related
Content Management Systems
Hi, I have created my companies website with Flash MX, I have been recently asked to create a content management system for the news page within this flash site. I am unsure as how to go about this... should I be using ASP to store the data in the database and then retrieve it using ASP and then view this data using dynamic text boxes in the flash site? This however is going to be a little messy when more and more news articles are added... can I loop the dynamic text boxes in some way?
Please help as I am not sure in which direction I should be moving? I do not have access to Cold Fusion, is this something I need to do this successfully?
Thanks
Michelle
View Replies !
View Related
Content Management... Possible With Flash 5 And PHP ?
Hi there,
i have the following problem:
I want to create a flash-based website with very large amounts of text.
The first question is if its possible to create a mysql database where each text thats used on the flash film is saved with an individual id...
Second: The main page in this flash film contains three text boxes and a navigation bar. If the user activates one link on the navigation bar the three text boxes should be filled with text from the database.
Each textbox should get its own ID to make sure that the right text is filled in. Can this problem be solved by using Flash 5 and PHP or only by later and more expensive software like Flash MX and ColdFusion ?
Further question: If the functions described below are possible, do i have to write one PHP script to get the informations from the database for all IDs or for each ID an individual script ?
Last question: Does anyone know where to find informations or tutorials to get more knowledge about the questions asked below ? Or maybe a book which shows solutions how Flash, PHP and MySQL work together.
On the users manual, delivered with Flash 5, there were no informations to find.
I hope that someone can help me in this even if its only a little bit...
Thanks for sharing your knowledge
P.S.: Excuse my not perfect english...
View Replies !
View Related
Content Management Systems?
Ok, scenario - we build a flash website for a client, and on the site there are two main pages that the client would want to update on a regular basis (weekly)
What would be your solution for this? Ok I know that xml and text files can be used for this, but lets assume now that our client is an eighty year old who has no possible way of opening these files and doing it without screwing the whole thing up completely - is there a fool proof way to do this with flash at all - a simple file like a word document with no html type of tabs - that can be simply typed into - saved and uploaded to the server to overwrite the existing file?
There must be a way because otherwise it would mean contacting the designer every single week with updates and thus making a huge bill at the end of the year - and lots of boring work for an already busy flash web designer.
Any thoughts on this dilema? it must be happening all the time, this sort of thing
Thank you.
View Replies !
View Related
Depth Management Problems
Hello.
I have a dynamic list of objects that are created based on the number of entries in a database. The problem is that the number of entries could change, and I seem to be having problems passing objects into functions and then altering their properties. The point of the manage_depth function is to bring the objects closest to the mouse to a higher depth. The other functionality not shown here continues to work, but the depth of the objects are not changing, creating some ugly overlapping. Im not sure if I am passing the object reference incorrectly, or if my methodology is just plain wrong. I am a PHP kinda guy and I often finding the subtleties of flash bitting me in the ass. Thanks for any help.
Code:
_root.CarDisplay.manage_depth(this , offsety, 1);
function manage_depth(caller:Object, yoff:Number, stat:Number) {
if (stat == 1) {
heightarray.push({pcaller: caller, pyoff: yoff});
} else {
heightarray.sortOn("pyoff", Array.NUMERIC);
for (var i = 0; i < heightarray.length; i++) {
var order = heightarray[i].pcaller;
var num:Number = _level0.CarDisplay.getNextHighestDepth() - i - 1;
var depthstring:String = "swapDepths";
//I have tried this syntax
[order][depthstring](num);
//and this syntax
order.swapDepths(num);
}
heightarray.length = 0;
}
}
View Replies !
View Related
|