Re: [Flashcoders] Help...cant unload the xml menu...!!

2006-08-01 Thread Jose Maria Barros
can anyone help me? On 7/31/06, Jose Maria Barros [EMAIL PROTECTED] wrote: i singed too soon...when i test locally everything works great...but when i try it in internet..it doesnt..he doestn load the xml file why...? The code is the same...but i did alter the url..like you said..:

Re: [Flashcoders] Help...cant unload the xml menu...!!

2006-08-01 Thread Arul Prasad M L
might be a problem with the URL. 1. Make sure that the ../xml folder is in the WWW folder of ur server, not above it. or 2. Try doing this: var urlString:String = _root._url; urlString = urlString.substr(0,urlString.lastIndexOf(/)); urlString = urlString.substr(0,urlString.lastIndexOf(/) + 1);

Re: [Flashcoders] Interactive Map Examples

2006-08-01 Thread MetaArt
If you are findin' something that usen't Yahoo or Google maps API, and are interesting to display your own map (with zoom and other features), get a look at this (italian language): - go to http://www.longobardidelsud.it - click on 'Entra' (below in the window) - in the new window, click again

[Flashcoders] Bitmap Data transparencey

2006-08-01 Thread Sumeet Kumar
Hi All, I m using Bitmap data class in flash 8. I have set the transparency parameter to true and the fillcolor equal to 0x000 in the bitmap data class constructor bitmap_1: BitmapData = new BitmapData(width, height, true, 0x); This bitmapdata is send to a virtual printer,

[Flashcoders] Flash 9 ready for kiosk use?

2006-08-01 Thread Joe Cutting
I've just downloaded the Adobe Flash 9 Public alpha and used it to compile one of my old kiosk projects. As far as I can see it has none of memory leak issues which affected Flash 8 and stopped it being suitable for kiosks. This is great. Has anyone else found any memory leak issues with the

Re: [Flashcoders] Interactive Map Examples

2006-08-01 Thread Arul Prasad M L
Came across this one yesterday..http://www.backspace.com/mapapp/ ~Arul Prasad On 7/31/06, Matthew Ganz [EMAIL PROTECTED] wrote: hi. i'm looking for examples of interactive flash maps. i'm trying to see what else is out there as i build out my application...which will be a map of the US.

RE: [Flashcoders] Image Loading causes Flash slowness and high cpuutilization

2006-08-01 Thread Ben Smeets
The type of behaviour reminds me of when you load images and create multiple (10+) movieclips on top of eachother, the player gets stuck. In case you get any use out of it, Ben -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eric Raymond Sent: dinsdag 1

[Flashcoders] Need Flash Remoting Setup for Java

2006-08-01 Thread hidayath q
Hi all, I need to setup Flash Remoting for Java in my local system. Can anyone tell me the step by step procedure to make the flash remoting to work fine.bcos i have tried several times and icouldnt find out. I know sure i will get help from this people here with great stuff.Thanks in advance

Re: [Flashcoders] Need Flash Remoting Setup for Java

2006-08-01 Thread Jordan Chilcott
Download openAMF (http://www.openamf.net). It works with almost any J2ee server. All you really have to do as far as openAMF goes is put the jar in your /WEB-INF/lib folder and configure the openamf-config.xml to see your flash service and modify the web.xml to map to the gateway. You'll

[Flashcoders] strong typing, attachMovie

2006-08-01 Thread Martin Weiser
Hello, i got little hasel, when attaching movie from library linked to some class, into movieclip attached line above, the typing shows error: var myWorld:world = this.attachMovie(worldID, worldMC, 100); var myPlayer:player = myWorld.attachMovie(playerID, playerMC, 10,{_y:220}); not

Re: [Flashcoders] strong typing, attachMovie

2006-08-01 Thread Janis Radins
that is because attachMovie returns MovieClip. First of all dont forghet to extend MovieClip in those classes. A simple workaround would be: var myPlayer:player = player (myWorld.attachMovie(playerID, playerMC, 10,{_y:220})); 2006/8/1, Martin Weiser [EMAIL PROTECTED]: Hello, i got little

[Flashcoders] WSIWYG HTML text editor in Flash?

2006-08-01 Thread Merrill, Jason
Two related questions. In a nutshell, trying to make a WSIWYG HTML text editor for Flash 7. Question 1: Has anyone created an HTML text editor component or class of some kind in Flash? Basically, having a textfield containing a paragraph of text the user can apply bold, size, font, etc. to

Re: [Flashcoders] strong typing, attachMovie

2006-08-01 Thread Martin Weiser
thanks, a lot, extending for sure, thsi helped MW - Original Message - From: Janis Radins [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Tuesday, August 01, 2006 4:08 PM Subject: Re: [Flashcoders] strong typing, attachMovie that is because

Re: [Flashcoders] WSIWYG HTML text editor in Flash?

2006-08-01 Thread Adam Colpitts
There is a really nice Rich Text Editor component in DRK 5... not sure if you've seen this. It's in the Flash UI Component Set 4 Update. On 8/1/06, Merrill, Jason [EMAIL PROTECTED] wrote: Two related questions. In a nutshell, trying to make a WSIWYG HTML text editor for Flash 7. Question 1:

Re: [Flashcoders] WSIWYG HTML text editor in Flash?

2006-08-01 Thread Tom Rhodes
i've made some simple ones for css sites, that get their copy out of a db. i used textformats back in the flash 6 days, then in the output string, once you've applied the formatting in the editor text field, you look for the textformat tags, strip them out and replace with what you need for

RE: [Flashcoders] WSIWYG HTML text editor in Flash?

2006-08-01 Thread Giles Taylor
You want to be using the TextFormat class. If you use it on an htmlTextField then flash does all the html coding for you; much easier! Giles -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Merrill, Jason Sent: 01 August 2006 15:11 To: Flashcoders mailing

RE: [Flashcoders] WSIWYG HTML text editor in Flash?

2006-08-01 Thread Merrill, Jason
Haven't DevNet Resource Kits been discontinued? If so, how would I get my hands on that? If not, how would I get my hands on that? :) Thanks. Jason Merrill Bank of America Learning Organization Effectiveness - Technology Solutions -Original Message- From: [EMAIL

RE: [Flashcoders] WSIWYG HTML text editor in Flash?

2006-08-01 Thread Merrill, Jason
strip them out and replace with what you need for the corresponding styles for your site Right, if I follow you, that's similar to what I have tried, but I can't get the textfield to re-render the HTML tag - it shows the tag literally if I use replaceText() or replaceSel(). Or how would

Re: [Flashcoders] Interactive Map Examples

2006-08-01 Thread Matthew Ganz
thanks for sending all those examples. i tried a test implementing yahoo maps yesterday but quickly realized that instead of a mapping solution i'm looking for more of a navigational interface whereby you can select a state and then drill down to the county level for more information. i found

Re: [Flashcoders] WSIWYG HTML text editor in Flash?

2006-08-01 Thread Marcelo Volmaro
http://osflash.org/flashtextarea On Tue, 01 Aug 2006 11:35:49 -0300, Merrill, Jason [EMAIL PROTECTED] wrote: strip them out and replace with what you need for the corresponding styles for your site Right, if I follow you, that's similar to what I have tried, but I can't get the

[Flashcoders] Blur text Interactive effect-- HOW TO??

2006-08-01 Thread Tamer Qarrain
Hi All Can anybody lead me to a tutorial or idea of how would I achieve the below link interactivity and effect? http://www.screenvader.com/root.html Appreciatively Tamer ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or

RE: [Flashcoders] WSIWYG HTML text editor in Flash?

2006-08-01 Thread James Booth
I just did exactly this, a couple of days ago. I created a class that can apply any kind of supported HTML formatting. The idea seemed daunting at first, but the class is relatively small. You can assign/remove textfields that it should watch. I don't have it here with me right now, but here's

[Flashcoders] LocalConnection, Trying Again

2006-08-01 Thread Jessica Hensley
I posted a fairly involved question last week about a problem I'm having with a localconnection working the same across different browsers and Mac versus PC. I haven't had much luck finding an answer, so I thought I would try one last time to just see if anyone has experienced anything like this

RE: [Flashcoders] Loading a 3500 entry XML file

2006-08-01 Thread Clayton
Thanks for the assist guys! I'm just looking through the SAX XML parser documentation right now...will try that first, and also see if I can't T. Michael's technique to work as well. We've kind of deciphered the root (no pun intended) of the problem with the whitespace. Running some automated

RE: [Flashcoders] WSIWYG HTML text editor in Flash?

2006-08-01 Thread Matthew Simpson
Jason, We found a copy of 5 on Limewire...If you fail to find one, let me know off-list. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Merrill, Jason Sent: Tuesday, August 01, 2006 10:29 AM To: Flashcoders mailing list Subject: RE: [Flashcoders]

RE: [Flashcoders] WSIWYG HTML text editor in Flash?

2006-08-01 Thread Merrill, Jason
That seems to be a flash file specifically for HTML forms and uses a large .js file for configuration. Could this be loaded into a Flash file? I mean, I know it could, but it doesn't seem like it would work if you did, and how would you get the end string from it? Jason Merrill Bank of America

Re: [Flashcoders] LocalConnection, Trying Again

2006-08-01 Thread John Grden
Hey Jessica, I don't know if I caught your first email - what's the problem specifically? Do you know about the 40k limit? if so, what are you doing to accomodate that? JPG On 8/1/06, Jessica Hensley [EMAIL PROTECTED] wrote: I posted a fairly involved question last week about a problem I'm

RE: [Flashcoders] Image Loading causes Flash slowness and high cpu utilization

2006-08-01 Thread Eric Raymond
Hmmm. This is pretty close to what we are doing. At any given time, we are loading 12 images total which are stacked on top of each other in four canvases. And flex treats each component as it's own movieclip. Any idea on how we might work around this issue or diagnose it further? Any

Re: [Flashcoders] Custom cacheAsBitmap with scale and rotate

2006-08-01 Thread Ramon Miguel M. Tayag
I wrote something a while back it's up in Flashkit. That may have been the one you saw. BitmapDataManager. http://board.flashkit.com/board/showthread.php?t=659163 On 7/31/06, Seb L [EMAIL PROTECTED] wrote: Hi guys, So cacheAsBitmap is great, but it re-renders the bitmap every time you

Re: [Flashcoders] Custom cacheAsBitmap with scale and rotate

2006-08-01 Thread Ramon Miguel M. Tayag
The problem with that is once you rotate or scale it it reverts back to vector. Also another neat thing about dynamically forcing something to become a bitmap is it makes your sites loads smaller (as compared to raster), if it's a largely vector site. The problem with largely vector drawings is

Re: [Flashcoders] WSIWYG HTML text editor in Flash?

2006-08-01 Thread Marcelo Volmaro
It was developed with that in mind, but the class itself can be used as standalone editor (I´m already using it for some projects). You simply set the content by writting to the _content property of the HTMLeditor class and get the content by reading that property. Currently i don´t have

[Flashcoders] Weird getURL behavior

2006-08-01 Thread Merrill, Jason
I'm going crazy with this. Hopefully, I'm just missing something stupid. Weird getURL behavior in my Flash 8 player. Is there any reason why a Flash file here: http://loerepository/evaluationGallery/myFlashFile.swf Would not be able to link to this:

Re: [Flashcoders] ExternalInterface, embed tag and IE

2006-08-01 Thread Geoff Stearns
the short answer is you probably just need to give the embed tag an Id attribute. the long answer is: why can't you use an object tag? that makes absolutely no sense at all. even more: you should be using a Javascript solution like SWFObject anyway, since that will skip the 'click to

Re: [Flashcoders] String Empowerment

2006-08-01 Thread Heerko van der Kooij
Hi Steven, Maybe i'm saying something stupid here, but would this be a prettier way to do the capitalize? String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + this.substr(1).toLowerCase(); } gr, heerko On 28-jul-2006, at 0:39, Steven Sacks | BLITZ

[Flashcoders] tweening multiple properties simultaneously

2006-08-01 Thread Matthew Ganz
hi. i'm using the tween class to move a map movie clip's x and y properties. so whichever state the user clicks on my US map movieClip, it gets centered on the stage. it works great like this: public function expand(activeState:MovieClip) { var nX:Number = (Stage.width/2) -

Re: [Flashcoders] tweening multiple properties simultaneously

2006-08-01 Thread Rich Rodecker
there is a class out there called TweenExtended...it works exaclty the same way as the Tween class, excpet you pass in arrays for the properties you want to tween, and their corresponding starts/finish values. http://www.sqcircle.com/downloads/ On 8/1/06, Matthew Ganz [EMAIL PROTECTED]

Re: [Flashcoders] tweening multiple properties simultaneously

2006-08-01 Thread MetaArt
In my experience, just two simultaneous tween actions don't give any problem... however, try to scale first, and then move... * Enrico Tomaselli * web designer [EMAIL PROTECTED] http://www.metatad.it * Skype: MetaArt RSS: http://www.metatad.it/mnfeeder.php

[Flashcoders] How to make changes to a parent class

2006-08-01 Thread Tim
Hi When dealing with a class (Class A) that is extended by a number of other classes (Child 1, Child2...), each of which has their own non-inherited properties and methods, what is the general consensus on the best way to add a parameter to the constructor of the parent class? The problem I'm

Re: [Flashcoders] tweening multiple properties simultaneously

2006-08-01 Thread Cédric Néhémie
Hi Matthew, There is also MultiTween classes in the pixlib framework on OSFlash : http://osflash.org/pixlib Hope that can help you Cédric Rich Rodecker wrote: there is a class out there called TweenExtended...it works exaclty the same way as the Tween class, excpet you pass in arrays for

[Flashcoders] LoadVars vs XML for pulling in HTML

2006-08-01 Thread ben farrell
Hey, I'm not really stuck on this, but I'm very curious what's going on. I was using loadVars to pull in HTML - I tried my personal site which worked fine, and I tried google and amazon, and the HTML source was very much out of order. I tried some other sites I made, and it seems that if they

[Flashcoders] XPathAPI problems with wildcard searches

2006-08-01 Thread Lori Hutchek
I've been having problems with the xpathapi. I've been trying to do a wildcard search and according to all the documentation it's supported yet even simple straight forward search isn't working. Can anyone help? Example : code import mx.xpath.XPathAPI; x = new XML(test thing='boo'items

RE: [Flashcoders] LocalConnection, Trying Again

2006-08-01 Thread Jessica Hensley
I do know about the 40K limit and I do believe that is part of the problem, when I am able to get things to work properly at all. The gist of my project is that I have an HTML page that loads two flash files, the first file loads a series of secondary movieclips and when each one of those loads,

[Flashcoders] dynamic shared libraries

2006-08-01 Thread jordan robinson
Is there any way to set the path of the shared library dynamically through AS? Hard coding paths is just plain evil, and i'm hoping to stay away from it. I am building this in flash 8 but exporting for flash 7 as 2.0 for reference. ANy help would be great, thanks in advance. Jordan

Re: [Flashcoders] Help...cant unload the xml menu...!!

2006-08-01 Thread Jose Maria Barros
Hi Arul, Well...i tested..and the problem still there...maybe its because the xml object is not in the root?its inside a movieclip, then inside other movieclip. I case you dont understand what i mean is the code that ive put here...is in a frame that is not in the root, but inside a

RE: [Flashcoders] String Empowerment

2006-08-01 Thread Steven Sacks | BLITZ
Right you are! Thanks! BLITZ | Steven Sacks - 310-551-0200 x209 -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Heerko van der Kooij Sent: Tuesday, August 01, 2006 9:12 AM To: Flashcoders mailing list Subject: Re: [Flashcoders] String

RE: [Flashcoders] Flash 9 ready for kiosk use?

2006-08-01 Thread Steven Sacks | BLITZ
I have no idea what memory leak issues you're talking about with the Flash player. I've created a few applications that were designed to run for days and even weeks at a time without a restart and I was able to eliminate all memory leak and memory waste issues with Flash 6, 7 and 8 with careful

Re: [Flashcoders] ExternalInterface, embed tag and IE

2006-08-01 Thread Vishal Kapur
I have tried giving the embed tag an id attribute as well, with no change. I guess no one has tried this before? It seems possible that this is a bug/enhancement for the Flash team. In terms of why I can't use an object tag, I should have clarified that I do not have control over the HTML

[Flashcoders] Printing a swf from inside a text field

2006-08-01 Thread Paul Venton
Hello I'm building a Flash 8 application that parses XML files containing HTML and a separate CSS file to build its various layouts using homebrew components. So far I'm having a wail of time as almost everything has been working as expected. One of this project's requirements is that

Re: [Flashcoders] XPathAPI problems with wildcard searches

2006-08-01 Thread ryanm
r = XPathAPI.selectNodeList(x,/*/item); The problem is that / and * are both node operators and math operators, so your statement is ambiguous. The obvious answer, based on your example XML, is to use ./items/item, but I don't know if your real XML is more complex or not. If it is, you

[Flashcoders] CPU Performance Profiling? (

2006-08-01 Thread Vibol Hou
I've got a flash video application that performs well on Intel-based Mac OS X, but performs poorly on G4 Mac OS X (PC performance is fine across many processor speeds). The 'poor' performance is characterized by sluggish video playback and sluggish interactivity, sluggish scrollpane scrolling,

RE: [Flashcoders] XPathAPI problems with wildcard searches

2006-08-01 Thread Lori Hutchek
The reason I am trying to do the wildcard search is because I have nodes of the same name at different levels and I need them all. So giving a specific path wouldn't give me all of the nodes I need. Here's an expert... xml node nodid=cue14 /node node nodid=cue15

RE: [Flashcoders] XPathAPI problems with wildcard searches

2006-08-01 Thread Dave Watts
x = new XML(test thing='boo'items name='blah'item foo='bar'/item foo='blah'//items/test); r = XPathAPI.selectNodeList(x,/*/item); If I understand correctly, that search would not find anything, because item is not a child of test, but rather of items. If I'm reading your XPath expression

Re: [Flashcoders] XPathAPI problems with wildcard searches

2006-08-01 Thread ryanm
The reason I am trying to do the wildcard search is because I have nodes of the same name at different levels and I need them all. So giving a specific path wouldn't give me all of the nodes I need. That's not what your select says, the * wildcard only selectes children. /*/item = select

RE: [Flashcoders] Weird getURL behavior

2006-08-01 Thread Merrill, Jason
Let me add, this only happens on my machine, not my co-workers - my co-workers have the identical push of SP2 for the OS and IE, and the same internet browser settings. As well as the same list of trusted sites. Any ideas anyone? Jason Merrill Bank of America Learning Organization

[Flashcoders] Strange Radio Button Behavior Problem

2006-08-01 Thread Randal
I have come across what looks like a bug to me in the behavior of the radiobutton component in Flash 8 Pro. I have posted a movie at: http://huntingdesign.com/radioproblem/radioproblem.html And the source FLA at: http://huntingdesign.com/radioproblem/radioproblem.fla Here is the code

[Flashcoders] security issues - offline application

2006-08-01 Thread Céline Nguyen
I've been working on a game for offline use, and it's been working fine for the past few months. Now the client wants that game to include an activation process indicating the number of times the user can play the game and retrieving 1 credit for each game played. Credits should be downloaded

RE: [Flashcoders] Strange Radio Button Behavior Problem

2006-08-01 Thread phaedrus
The radio button is changing state after the clip event fires. Because of this: When you first click High, nothing has been set yet. After the event is done, the High radio button gets set on. The next time you check, the High radio button is on when the clip event is fired and this is

RE: [Flashcoders] String Empowerment

2006-08-01 Thread Steven Sacks | BLITZ
Don't use the toLowerCase() Because when I write my name like: Bernard Visscher I don't want the output to be Bernard visscher with the lowercase V. That's what capitalize() does. For what you're wanting you should use toTitleCase(). ___

RE: [Flashcoders] CPU Performance Profiling? (

2006-08-01 Thread Steven Sacks | BLITZ
You may be new to Flash development, but it's no secret that Flash performance on the PowerPC Macs is, to understate it, lacking. The only known solution is to take a deep breath and accept the reality that there is nothing you can do about the sluggish performance on those machines, and that, in

RE: [Flashcoders] String Empowerment

2006-08-01 Thread Bernard Visscher
Sorry.. my mistake... -Oorspronkelijk bericht- Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Namens Steven Sacks | BLITZ Verzonden: woensdag 2 augustus 2006 0:16 Aan: Flashcoders mailing list Onderwerp: RE: [Flashcoders] String Empowerment Don't use the toLowerCase()

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

2006-08-01 Thread Steven Sacks | BLITZ
Hello, I'm trying to figure out a way to set the Publish path of the SWF of the current document using JSFL. Does anyone know how to accomplish this? Thanks! --- Steven Sacks Senior Flash Developer [EMAIL PROTECTED] Ph: 310-551-0200 x209 Fax: 310-551-0022 BLITZ | 405 S Beverly Drive, 3rd

Re: [Flashcoders] CPU Performance Profiling? (

2006-08-01 Thread Shane Korin
First off hello everyone, this is my first post to flashcoders :) And while we're on the topic, does anyone know of an application or anything for profiling CPU usage in Flash? I'd just like to be able to see which parts of my flash movies are using the most CPU and then be able to focus on

Re: [Flashcoders] security issues - offline application

2006-08-01 Thread Céline Nguyen
Tim, thank you for your answer. Yes this is an issue, the client wants to run the game mostly offline. Go online only to download more credits (ex.100 more in one shot and download all of them and run them one by one locally). I was thinking of repackaging the swf with FlashStudio

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

2006-08-01 Thread Steven Sacks | BLITZ
Just to clarify, I don't want to exportSWF(), I want to change the publish path of the SWF file and then save the FLA with that set path. This is so I can create template FLAs and have them all publish themselves to ../deploy/FILENAME I can import and export publish profiles, but I want to

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

2006-08-01 Thread eric dolecki
I have a build script used to produce SWFs from FLAs in one location, and deposit the SWFs in another location - which I believe is what you want? It indeed uses JSFL and its a dream. If this is what you need, I can dig it up. - e.dolecki On 8/1/06, Steven Sacks | BLITZ [EMAIL PROTECTED] wrote:

[Flashcoders] UIScrollbar disabled state?

2006-08-01 Thread Mike Pearce
First time I've noticed this.. Where are the disabled state skins for UIScrollbar? Seems crazy that as soon as the scrollbar is disabled the buttons return to halo? Anyone noticed this or am I missing something? Ie: you can set - upArrowUpName, upArrowOverName, but not the disabled

[Flashcoders] Ignoring error in code on compile

2006-08-01 Thread Ramon Miguel M. Tayag
Hi everyone, I want to use Screenweaver to create a desktop application. Just like the other SWF2EXE programs, you can arbitrarily call an object, like, swFile.function to access the commands. The problems comes in when I put these commands in classes and I compile the classes. How do I tell

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

2006-08-01 Thread eric dolecki
thats a whole lotta work, but glad that works for you. On 8/1/06, Steven Sacks | BLITZ [EMAIL PROTECTED] wrote: I've solved it. I export the publish profile. I read that file in and swap out the values of the nodes. I save that string to the drive (overwriting the old one). I import the new

[Flashcoders] Mtasc Delegate

2006-08-01 Thread jcarlos
hi All, I´m having problems using Delegate with MTASC this works fine Flash compiler if (_actionRelease) { container_mc.onRelease = Delegate.create (this, handleRelease); } but doesn´t work with MTASC Any help? Directions ? Thanks in advance João Carlos

Re: [Flashcoders] Mtasc Delegate

2006-08-01 Thread John Grden
what's the error you get? or does it just simply not work? JPG On 8/1/06, jcarlos [EMAIL PROTECTED] wrote: hi All, I´m having problems using Delegate with MTASC this works fine Flash compiler if (_actionRelease) { container_mc.onRelease = Delegate.create (this, handleRelease); }

Re: [Flashcoders] CPU Performance Profiling? (

2006-08-01 Thread Vibol Hou
Thanks for your response Steven. I am a relatively new to the flash scene, but AS is easy enough to learn (similar enough to JS) that I've been able to develop fairly complex applications to date. Of course, the nuances of the platform escape me with my lack of overall experience and that has

Re: [Flashcoders] UIScrollbar disabled state?

2006-08-01 Thread Vibol Hou
You can open up the Scrollbar.as file and find the list of skin variables in there. C:\Program Files\Macromedia\Flash 8\en\First Run\Classes\mx\controls\scrollClasses if you're on a PC -V Mike Pearce wrote: First time I've noticed this.. Where are the disabled state skins for

Re: [Flashcoders] security issues - offline application

2006-08-01 Thread Vibol Hou
You could add complexity to the process by encrypting the credits before placing them in the local store. Naturally this means the key would be stored in the player, but the normal user probably isn't sharp enough to be able to decompile and find the key, let alone figure out how to access the

[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

Re: [Flashcoders] Mtasc Delegate

2006-08-01 Thread Adam Pasztory
Use this instead. It will make you happy. http://www.person13.com/articles/proxy/Proxy.htm -Adam On 8/1/06, John Grden [EMAIL PROTECTED] wrote: what's the error you get? or does it just simply not work? JPG On 8/1/06, jcarlos [EMAIL PROTECTED] wrote: hi All, I´m having problems using