Re: [Flashcoders] flash cms

2007-03-17 Thread Snepo - Arse
We make a Data Platform for Flash that removes the need for a database and middle ware: http://depot.snepo.com Not a CMS but you can handle all your data/permission management through AS and/or the Flash IDE so dynamic content development with Depot is a cinch. Regards, Arse

Re: [Flashcoders] Addressing functions in frame script from classscript

2007-03-17 Thread Roman Hippler
If your class extends MovieClip and you have attached it to a MovieClip in the library, you should be able to call the functions on the timeline just as if they where methods of your class. You just have to make sure that - your class is dynamic - you invoke the functions with the this keyword

RE: [Flashcoders] math.round question

2007-03-17 Thread Kerem İşeri
Just replace the code with below: loadProgressOutput = int((this.getBytesLoaded()/this.getBytesTotal())*100); kerem. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gustavo Duenas Sent: Friday, March 16, 2007 11:42 PM To: Flashcoders mailing list

[Flashcoders] wordpress and flash integration

2007-03-17 Thread Kerem İşeri
Hi everyone... I am starting a new project, it will be my first trial on the subject.. I thought that I could use wordpress as a database for contents and pictures for my site. It will be so cool if I can make it, because I will get rid of the coding on php and admin panel of this project,

Re: [Flashcoders] wordpress and flash integration

2007-03-17 Thread Glen Pike
Hi Kerem. It depends what you want to parse. You could use the RSS feed as a way of getting data into Flash as it is XML, which Flash can deal with very easily. If you want to talk to the database more directly, you will have to consider using Flash Remoting - have a look to see

Re: [Flashcoders] Super and this

2007-03-17 Thread Ron Wheeler
Just to make your life simpler. You do not instantiate a class; you instantiate an instance(object) of a class. A class is only a definition and is stored in Flash as a definition which can be instantiated as many times as required. The definition refers to the definitions of the classes that

[Flashcoders] embedded fonts yet again

2007-03-17 Thread Elie Zananiri
Hello, I am having a problem with embedded fonts that is a little peculiar and I was wondering if someone knew how to fix it. I have an SWF which uses a custom font that works properly. I created a Font in the library, added it to a TextFormat, set it to the TextField, and there is no

Re: [Flashcoders] flash cms

2007-03-17 Thread Eric Walton
Try this or http://www.flashblocks.com/ On 3/16/07, Chris Tague [EMAIL PROTECTED] wrote: Hello, The other day i ran accross a link to a CMS system specifically for flash that doesn't require a database, i can't for the life of me find that link now...anyone know what i was talking about? I

Re: [Flashcoders] flash cms

2007-03-17 Thread Chris Tague
Snepo was the one i waas looking at! It looks interesting, i didn't realise though that it was one where you could update content directly through the flash app.. I was actualy looing for a simple kind of admin interface which rather than writing content to the database, stores files images etc.

[Flashcoders] Flash, PHP and mysql Costumer Database

2007-03-17 Thread Michael Boski
Does anyone know an open source Flash, PHP and mysql Costumer Database. (with generic fields name, address ...) Or even on that you purchase the code. if it uses AMFphp all the better. thanks, mike ___ Flashcoders@chattyfig.figleaf.com To change

Re: [Flashcoders] flash cms

2007-03-17 Thread Eric Walton
You are welcome, thanks for the heads up on the other one. Eric Walton 9 / Edub9 To view more about The Artwork of Eric Walton 9 / Edub9 please visit the following: www.hollywoodfineart.com www.myspace.com/ericwalton9_edub9 Providentia Marketing LLC 754-246-7620 Cel On 3/17/07, Chris Tague

Re: [Flashcoders] flash cms

2007-03-17 Thread Eric Walton
Just a note, I was looking at snepo and right off the bat here is what I found which is not right. Click the folder name to browse and retrieve Depot data. In this demo you are not able to add a new Depot instance or change user permissions. This is because Depot Explorer is connected to our

Re: [Flashcoders] embedded fonts yet again

2007-03-17 Thread Glen Pike
Hi, In your font FLA: In the font properties / linkage, do you export for runtime sharing? In your container FLA: Drag the font from the library of the font FLA into your container library - look at the linkage, it should show that it is imported for runtime sharing from

Re: [Flashcoders] wordpress and flash integration

2007-03-17 Thread Rostislav Hristov
There're different ways to make this happen. Check out this nice Flash/Wordpress integration: http://tvwonline.net/flash/#page_id=44article=35 On 3/17/07, Glen Pike [EMAIL PROTECTED] wrote: Hi Kerem. It depends what you want to parse. You could use the RSS feed as a way of getting

Re: [Flashcoders] math.round question

2007-03-17 Thread T. Michael Keesey
int() is deprecated in favor of Math.floor() (for numbers) or parseInt() (for strings). In AS3 int has a different meaning (a data type instead of a function). On 3/17/07, Kerem İşeri [EMAIL PROTECTED] wrote: Just replace the code with below: loadProgressOutput =

[Flashcoders] Previously working SWF fails when reloaded in IE

2007-03-17 Thread Mark Winterhalder
While I try to find the origin of the problem to work around it, has anybody seen this before? The SWF works fine when the page is first loaded, but when you hit F5 a NaN propagates through the values, breaking everything. The SWF loads an XML, if that makes a difference, but this part seems to

Re: [Flashcoders] Pause button behaviour

2007-03-17 Thread Glen Pike
In answer to my own problem... The pause issue was unrelated to my code - it was a problem with relative / absolute URL's that has been plaguing me for the last 2 days. I had tried to clean up my Flash app and separate my swf's from my HTML, etc. In my HTML I had loaded in the flash using

Re: [Flashcoders] Take me off your list

2007-03-17 Thread Buster
How does one subscribe to JUST the digest version (that's all I want and that's what I signed up many, many months ago) - I'm trying to limit the number of emails and I see no way except to unsubscribe, then re-subscribe for the Digest version. Is there a better way ? Thanks in advance ! John

Re: [Flashcoders] Take me off your list

2007-03-17 Thread David Holroyd
On Sat, Mar 17, 2007 at 05:12:47PM -0700, Buster wrote: How does one subscribe to JUST the digest version (that's all I want and that's what I signed up many, many months ago) - I'm trying to limit the number of emails and I see no way except to unsubscribe, then re-subscribe for the Digest

[Flashcoders] What is deprecated from AS2 in AS3 ...

2007-03-17 Thread Stephen Ford
Anyone have a list of what is deprecated from AS2 when migrating to AS3 (or even whats deprecated from AS1 to AS2).I'm currently skimming every single class available in Flash AS2 and want to know what I can skip (i.e: what is no longer relevant).There must be a list of something like this

Re: [Flashcoders] What is deprecated from AS2 in AS3 ...

2007-03-17 Thread Zeh Fernando
Anyone have a list of what is deprecated from AS2 when migrating to AS3 (or even whats deprecated from AS1 to AS2).I'm currently skimming every single class available in Flash AS2 and want to know what I can skip (i.e: what is no longer relevant).There must be a list of something like this

[Flashcoders] Object.registerClass ...

2007-03-17 Thread Stephen Ford
Is Object.registerClass no longer relevant when using AS2 and OOP structure.I understand AS2 class structure, inheritance, etc but am trying to understand how it was done in AS1 and if I need to know any of the techniques used before AS2.Thanks.___

[Flashcoders] smaller project management

2007-03-17 Thread dnk
Please reply off list as I do not want to congest this list with an off topic (is it?). Can anyone recommend a smaller open source project management web based system that is more directed at workign with a client as opposed to working internally? Thanks! d

Re: [Flashcoders] flash cms

2007-03-17 Thread Snepo - Arse
Eric, I'm not sure what you mean by 'not right'? The downloadable versions of Depot have no such restrictions. The demo is currently not working as we have been moving servers though al demos are available within the download. Regards, Arse www.snepo.com www.arseiam.com On

Re: [Flashcoders] flash cms

2007-03-17 Thread Snepo - Arse
Chris, At the moment depot stores data (any native object) in a balanced tree which isn't in human readable form. We are looking at implementing a 'retrieve as file type' function as well as tools that marshal Depot data into readable objects. We welcome any feedback on how Depot may be