[Flashcoders] loading updated XML

2006-04-05 Thread Sibrand Hoekstra
Hello list, First off, hi all. I subscribed to this list yesterday and ive seen alot of good posts already, so there's little doubt that anyone can help me out ;) A little introduction: Since a few weeks i'm hired at an Internet Development company in town, and my job is primarily

RE: [Flashcoders] loading updated XML

2006-04-05 Thread Ben Smeets
Lot's of issues possible here, I believe some code might be needed to pinpoint the exact problem? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sibrand Hoekstra Sent: woensdag 5 april 2006 9:38 To: flashcoders@chattyfig.figleaf.com Subject:

Re: [Flashcoders] loading updated XML

2006-04-05 Thread Martin Weiser
are you preventing loding from cache?? for example: xmlUrl=xmlFile.xml?v=+getTimer() - Original Message - From: Sibrand Hoekstra [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Wednesday, April 05, 2006 9:38 AM Subject: [Flashcoders] loading updated XML Hello list,

Re: [Flashcoders] converting/printing swf to eps

2006-04-05 Thread Gabriel
Ok, sounds good, but I don't see clearly how to convert my already drawn eps/whatever into commands so can rewrite a svg an then save it. I can make instructions for writing the svg, but I have the drawings pre made. GaB Ron Wheeler wrote: You can send an XML file of drawing instructions

Re: [Flashcoders] loading updated XML

2006-04-05 Thread Sibrand Hoekstra | Buyways B.V.
no, its not about the cache.. the point is that i want the movie to load the feed again, except this time with the parameter ?PictureID=XX [where XX is a number] so the feed will provide a list of 10 older jpegs, so eventually I can scroll trough the whole set of jpgs uploaded by users. Just

RE: [Flashcoders] loading updated XML

2006-04-05 Thread Ben Smeets
It's probably the onLoad handler that is missing some sort of context. Make sure everything you reference in the onLoad handler isn't undefined (check by tracing). Without seeing code, this is all I can think of. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

[Flashcoders] HTML + flash (html title changes on loadMovie)

2006-04-05 Thread Tarjinder Kumar
Hi i have my main.swf file embedded in html page. The swf file conatins 4-5 movieclip. On the click of a particular movieclip a new swf file is loaded in my main.swf file. I am using loadMovie to load swf. The problem is when i click on a particular movieclip to load swf file the html page title

Re: [Flashcoders] loading updated XML

2006-04-05 Thread Martin Weiser
some variable issue, either overwritten or not deleted etc, if you want to repeat some state, you have to provide the same conditions better show us code. MW - Original Message - From: Ben Smeets [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com

[Flashcoders] large projects

2006-04-05 Thread Mark Lorah
This is a general question about workflow. For a long time I have been working on Flash projects independently. Over time everything has gotten bigger. Projects are now at a scale where I must collaborate with other Flash programmers. I am looking for suggestions about best practices for

Re: [Flashcoders] loading updated XML

2006-04-05 Thread Éric Thibault
I you call your php page directly from your browser does it return the desired XML file? And with your ID parameter? A+ Sibrand Hoekstra wrote: Hello list, First off, hi all. I subscribed to this list yesterday and ive seen alot of good posts already, so there's little doubt that anyone

[Flashcoders] DataSet- loadFromSharedObject Conundrum

2006-04-05 Thread Manuel Saint-Victor
I'm using the DataSet componentand its loadFromSharedObject() method. The strange thing is that when it loads from the shared object it puts the content at _dataSet.[instancenam_ of_the_dataset]. I was hoping to set up some databinding in ActionScript to this dataSet but how do I set that up?

Re: [Flashcoders] loading updated XML

2006-04-05 Thread Sibrand Hoekstra | Buyways B.V.
Thanks everybody for taking the time, i have been able to fix the problem after the lunch. =) I was lucky to have written a bad loop, crashing my flash IDE and therefore not saving my unsaved work, so i had to rewrite the button's attached function. Problem solved, but now i can't come up

Re: [Flashcoders] large projects

2006-04-05 Thread Aaron Silvers
Good question. It's going to be everyone's responsibility to stay on the same page, but if you're leading the effort, you're also going to have to initiate the kind of attention to details that you'll want replicated on the team. You'll probably spend a lot more time on technical

Re: [Flashcoders] large projects

2006-04-05 Thread Sam Thorne
Using some sort of versioning system is an absolute must. Subversion is great, handles fla/ai/etc files as binary properly and deals with Mac resource forks and so on. Pretty easy to set up, and with a couple of nice GUI apps on both platforms (svnX for mac, tortoise for Win).

Re: [Flashcoders] loading updated XML

2006-04-05 Thread Martin Weiser
so i had to rewrite the button's attached function. Problem solved, but now i can't come up with a decent explanation for why it didnt work in the first place. state changed, the function could work for the first time, show us the code better MW - Original Message - From: Sibrand

Re: [Flashcoders] large projects

2006-04-05 Thread JesterXL
- think of using Flex instead of Flash - get a competent and accountable architect to enforce best coding practices - define standards of coding up front, and enforce those standards - use source control (Subversion, CVS, Source Safe) - use develoment servers, staging servers, and production

Re: [Flashcoders] HTML + flash (html title changes on loadMovie)

2006-04-05 Thread elibol
Can you share the code in your html file and the code segment that loads/preloads and initializes the movieclip? You've described the problem very clearly, however, I've never heard of such a problem; it doesn't seem common. There is no quick answer I could give you. M. On 4/5/06, Tarjinder

Re: [Flashcoders] loading updated XML

2006-04-05 Thread Sibrand Hoekstra | Buyways B.V.
here's the final code: var speed:Number = 1.5; var picSpace:Number = 120; var basexmlfeed:String = 'http://csdev.ilsemedia.nl/Wegaanwinnen.nl/data/media/_shared/swf/thuistribune.php'; var picturePath:String =

[Flashcoders] Can You Extend a Swc Component?

2006-04-05 Thread Shaw, Matt (MTVN)
I'm trying to use a component's intrinsic class as a super class. I have a component installed. I unzipped the .swc files and stole the intrinsic classes so I could get proper code checking in Eclipse. This works fine. Then I attempted to extend one of the intrinsic classes. Flash compiles with

Re: Re: [Flashcoders] large projects

2006-04-05 Thread John Mark Hawley
Combining a few of these large project development things, I'm thinking of experimenting with keeping the entire development suite (or as much of it as possible) under version control. Eclipse throws a lot of ephemeral files aroundhas anyone run into problems with multiple developers

Re: Re: [Flashcoders] large projects

2006-04-05 Thread JesterXL
Biggest challenge I've had is ColdFusion config files. Everyone has different drives so I have to change E:\files to C:\files. Not a big deal with find-and-replace, but just 1 more thing to keep track of that isn't in version control. I also have to manually exclude those files from

[Flashcoders] Getting File name when using ReferenceList

2006-04-05 Thread Martin Tremblay
Hi, I'm uploading an image using FileReference::upload. My php file which handle the actual file is placing the file in the appropriate folder and rename the file. My question is: How can I retrieve the new name using the callback provided with the FileReference method ? Martin

Re: [Flashcoders] Cantering a mc when you click on it

2006-04-05 Thread Ron Wheeler
You need to know the registration point and the _x and _y and the center of the stage that you are trying to move the clip on. Draw a sketch and it will be clear. Ron Kevin Boyd (MMCR) wrote: I'm trying to figure out the math of how to move a movie clip into the centre of the stage

Re: [Flashcoders] large projects

2006-04-05 Thread Mark Lorah
Aaron, Thanks for this. I am pinning your reply to the bulletin board above my desk. Book recommendations are very helpful. I do need to set up Subversion. I think the critical issue that I have trouble getting my head around is best ways to look at design/architecture such that it

[Flashcoders] Flex Apps versus Flash Projector apps

2006-04-05 Thread Mike Anderson
Hey Everybody, Is it safe to say that, because Flex requires a server in the middle (to process the .mxml files), that Flex is simply an unrealistic solution if your end goal is to deliver portable applications that can be self contained? In addition to that statement: Is this why Flash (versus

Re: [Flashcoders] Flex Apps versus Flash Projector apps

2006-04-05 Thread JesterXL
Nope. http://dev.jessewarden.com/captivate/flexonthedesktop/ The only reason Flex 2 isn't realistic for creating desktop applications currently is: - it's in beta - mProjector, SWFStudio, Zinc, and Screenweaver haven't made a wrapper for Flash Player 8.5 yet Keep in mind, Flex 2 will create

[Flashcoders] Resizing Stage w/Components not scaling Examples

2006-04-05 Thread Mike Anderson
Hello All, I have an application with a MenuBar on top, status bar on bottom, and Accordion Control on the right side. Sitting within all the Controls, I have a stage area where Maps that the user can load, take up the entire remaining portion of the apps viewable space. The Maps can be panned,

RE: [Flashcoders] Flex Apps versus Flash Projector apps

2006-04-05 Thread Mike Anderson
Early on though, I thought there some legalities surrounding the pre-compiling of SWF's via Flex, and then distributing them in their singular state. I thought that Flex had to stay within the entire workflow, including final viewing/use of the application. I guess I need to do some more

Re: [Flashcoders] Flex Apps versus Flash Projector apps

2006-04-05 Thread JesterXL
Nope, just confusion on the license terms. Adobe will work with you, but most people couldn't afford Flex 1.5 anyway, so license discussions were pointless. Macromedia Central, for example, accessed SWF's like this and it was perfectly legal. Most Flex developers deploy SWF's to their

RE: [Flashcoders] Flex Apps versus Flash Projector apps

2006-04-05 Thread Dave Watts
Early on though, I thought there some legalities surrounding the pre-compiling of SWF's via Flex, and then distributing them in their singular state. Things have changed quite a bit between Flex 1.x and Flex 2 (which is of course still in beta). With Flex 2, you can distribute

Re: [Flashcoders] large projects

2006-04-05 Thread ryanm
This is a general question about workflow. For a long time I have been working on Flash projects independently. Over time everything has gotten bigger. Projects are now at a scale where I must collaborate with other Flash programmers. I am looking for suggestions about best practices for

RE: [Flashcoders] Flex Apps versus Flash Projector apps

2006-04-05 Thread Mike Anderson
Wow thanks for that information - And Yes, if you are able to explain some things in greater depth, you would be helping me in a HUGE way since I have to make some decisions regarding my programming future. Other than Flex 2.0 being more advanced than 1.5, what are the major differences between

RE: [Flashcoders] Flex Apps versus Flash Projector apps

2006-04-05 Thread Mike Anderson
Thanks Dave - With that said, if I plan on doing Remoting (which could be construed as a broad term I guess), what would I require in order to do that? Of course in Flash, you just use the Remoting Classes, etc. and you are all set. You just have to make your choice between ColdFusion or .NET

RE: [Flashcoders] Flex Apps versus Flash Projector apps

2006-04-05 Thread Dave Watts
Other than Flex 2.0 being more advanced than 1.5, what are the major differences between the 2? By default, compilation is done on the developer's workstation, not on a server. By default, you can build Flex 2 applications without any server component; they can talk to a server using web

Re: [Flashcoders] Flex Apps versus Flash Projector apps

2006-04-05 Thread JesterXL
Flex 1.5 vs. Flex 2 - SDK is free (mxmlc compiler and component framework [and I think compc too]) - Flex 1.5 uses FlexBuilder 1.5, basically Dreamweaver MX 2004 with built-in SWF renderer. Flex 2 uses Eclipse, either as a standalone install, or a plugin. - Flex 1.5 hardcoded to make Flash

RE: [Flashcoders] Flex Apps versus Flash Projector apps

2006-04-05 Thread Mike Anderson
Wow that is great! So basically, the method in which clients retrieve their SWF files are the same as getting a plain old SWF file created using Flash? So the Flex SWF (which gets compiled on the developers machine) simply gets copied to the Web Server hosting the application. That is great! I

Re: [Flashcoders] large projects

2006-04-05 Thread Mark Lorah
Thanx for everyone's comments. All this discussion brings to light a sub-topic for me which is testing. I am from a design background rather than a programming background. Now I am primarily a programmer. I sometimes find that I am uninformed about certain programming standard practices

Re: [Flashcoders] large projects

2006-04-05 Thread JesterXL
These are my opinions, but 2 main things: - only check in code that works. If a developer checks in code that doesn't compile or work, he needs to fix it. - I'll write test cases, which are really not as formal as real test cases. Basically, it's a test FLA or a test MXML application that

[Flashcoders] Coverting WMV to FLV

2006-04-05 Thread Josh Buhler
Does anybody know the best way to go about converting a WMV video file to an FLV? I'd prefer an OSX solution, but can do Windows if needs be, - Josh ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

[Flashcoders] ASDT 0.0.8b5

2006-04-05 Thread Honeyghan
Has anyone else successfully updated from ASDT 0.0.7.1 to 0.0.8b5? I'm on the MAC platform. Eclipse 3.1.2. Removed the old version, updated Eclipse with the update site URL. Everything installs. Restart Eclipse, nada. No code folding, doesn't even recognize the AS files in my projects. What has

Re: [Flashcoders] Coverting WMV to FLV

2006-04-05 Thread Guy McLoughlin
Hi Josh, I would convert the WMV video into a common intermediary format, then encode your FLV from this. Normally I either use my video editor ( Sony Vegas 6 ), or a Windows utility like AVS Video Converter ( www.avsmedia.com ) to convert the original video into a common format. I also

Re: [Flashcoders] Coverting WMV to FLV

2006-04-05 Thread Marlon Harrison
FFMPEG X http://homepage.mac.com/major4/ I'm pretty sure that will do it, but in order to generate flv's you'd need to type the commands into the Terminal command line. Maybe someone has a better solution? On 4/5/06, Josh Buhler [EMAIL PROTECTED] wrote: Does anybody know the best way to go

[Flashcoders] RE: Flex Apps versus Flash Projector apps

2006-04-05 Thread Mike B Baker
Flex is really a framework for building web applications the current Flex 2.0 Beta looks very promising and I would hope to be making deployments using it sometime later this year. The main purpose for me using it is to provide desktop functionality and a rich client thru a web browser, it is also

RE: [Flashcoders] Coverting WMV to FLV

2006-04-05 Thread Forums
Flash itself (the authoring environment) can import WMV and create Flash Video with it. |-Original Message- |From: [EMAIL PROTECTED] [mailto:flashcoders- |[EMAIL PROTECTED] On Behalf Of Marlon Harrison |Sent: 05 April 2006 20:54 |To: Flashcoders mailing list |Subject: Re: [Flashcoders]

Re: [Flashcoders] HTML + flash (html title changes on loadMovie)

2006-04-05 Thread Bernard Poulin
This is a known common problem. This bug has been going for a long time! Very annoying when doing AJAX-style pages where the page state is kept on the URL. It sounds like there is some (debug?) code inside the flash plugin that somehow modifies the window title with the information (???). More

RE: [Flashcoders] Flex Apps versus Flash Projector apps

2006-04-05 Thread Dave Watts
If I hear you correctly then, there is NO Data functionality built into the BASIC Flex 2.0 Architecture? For a SWF file to have the ability to Send/Receive Data to a Server (whichever flavor that may be), a type of connector must be purchased beforehand, in order for that functionality

RE: [Flashcoders] RE: Flex Apps versus Flash Projector apps

2006-04-05 Thread Mike Anderson
Hey guys, Thanks SO much for this excellent information - you are all painting a nice picture for me, as to where Flex stands at present, and where it's going to be down the road. If possible, I'd like to keep this thread pumping for as long as possible - as it could benefit a great many

Re: [Flashcoders] HTML + flash (html title changes on loadMovie)

2006-04-05 Thread elibol
I was somewhat doubtful that it wasn't common. Good luck with it, M. On 4/5/06, Bernard Poulin [EMAIL PROTECTED] wrote: This is a known common problem. This bug has been going for a long time! Very annoying when doing AJAX-style pages where the page state is kept on the URL. It sounds

Re: [Flashcoders] Flex Apps versus Flash Projector apps

2006-04-05 Thread Mike Chambers
fyi, You can download a beta of Flex 2, Flex Builder, Flash Player 8.5 and mxmlc (command line compiler) from: http://labs.macromedia.com mike chambers [EMAIL PROTECTED] Dave Watts wrote: Early on though, I thought there some legalities surrounding the pre-compiling of SWF's via Flex, and

[Flashcoders] Split Pane component??

2006-04-05 Thread Mike Anderson
Hello All, I am trying like crazy, to find a Split Pane Component that works as well as Flex's version. I found one (and only ONE) somewhere on the Flash Exchange, but the docs are mostly in another language, and it's really buggy. The one I found is actually free, and has a high rating level -

Re: [Flashcoders] Flex Apps versus Flash Projector apps

2006-04-05 Thread Mike Chambers
No. This is not correct. The Player and Framework support sending and receiving data to the server in a number of ways: HTTP Binary and XML Sockets AMF On top of this player support, the Flex framework provides: HTTPService - makes HTTP calls a little easier SOAP and XML-RPC based web

RE: [Flashcoders] Flex Apps versus Flash Projector apps

2006-04-05 Thread Mike Anderson
Wow - so when you say AMF - this is the same as Remoting correct? As far as I know, these 2 terms are/were interchangeable. With that said, if I have a ColdFusion Server running, I can immediately start writing highly functional apps using Flex 2.0 Beta and make Remoting calls?? Thanks Mike and

[Flashcoders] Verify a bug

2006-04-05 Thread elibol
Hi friends, I need verification that this code located in a class, or furthermore, anywhere in flash would cause the application to run into an endless loop if it were run with the debugger. function __resolve(name){ var iRef=_items; if(iRef[0][name] instanceof Function){

Re: [Flashcoders] Split Pane component??

2006-04-05 Thread Ing. Mario Falomir
here is a good one: http://www.joangarnet.com/blog/archives/2005/07/release_v2_fram_1.php On 4/5/06, Mike Anderson [EMAIL PROTECTED] wrote: Hello All, I am trying like crazy, to find a Split Pane Component that works as well as Flex's version. I found one (and only ONE) somewhere on the

RE: [Flashcoders] Split Pane component??

2006-04-05 Thread Mike Anderson
Yes, this is the one I was talking about in my initial post. It looks as if it's really mature, and has LOTS of great comments regarding it. But when you have certain animated controls within each Pane (i.e. accordion) it flips out. I should e-mail the person who wrote the app, but I know there

RE: [Flashcoders] Split Pane component??

2006-04-05 Thread Scott Hyndman
ActionStep has one...but it probably isn't usable from your prespective, since you won't be able to use it from within the Flash IDE like you would be familiar. Code only. :) If you (or anyone else reading this thread) would like to see it in action, here is something I'm writing that uses it. It

RE: [Flashcoders] Split Pane component??

2006-04-05 Thread Mike Anderson
Thanks for the reply Scott - Actually, I work very little using the Flash IDE - just long enough to position some of my visual controls - but the rest is 100% Class Files external to Flash. So, if you have something that you could throw my way that could help out, I'd be very grateful. I am no

[Flashcoders] What's different between _alpha=0 and _visible =flase;

2006-04-05 Thread zikey Han
I kown that one different between _alpha=0 and _visible =flase. when we load a picture or swf ,like this: this.createEmptyMovieClip(container_mc,0); container_mc.loadMovie(test.jpg); container_mc._alpha =0 ; you can see nothing in the scene.because of ._alpha =0; but if you

Re: [Flashcoders] What's different between _alpha=0 and _visible =flase;

2006-04-05 Thread JesterXL
MovieClip's have security sandboxes. As such, you are allowed to do certain commands and access on MovieClip's only if that MovieClip's contents reside in your approved security sandbox. SWF's, JPEG's, FLV's, and now PNG's and GIF's all have abide by these rules. My guess is, _alpha actually