Re: [Flashcoders] Projector Wrapper

2006-09-29 Thread jcanistrum
I use Zinc and it is fine, good support! 2006/9/29, Telmo Dias <[EMAIL PROTECTED]>: Hi, I read a few of those posts regarding sfw/projector wrappers. I would like to create a small kind of widget that stays in the systray (windows only), and connects to the server to update info, from time to

Re: [Flashcoders] FLV total time property?

2006-08-24 Thread jcanistrum
from the Flash 8 Reference Manual Example: The following example creates a progress bar using the Drawing API and the bytesLoaded and bytesTotal properties that displays the loading progress of video1.flv into the video object instance called my_video. A text field called loaded_txt is dynamic

Re: [Flashcoders] getting my info into flash

2006-08-22 Thread jcanistrum
some basic ideias a) to return the array as an XML b) depending on the data nature, return as string with values separeted by "," ";" "/" João Carlos Santiago 2006/8/22, Flash guru <[EMAIL PROTECTED]>: Hey all, I have a project a that calls for a database to spit out results to a query an

Re: [Flashcoders] Web Services and Flash (PART 2)

2006-08-11 Thread jcanistrum
http://www.adobe.com/devnet/flash/articles/flashpro_asp.html 2006/8/11, Patrick Jean <[EMAIL PROTECTED]>: Greetings. If anybody have experience with web services and flash, I have a question. I can communicate with the web service no problems, but in my case, I need to pass some xml attribut

Re: [Flashcoders] Madobe certified professional - still recommend?

2006-08-10 Thread jcanistrum
I´ve got one .but it didn´t provide any special upgrade to me, but it sounds good when you use it as a reference to someone else, but I have spend some time explaining that I´m not a designer -) 2006/8/10, Kevin Newman <[EMAIL PROTECTED]>: I was also interesting in hearing some responses to

Re: *** Spam *** Re: [Flashcoders] New Flash based website

2006-08-10 Thread jcanistrum
I have this old one from Jason M. Batchelor if you google it perhaps you find something newer function writeFlash() { // Jason M. Batchelor // [EMAIL PROTECTED] // Determine what client we're using... NS4=(document.layers); // The only reason we have to do th

Re: [Flashcoders] crossdomain

2006-08-09 Thread jcanistrum
TED]>: crossdomain.xml is not used when loading one swf into another. Have you added the path to your local swf to the Global Settings manager as a trusted local swf? See: http://www.adobe.com/devnet/flash/articles/fplayer8_security_04.html for details. -- Vishal On 8/9/06, jcanistrum &

[Flashcoders] crossdomain

2006-08-09 Thread jcanistrum
hi All, I´m new to security domain questions I´doing an small test to load content into one loader component, the test is runnig in a local machine but try to load an swf from my web site http://www.mvirtual.com.br/flashker/banners/banner0.swf' if you try in the browser it loads fine in web si

[Flashcoders] mx.transitions.Transition.IN ?

2006-07-21 Thread jcanistrum
I was praticing with on flash 8 components reference manual example like mx.transitions.TransitionManager.start(myMovieClip_mc, {type:mx.transitions.Zoom, direction:mx.transitions.Transition.IN, duration:1, easing:mx.transitions.easing.Bounce.easeOut}); into de Flash IDE when I switched to MTAS

Re: [Flashcoders] ActionScript Application Framework

2006-07-20 Thread jcanistrum
and where does your company decided to move for ? 2006/7/20, Ujjwal Kabra <[EMAIL PROTECTED]>: After nearly two years of working in ActionScript, my company decided that Flash development was too painful and just not worth the effort. This happened just about the time that I was actually gett

Re: [Flashcoders] Difference between null and undefined?

2006-07-19 Thread jcanistrum
I think null = explicity that the var points to nothing and undefined = never received any value or reference before Perhaps before Flash 7 all the vars with no assignments were set to null by default, I´m not sure 2006/7/19, Rifled Cloaca <[EMAIL PROTECTED]>: FlashCoders, I've recent

[Flashcoders] creating SWF or VIDEO on the fly ?

2006-06-26 Thread jcanistrum
hi All, I´d like to discuss some ideas about if is possible to produce an app using only AS2 that would get an JPG file, record some sound and them export them as SWF ou FLV, to import further im some other app. would it be possible ? -- João Carlos

Re: [Flashcoders] Object Listener?

2006-06-12 Thread jcanistrum
wouldn´t be possible to dispacth some proprietary Event of your class after some attribute changing ? mainly if the attributes only could be changed through the Class setters ??? just a guess 2006/6/12, janosch <[EMAIL PROTECTED]>: No, such thing does not exist. Perhaps you can use __resolv

Re: [Flashcoders] dispatching events

2006-06-08 Thread jcanistrum
I´d like to get a lift on this subject too because I´m still trying to understand the best way to generate my own events and I found this small example below which I mainly understood but seemed too simple compared with Eka "pro" solution ... but I´m still stucked with the fact that I don´t find

Re: [Flashcoders] reposition MC on release

2006-06-07 Thread jcanistrum
exactly as I told before try to use vars to reference to object as much as possible and use this o point to the current clip, if is _root fine, but if you move to another one it still works var myButton = this.attachMovie( "buttonMCinLibrary", "newName", this.getNextHighestDepth()) ; myButton.o

Re: [Flashcoders] How to hide SWF Assets from Internet users

2006-06-07 Thread jcanistrum
and I found more in the manual about sandBox sandboxType (security.sandboxType property)public static sandboxType : String [read-only] Indicates the type of security sandbox in which the calling SWF file is operating. System.security.sandboxType has one of the following values: ■remote: This

Re: [Flashcoders] How to hide SWF Assets from Internet users

2006-06-07 Thread jcanistrum
I think, not sure, it is not possible to avoid having them cached. I think you could use some kind of server side app ( asp, php, jsp ) to retrieve the correct map name with loadvars or better with xml and the load the map into your loader, so nobody could see the url where it comes from a

Re: [Flashcoders] Variable trace Problem

2006-06-07 Thread jcanistrum
When you are using siguiente_btn.onPress = function (){ if ( this.contador this in this context is seguiente_btn and not your app I think one solution could be to refer to siguiente_btn attaching from the library, with something like var contador: Number = 0 ; var nextBtn = this.attachMovie

Re: [Flashcoders] reposition MC on release

2006-06-07 Thread jcanistrum
if I understand it correctly, one way would be to use attachMovie like var myMC = this.attachMovie( "MC", "newName", this.getNextHighestDepth()) ; myMC.onRelease = function() { this.endX = -500; this.endY = -200; } 2006/6/7, Tony Watkins <[EMAIL PROTECTED]>: OK, not sure I can ex

Re: [Flashcoders] callBack for Beginners ?

2006-06-07 Thread jcanistrum
a good practice ;) Ask me if you need some help building this stuff. jcanistrum a écrit : > ok .. some of these solutions occurred to me, but are these solution the > best OO design pratices ? > > Because depending on how deep this process goes it would be hard to detect > or explict to so

Re: [Flashcoders] UML Modelling for AS2.0 applications ...

2006-06-07 Thread jcanistrum
http://www.codealloy.com/umlconverter.htm 2006/6/7, Ron Wheeler <[EMAIL PROTECTED]>: ArgoUML . Open Source from tigris.org. Stephen Ford wrote: > Can anyone recommend a good application or website for UML modelling of an AS2.0 application. > > I have taken a look at gmodeler and downloaded

Re: [Flashcoders] callBack for Beginners ?

2006-06-07 Thread jcanistrum
ok .. some of these solutions occurred to me, but are these solution the best OO design pratices ? Because depending on how deep this process goes it would be hard to detect or explict to some one else what your app does, I was expecting that would be possible, but I don´t know how to build some

Re: [Flashcoders] flickering components, depth issue?

2006-06-01 Thread jcanistrum
I´ve got problems whem mixing mcs as container for movies togheter with components and getNextHighestDepth() , but everything went fine after using DepthManager. 2006/6/1, mike cann <[EMAIL PROTECTED]>: HI, I had simmilar problems when using both the componants and the standard getNextHighestD

Re: [Flashcoders] Flash XML/CMS

2006-05-31 Thread jcanistrum
I begun to make a very simple one, since I don´t have much spare time do dedicate to it. I used the imageviewer class form Colin Mock as basis and one ComboBox e the ListBox. the most interesting to me is the ASP app which reads de directories and files below where it is and generates an XML file

Re: [Flashcoders] Flex vs. Flash IDE

2006-05-25 Thread jcanistrum
IDE > > Yes OpenLaszlo is a great solution. Ive used it quite a bit. They have > a awesome community for help and getting started with it. > > jcanistrum wrote: >> and what about OpenLaszlo, has someone given it a try ? >> >> I saw some very good demos overthere

Re: [Flashcoders] Flex vs. Flash IDE

2006-05-25 Thread jcanistrum
essage- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of jcanistrum Sent: Thursday, May 25, 2006 12:31 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] Flex vs. Flash IDE and what about OpenLaszlo, has someone given it a try ? I saw some very good demos over

Re: [Flashcoders] Flex vs. Flash IDE

2006-05-25 Thread jcanistrum
and what about OpenLaszlo, has someone given it a try ? I saw some very good demos overthere http://www.openlaszlo.org/demos 2006/5/25, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: Hi, I've been too busy developping in Flash lately to give a try to the new Flex yet, so excuse me if the follo

Re: [Flashcoders] Flex vs. Flash IDE

2006-05-23 Thread jcanistrum
and someone have experienced the openlaszlo to give some advice about it ? it promises the same as Flex, plus outputs in SWF and DHTML, but it is free and OpenSource. www.openlaszlo.org and to get more people in trouble ( just to decide about -) there is haXe, www.haxe.org also free, also gen