Re: [Flashcoders] Loader bytesTotal equals to 0

2008-12-04 Thread Jason Van Cleave
No solution here either but I am curious. Does the Event.COMPLETE still fire? On Thu, Dec 4, 2008 at 9:40 PM, Steven Sacks <[EMAIL PROTECTED]> wrote: > Just for clarification, it was 4 bytes (the size of an empty MovieClip in > AS2). I don't know if it's the same in AS3 (don't care enough to loo

[Flashcoders] JavaFX released

2008-12-05 Thread Jason Van Cleave
Curious to what others think... Interesting that it can play flvs out of the box. I haven't seen the feature in action but supposedly you can drag applications from the browser to the desktop. The free NetBeans IDE is a nice touch too. http://www.javafx.com/samples/ __

[Flashcoders] [JOB] Interactive Developer, Cincinnati, Ohio

2009-01-17 Thread Jason Van Cleave
Bridge Worldwide (my current employer) is looking for a couple of full-time Flash Developers. Details here: http://careers.vurvexpress.com/jobprofile.cfm?szWID=16390&szCID=73757&szOrderID=542394&szSiteID=1684 ___ Flashcoders mailing list Flashcoders@chat

Re: [Flashcoders] Multiple moviecliploaders

2008-02-12 Thread Jason Van Cleave
I usually would break out the thumbs into their own class with a MovieClipLoader for each but this may give you the same effect: function displayThumbs() { for (i = 0; i < modelsArray.length; i++) { var img_mcl:MovieClipLoader = new MovieClipLoader(); img_mcl.addListener(th

Re: [Flashcoders] Multiple moviecliploaders

2008-02-13 Thread Jason Van Cleave
I was certain I remember having to change this years ago to be able to download more than 4 files in IE. Here is the page that references the limit of 4 (&2) MaxConnectionsPerServer REG_DWORD (Default 2) Sets the number of simultaneous requests to a single HTTP 1.1 Server MaxConnectionsPer1_0Serv

Re: [Flashcoders] Minimize Tearing

2008-02-14 Thread Jason Van Cleave
_quality="BEST" may help you at some costs http://livedocs.adobe.com/flash/8/main/2509.html On Thu, Feb 14, 2008 at 10:06 PM, Elia Morling <[EMAIL PROTECTED]> wrote: > Are there any tricks for minimizing tearing? Like always run at 60hz? Is > there any way to control vsynch? > > Thanks, > El

Re: [Flashcoders] swf preview in mac oox finder

2008-02-14 Thread Jason Van Cleave
path finder (must have) does this, flvs too http://www.cocoatech.com/ On Thu, Feb 14, 2008 at 9:16 AM, Robin Burrer <[EMAIL PROTECTED]> wrote: > Hi All, > > does anybody know if there a way to preview swf file in the finder? > > I found this tool: > http://www.eltima.com/products/swf-live-previe

Re: [Flashcoders] How do you do this?

2008-02-26 Thread Jason Van Cleave
It looks like it is this guy who wrote his own 3d engine http://roxik.com/index.html looking at http://groups.google.com/group/away3d-dev/msg/23411b5e94b78b49 http://www.bit-101.com/blog/?p=909 On Tue, Feb 26, 2008 at 3:23 AM, <[EMAIL PROTECTED]> wrote: > this is very simple in math... y

Re: [Flashcoders] Error in Flex for automatically created classes

2008-02-26 Thread Jason Van Cleave
a couple of ways i use 1. Export a swc from your fla and Flex can use the classes in it 2. Load a complied swf at runtime and use getDefinition http://livedocs.adobe.com/labs/flex3/langref/flash/system/ApplicationDomain.html#includeExamplesSummary On Tue, Feb 26, 2008 at 8:49 AM, Johan Nyberg <

Re: [Flashcoders] Any issues with Safari Mac and mouse movement detection?

2008-02-26 Thread Jason Van Cleave
Did you try Safari on Windows? On Tue, Feb 26, 2008 at 12:34 PM, Paul Steven <[EMAIL PROTECTED]> wrote: > I have created a game that involves moving the mouse rapidly to control > the > speed of a character. The client has reported that it is not working on > Safari on the Mac. I have since asked

Re: [Flashcoders] 3 questions

2008-02-28 Thread Jason Van Cleave
1. check out describetype http://livedocs.adobe.com/flex/201/langref/flash/utils/package.html#describeType() 3. check for a width and height property of the bitmapdata to be greater than 0 before using it Heres a function i use but i also check if its too big to display private function isValid(

Re: [Flashcoders] forceSmoothing in a MovieClipLoader

2008-02-28 Thread Jason Van Cleave
Did the forceSmoothing ever make it in? I remember hearing about it but never saw anything official This workaround works well for static content http://www.kaourantin.net/2005/12/dynamically-loading-bitmaps-with.html On Thu, Feb 28, 2008 at 4:41 PM, Matt S. <[EMAIL PROTECTED]> wrote: > I'm fin

Re: [Flashcoders] 3 questions

2008-02-28 Thread Jason Van Cleave
doh - thats the function that I use before I try and draw an object - same point tho On Fri, Feb 29, 2008 at 1:05 AM, Jason Van Cleave <[EMAIL PROTECTED]> wrote: > 1. check out describetype > > http://livedocs.adobe.com/flex/201/langref/flash/utils/package.html#desc

Re: [Flashcoders] Access Amazons Simple storage S3

2008-03-07 Thread Jason Van Cleave
you probably have to use a LoadVars.sendAndLoad On Fri, Mar 7, 2008 at 4:28 AM, Barry Duggan <[EMAIL PROTECTED]> wrote: > Hi > > Has anyone got experience with using flash and Amazons S3? > > What I have to do is send this key to amazon > > ""http://webdeploy/r/mixes/mixreq.aspx?username= > "+u

[Flashcoders] AS3 XML Namespaces Hell

2008-03-14 Thread Jason Van Cleave
I have an app that is was pulling some XML like this with this i could load xml and eventually get an XMLList with private function onXMLLoaded(e:Event):void { var xml:XML = new XML(e.target.data); var items:XMLList = xml.item; } Now that we have move it over to a

[Flashcoders] Re: AS3 XML Namespaces Hell

2008-03-14 Thread Jason Van Cleave
var strippedXML:XML = new XML(String(xml.*)); var list:XMLList = strippedXML.item; } On Sat, Mar 15, 2008 at 12:24 AM, Jason Van Cleave <[EMAIL PROTECTED]> wrote: > I have an app that is was pulling some XML like this > > > >

Re: [Flashcoders] AS3 XML Namespaces Hell

2008-03-15 Thread Jason Van Cleave
eteHandler(evt:Event):void { > var data:XML = new XML(evt.currentTarget.data); > trace(data.toXMLString()); > trace(data.namespace("")); > default xml namespace = data.namespace(""); > trace(data.photos.item); > } > > > - Original Message

Re: [Flashcoders] Source Control [WAS] to mac or not to mac

2008-03-15 Thread Jason Van Cleave
My God. I can even commit my deploy folder with Subversive. This has been killing me for months. On Sat, Mar 15, 2008 at 6:23 PM, Muzak <[EMAIL PROTECTED]> wrote: > It allows you to setup projects (workspaces) and administer them easily. > Assembla uses Trac ;-) > So whatever comes with Trac, y

Re: [Flashcoders] AS3 XML Namespaces Hell

2008-03-16 Thread Jason Van Cleave
I think I have some other things that are tripping it up. Looking in the debugger my event.target.data is coming in partially unescaped http://tempuri.org/ "> wrote: > Odd, I used your xml for testing

Re: [Flashcoders] AS3 XML Namespaces Hell

2008-03-16 Thread Jason Van Cleave
script file (php, > asp, cf, etc..)? > > regards, > Muzak > > - Original Message - > From: "Jason Van Cleave" <[EMAIL PROTECTED]> > To: "Flash Coders List" > Sent: Sunday, March 16, 2008 9:10 AM > Subject: Re: [Flashcoders] AS3 XML N

Re: [Flashcoders] AS3 XML Namespaces Hell

2008-03-16 Thread Jason Van Cleave
to clarify, .net/sharepoint meaning a script. On Sun, Mar 16, 2008 at 2:49 PM, Jason Van Cleave <[EMAIL PROTECTED]> wrote: > its being returned from .net/sharepoint, here's the output > > http://tempuri.org/";><photos><item><![CDATA[ > http://www.so

Re: [Flashcoders] AS3 Classes and FLA not working together

2008-03-16 Thread Jason Van Cleave
Create a Class for AmlakPanel instead of letting Flash generate it may help you get a little further in debugging On Sun, Mar 16, 2008 at 9:20 PM, Andrei Thomaz <[EMAIL PROTECTED]> wrote: > hello Omar, > > I'm developing a graphical editor for e-learning content using AIR. The > Document Class wo

[Flashcoders] AS3 Coding Conventions Question

2008-03-16 Thread Jason Van Cleave
This is a pretty nice doc and I agree/use most of these while doing as3 development. The use of ALL_CAPS constants makes sense to me but I am not understanding what the purpose would be to not make the variable be the same as the value. For instance, this is what Adobe says and does from: http://

Re: [Flashcoders] Error #1009

2008-03-17 Thread Jason Van Cleave
you can't reference the stage in the Mountain class until it is added to the Display List. try this package { import flash.display.Sprite; import flash.events.Event; public class Mountain extends Sprite { private var x0:Number; private var y0:Number;

Re: [Flashcoders] Error #1009

2008-03-17 Thread Jason Van Cleave
some typos in there (coding in gmail) public function onStageAdded(e:Event):void { x0 =0; y0 =stage.stageHeight -150; x1=stage.stageWidth/2; y1=100; x2 =stage.stageWidth; y2 =stage.stageHeight -150; init(); } On Mon, Mar 17, 2008 at 12:14 PM, Jason Van Cleave

Re: [Flashcoders] How to retrieve all itmes in RSS

2008-03-19 Thread Jason Van Cleave
you may want to use yahoo pipes to manipulate the feed well as a proxy unless you have access to one of the domains at http://www.nytimes.com/crossdomain.xml http://www.yswfblog.com/blog/2007/09/19/yahoo-pipes-flash-smokin-good/ On Wed, Mar 19, 2008 at 2:20 PM, Glen Pike <[EMAIL PROTECTED]> wr

[Flashcoders] AIR write to PowerPoint

2008-03-27 Thread Jason Van Cleave
I am currently doing some research for a project that is asking for output to a ppt/pps file. The original version of this project used Director and some Xtras to accomplish this. In hopes of doing the newer version in Adobe AIR I am wondering if anyone has seen any AIR apps that have this feature

Re: [Flashcoders] AS2 SOAP web service

2008-04-01 Thread Jason Van Cleave
you can try and authenticate before you go to the page or hardcode your user/pass like var url:String = http://user:[EMAIL PROTECTED]; On Mon, Mar 31, 2008 at 11:32 AM, Gert-Jan van der Wel < [EMAIL PROTECTED]> wrote: > Hi everybody, > > I'm having some trouble with connecting to a SOAP web serv

Re: [Flashcoders] maximum length of an xml document?

2008-04-04 Thread Jason Van Cleave
in my experience the problem wasn't loading it but having the script time out trying to work with it. AS3 expoentially faster if you have a choice. On Thu, Apr 3, 2008 at 3:09 PM, Allandt Bik-Elliott (Receptacle) < [EMAIL PROTECTED]> wrote: > can anyone tell me what the maximum length i can go t

Re: [Flashcoders] Remove Flash on a page?

2008-04-17 Thread Jason Van Cleave
if overwriting the div contents isn't working you may want to look at SWFObject 2.0 which is I believe is more geared towards dynamic pages. Word of warning - the syntax is quite different from 1.5 if you are using it on other swfs On Thu, Apr 17, 2008 at 1:18 PM, Dave Mennenoh <[EMAIL PROTECTED

Re: [Flashcoders] addCuePoint - AS2

2008-04-28 Thread Jason Van Cleave
I don't think cuepoints are anything inherit to Flash video/NetStream class but just information that is injected in the flv metadata during encoding. If you create an array to hold cuepoints as objects and track them with an interval watching NetStream.time you should be able to create the same e

Re: [Flashcoders] Multiple query strings in a single URL

2008-05-14 Thread Jason Van Cleave
I think "FlashVars", 'whichSection=' + querySt('page'),'loggedin='+querySt('login')); needs to be "FlashVars", 'whichSection=' + querySt('page')+'&loggedin='+querySt('login'); You may want to check out SWFObject 1.5 that would make this much more readable ie: var so = new SWFObject("your.swf",

Re: [Flashcoders] flash animations Slow on IE7

2008-06-11 Thread Jason Van Cleave
really? Anyone have any further info on whether the doctype can effect Flash perfomance? On Mon, Jun 9, 2008 at 4:01 AM, maurice sallave <[EMAIL PROTECTED]> wrote: > yes. This is weird, I found out that was killing it. I check on > several sites from "thefwa" and most if not all have removed.

Re: [Flashcoders] Web Cam question

2008-06-21 Thread Jason Van Cleave
for cameras (mac compatible) that don't have their own web server EvoCam is pretty amazing http://www.evological.com/evocam.html On Sat, Jun 21, 2008 at 2:15 PM, Rich Shupe <[EMAIL PROTECTED]> wrote: > Dave, are you asking for a way to do that entirely external to Flash? That > is, Flash and

[Flashcoders] is it possible to embed h.264 in the timeline

2008-06-22 Thread Jason Van Cleave
I know this is not the best way to do this but I am wondering if it is possible to embed an h.264 file in the timeline like you can an flv. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashc

Re: [Flashcoders] as2 - method losing scope when called from timeline.

2008-06-23 Thread Jason Van Cleave
you should get compiler errors over this but did you import Model? On Mon, Jun 23, 2008 at 8:24 AM, Paul Evans < [EMAIL PROTECTED]> wrote: > untested suggestion?!... > > On 23 Jun 2008, at 10:20, paul cunningham wrote: > >> If I have this on the flash timeline, (CS3 or Flash 8) >> import test.Tes

[Flashcoders] AS3: public override function set x

2008-06-26 Thread Jason Van Cleave
I have a class that extends Sprite. When the x value of the Class is changed I want to know so I can change another value. So I tried override public function set x(n:Number) { super.x=n; //added functionality would happen here } but I get "Incompatible override" So I could build a setX me

[Flashcoders] Re: AS3: public override function set x

2008-06-26 Thread Jason Van Cleave
figured it out - i just needed to declare the return type as :void on the set public override function set x(n:Number):void { super.x=n; //works } On Thu, Jun 26, 2008 at 11:32 AM, Jason Van Cleave <[EMAIL PROTECTED]> wrote: > I have a class tha

Re: [Flashcoders] AS3: public override function set x

2008-06-26 Thread Jason Van Cleave
> You must keep the same argument name and the same return type in your > override : > > public override function set x(value:Number):void > { > super.x = value ; > // custom > } > > In your code you forget the :void ? > > EKA+ :) > > 2008/6/26 Jason

Re: [Flashcoders] filmmering FLV playback - why and how to fix that

2008-07-03 Thread Jason Van Cleave
was the original quicktime h.264? this format used to trip up squeeze and may have the same effect with the flash encoder. I would first try to export the file as uncompressed and reencode it to see if you are having the same issues On Thu, Jul 3, 2008 at 10:36 AM, Andrew Murphy <[EMAIL PROTECTED]

Re: [Flashcoders] Netstream fails to close

2008-07-05 Thread Jason Van Cleave
sounds like a scope issue where you have multiple netstream objects On Thu, Jul 3, 2008 at 9:54 PM, Barry Hannah <[EMAIL PROTECTED]> wrote: > I'm trying to fix a bug in a video player. > > Selecting a new video to play from a playlist, plays correctly but the > first clip's audio doesn't die. > >

Re: [Flashcoders] Netstream fails to close

2008-07-08 Thread Jason Van Cleave
you probably have tried this but what happens if you don't pause or close but just try to play another stream? On Sun, Jul 6, 2008 at 4:43 PM, Barry Hannah <[EMAIL PROTECTED]> wrote: > It's mentioned by plenty of people here: > http://livedocs.adobe.com/flash/mx2004/main_7_2/wwhelp/wwhimpl/common

Re: [Flashcoders] Why is amfphp cool?

2008-07-15 Thread Jason Van Cleave
These benchmarks sparked my interest in AMF http://www.jamesward.com/census/ On Tue, Jul 15, 2008 at 11:56 AM, Merrill, Jason < [EMAIL PROTECTED]> wrote: > >>Paul. > >>Um yea, more answers. > >> > >>I don't see whats wrong with that. > >>But I could be wrong.. > > Yes, you could be. The motivat

Re: [Flashcoders] Buffer flv from midpoint?

2008-07-24 Thread Jason Van Cleave
there were some efforts with php to create a "pseudo streaming" server http://www.flashcomguru.com/index.cfm/2005/11/2/Streaming-flv-video-via-PHP-take-two On Thu, Jul 24, 2008 at 9:03 AM, Christoffer Enedahl < [EMAIL PROTECTED]> wrote: > You need to have a flv streaming service running on a ser

[Flashcoders] Soundmixer.computeSpectrum and Loaded Swfs

2008-08-07 Thread Jason Van Cleave
I am loading in a few swfs, each with video embedded on the timeline. I am trying to use SoundMixer.computeSpectrum to make a visualization but it isn't getting any values. I can control the loaded swfs volume with soundTransforms and SoundMixer.areSoundsInaccessible() is reurning false. No cros

[Flashcoders] Re: Soundmixer.computeSpectrum and Loaded Swfs

2008-08-08 Thread Jason Van Cleave
For the record and in hopes in may help someone in the future... I was able to tap into the SoundMixer.computeSpectrum by loaded an mp3 with only silence. Then and only then was SoundMixer was able to tap into the sounds of the loaded swfs. weird On Thu, Aug 7, 2008 at 3:42 PM, Jason Van

Re: [Flashcoders] Object vs *

2008-08-08 Thread Jason Van Cleave
I don't think the primitives String, Boolean, Number, int, uint are Objects On Fri, Aug 8, 2008 at 6:07 PM, Dave Segal <[EMAIL PROTECTED]> wrote: > What is the difference between typing an instance as "*" and typing it as > "Object"? > > ___ > Flashcode

Re: [Flashcoders] how many coders here actually have a degree related to computer science?

2008-08-24 Thread Jason Van Cleave
A huge portion of getting a decent job or freelance work is getting your name out there and building experience by finishing projects. College was a great place for me to meet people with connections in the field. I dropped out when one of the adjunct professors hired me, that lead to a job at an

Re: [Flashcoders] SOT: (Rant) Why is Adobe.com such a bad website?

2008-09-04 Thread Jason Van Cleave
drupal is not that bad On Thu, Sep 4, 2008 at 3:50 PM, Radley Marx <[EMAIL PROTECTED]> wrote: > > > > As a designer and developer, I *envied* the design of macromedia.com. I > studied it. Other companies copied it. > > I remember what a beautiful website MM once had, and at the time how Adobe's >

Re: [Flashcoders] firefox 3 and swfobject 2

2008-09-08 Thread Jason Van Cleave
would you happen to be using adblock? I had an issue with this and swfobject 2 content http://www.asfusion.com/blog/entry/firefox-3-adblock-disaster On Mon, Sep 8, 2008 at 3:29 PM, sebastian <[EMAIL PROTECTED]> wrote: > just tested a site that I am 100% certain is using swfobject and swfaddress >

[Flashcoders] Flash Hardware Video Encoders

2008-09-23 Thread Jason Van Cleave
We are doing a live webcast event and I am wondering if you guys have any experience/insight with hardware encoders that support Flash VP6 encoding. The ones I am looking at in particular are the XStream series from kulabyte http://kulabyte.com/index.php/main/product_xstream/ and the StreamZ Live

Re: [Flashcoders] Can you embed .mp4 files in timeline?

2008-09-24 Thread Jason Van Cleave
I posted the same question a while back after not being able to do it either. I just tried emailing Adobe to see if it is a CS3 limitation and will post any response I get from them. On Wed, Sep 24, 2008 at 12:53 PM, Matthew Ganz <[EMAIL PROTECTED]> wrote: > Thanks for your response, Steven. Any i

Re: [Flashcoders] Can you embed .mp4 files in timeline?

2008-09-24 Thread Jason Van Cleave
no real explanation but Adobe said: CS4/Flash Player 10 will not allow this either (embedding H.264 video or AAC audio in the timeline). On Wed, Sep 24, 2008 at 1:22 PM, Jason Van Cleave <[EMAIL PROTECTED]> wrote: > I posted the same question a while back after not being able to do it

[Flashcoders] Stream Live from File

2008-11-08 Thread Jason Van Cleave
I am currently looking for a way to stream a file based video to an Flash Media Server. Flash Media Encoder apparently requires a camera or deck source. Has anyone seen a live media encoder that can use a file source? ANy possible workarounds other than dumping the file to a camera/deck and playin

Re: [Flashcoders] Stream Live from File

2008-11-09 Thread Jason Van Cleave
ut can't you just upload the file to the > server?? > > Glen > > Jason Van Cleave wrote: >> >> I am currently looking for a way to stream a file based video to an >> Flash Media Server. Flash Media Encoder apparently requires a camera >> or deck source. &g

[Flashcoders] LoadVars.sendAndLoad and Internet Explorer

2006-12-27 Thread Jason Van Cleave
I am having an issue where LoadVars.sendAndLoad() (currently using "POST") works the first time I use it in IE but subsequent calls to it fail. Firefox doesn't have an issue. Has anyone came across this? ___ Flashcoders@chattyfig.figleaf.com To change y

[Flashcoders] Re: swfObject+externalinterface

2007-01-24 Thread jason van cleave
Your swfObject code says that you are targeting 7 - Are you publishing for 7? var so = new SWFObject("display.swf", "mymovie", "200", "100", "7", ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://ch

[Flashcoders] Re: flash on osx thru parallels/bootcamp

2007-01-24 Thread jason van cleave
I do some overly complicated worflow just to keep using SEPY. It goes like this. Turn windows sharing on the the mac. Mount that share as a drive in Windows. I put all my classes here. I don't have the problem of the IDE not seeing the classes doing it this way. Have Flash open on the Mac with

[Flashcoders] Re: flash on osx thru parallels/bootcamp

2007-01-24 Thread jason van cleave
I have. I tried FlashDevelop a while back and am planning on giving it another go and with the AS3 stuff I have just seen. I like how Sepy works with native .flp files and had versions on both the mac and pc. (I also have a horrible addiction to it's autoformatting.) After hearing quite a bit

[Flashcoders] Re: IE6 problem with SWFAddress?

2007-01-29 Thread jason van cleave
I have ran into this nightmare and am still not sure what causes it. Just as I thought I had it beat it I would do a as2js call and the swf would disappear in IE. Something else I have seen is Firefox freeze up the swf. If I had to retroubleshoot it again I would look for this: -Are you using a

[Flashcoders] Compile .fla from Flex?

2008-01-08 Thread Jason Van Cleave
I know FDT can do this but I am having issues with the new version and AS3. Has anyone found a way of targeting a .fla from a Flex Builder Actionscript Project? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/ma

Re: [Flashcoders] Compile .fla from Flex?

2008-01-08 Thread Jason Van Cleave
On a Mac so FlashDevelop isn't an option. What I am looking to do is hit the run button from inside Eclipse/Flex Builder have it jump over to Flash and compile. It's a minor inconvenience when compared to editing ActionScript in the Flash Editor but I was hoping someone had built a bridge somehow.

Re: [Flashcoders] Compile .fla from Flex?

2008-01-09 Thread Jason Van Cleave
in eclipse). The result is a > nice test movie which switches focus/spaces screen from eclipse to flash > and > does a preview, a simple Cmd+W, Cmd+Tab closes the preview and returns me > to > where I left off in Eclipse. > > Hope this helps, > > ... > . jason m horwi

Re: [Flashcoders] Compile .fla from Flex?

2008-01-09 Thread Jason Van Cleave
t task keybinding in eclipse). The result > is > > a > > > nice test movie which switches focus/spaces screen from eclipse to > flash > > > and > > > does a preview, a simple Cmd+W, Cmd+Tab closes the preview and returns > > me > > > to >

Re: [Flashcoders] FlashVar question

2008-01-17 Thread Jason Van Cleave
top 2 links look the same to me, using FF on mac I am getting the redirect on the third - do you have any htaccess rules? On Jan 18, 2008 12:26 AM, Dave Mennenoh <[EMAIL PROTECTED]> wrote: > This is one of those that I feel I should know, or be able to figure out - > but I'm on a deadline, it's

Re: [Flashcoders] load flv and its metadata without start to play

2008-01-21 Thread Jason Van Cleave
you could use flvtool2 to get the metadata server-side and store it in a database http://www.inlet-media.de/ flvtool2 -P Prints out meta data to stdout On Jan 21, 2008 11:31 AM, Glen Pike <[EMAIL PROTECTED]> wrote: > Hi, > >Have a look at these 2 possible things to combine / work-around > g

Re: [Flashcoders] [AS3] how to tell Loader on which clip you are going to load?

2008-01-27 Thread Jason Van Cleave
Since myClip doesn't exist shouldn't you just deal with the loader? On Jan 26, 2008 4:57 AM, Leonardo Scattola - New Vision srl < [EMAIL PROTECTED]> wrote: > Hello everyone! > I wrote a little class extending the AS3 Loader class. > In my new loader I've added a reference to the clip to which att

Re: [Flashcoders] fullscreen

2008-02-05 Thread Jason Van Cleave
http://www.adobe.com/devnet/flashplayer/articles/full_screen_mode.html On Feb 5, 2008 12:09 PM, Pedro Kostelec <[EMAIL PROTECTED]> wrote: > Hi list > > Does enyone know how to make this fullscreen function like this one here: > http://bb.amctv.com/main.html ? > (Press the fullscreen button on th

Re: [Flashcoders] AS3 receiving mouse event on overlap sibling sprite

2008-02-05 Thread Jason Van Cleave
this may help http://www.tink.ws/blog/files/as3/IntersectionRectangle/ http://www.tink.ws/blog/as-30-hittest/ On Feb 5, 2008 3:37 PM, Martin Tremblay <[EMAIL PROTECTED]> wrote: > > Hi, > >Trying to have two sibling sprite that overlap receive mouse > event in the section that overlap. I

Re: [Flashcoders] Flash player 9.0.47 serious issue (maybe some 9 versions before too)

2008-02-08 Thread Jason Van Cleave
I have been working with this technique a lot today so I downgraded to 9.047on the mac but I am not getting any crashes. i did see this come through tho Error #2044: Unhandled IOErrorEvent:. text=Error #2036: Load Never Completed. I started with my code then tried the above changes with the file

Re: [Flashcoders] Flash player 9.0.47 serious issue (maybe some 9 versions before too)

2008-02-08 Thread Jason Van Cleave
issue. Making a Symbol, assigning the linkage without it works ok On Feb 8, 2008 3:30 AM, Jason Van Cleave <[EMAIL PROTECTED]> wrote: > I have been working with this technique a lot today so I downgraded to > 9.047 on the mac but I am not getting any crashes. > > i did see this com

Re: [Flashcoders] Export hidden layers turning itself off

2008-02-08 Thread Jason Van Cleave
I noticed it seems to happen when I paste something into Flash from Fireworks/Some other app On Feb 8, 2008 8:21 AM, Kevin Heppell <[EMAIL PROTECTED]> wrote: > Hello, > > I've got Flash CS3 and I've found that every now and then the export > hidden layers export option turns itself off... > This

[Flashcoders] RE: JSFL: Can I set the swf publish path?

2006-08-01 Thread Jason Van Cleave
Care to share the code? I would like to see if it works on a Mac as well as a PC Much appreciated ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders