Re: [Flashcoders] Can anyone download Flex Builder 2?

2006-10-27 Thread Bbt Lists
Steven Sacks | BLITZ wrote: http://www.adobe.com/cfusion/tdrc/index.cfm?product=flex I click download and it hangs for about 15 seconds before it reloads the page. No download occurs in either IE or Firefox. I downloaded this just fine from home last night. Anyone else not able to download

Re: [Flashcoders] Can anyone download Flex Builder 2?

2006-10-27 Thread Bbt Lists
Steven Sacks | BLITZ wrote: Can you link me to your forum post? BLITZ | Steven Sacks - 310-551-0200 x209 Looking for it, however as Jason mentioned the adobe site is having issues - I still can't even get the page to load to get the link. -- dnk

Re: [Flashcoders] Flex Builder 2 for Mac - 6 things you need to know

2006-10-27 Thread Bbt Lists
Dave Wood wrote: Hi Have downloaded Flex Builder for mac, installed it and launched the app. It opens revealing a Flex Start Page panel which has a heading How Flex Works, a sub-heading 6 things you need to know followed by 6 text links that lead nowhere. Anyone else have this problem?

Re: [Flashcoders] Flex Builder 2 for Mac - 6 things you need to know

2006-10-27 Thread Bbt Lists
John Dowdell wrote: It opens revealing a Flex Start Page panel which has a heading How Flex Works, a sub-heading 6 things you need to know followed by 6 text links that lead nowhere. Works for me! They link to internal help docs with a URL like:

Re: [Flashcoders] ::dk:: Best way to check if data is done loading for scroll bars

2006-09-20 Thread Bbt Lists
Gustavo Teider - Adobe Flash Developer wrote: use setScrollTarget scrollbar.setScrollTarget(your_textfield); is this ? But how do you tell if the data is actually done loading? I mean for example, i have a field that loads a jpg in, and since the jpg takes a little longer, the scroll

Re: [Flashcoders] ::dk:: Best way to check if data is done loading for scroll bars

2006-09-20 Thread Bbt Lists
Gustavo Teider - Adobe Flash Developer wrote: Gustavo Teider - Adobe Flash Developer wrote: your image its loading in html textfield with img src ?? Do you have an example about this ? Put your files in your server , so , will be easy []´s This is correct. It is an html field with

Re: [Flashcoders] ::dk:: Best way to check if data is done loading for scroll bars

2006-09-20 Thread Bbt Lists
Duncan Reid wrote: One thing you can try is to give your image an id so it's seen as a MovieClip within the textfield, then you can run a checker to see when it's loaded then redraw the scrollbar... img id='mcID' src='stuff.jpg' hspace='10' vspace='5' align='left' so to access it you would

Re: [Flashcoders] flip pages in as2 or the like

2006-08-25 Thread Bbt Lists
Matthias Dittgen wrote: Thank you, Jordan! I am coding an AS2 pageflip class right now, which works as needed for our current project and I am follwing the O'Reilly article from Sham Bhangal, which is really excellent. I am making big steps forward a reusable solution in pure code. Will it be

Re: [Flashcoders] Flash/Actionscript Coding conventions

2006-08-23 Thread Bbt Lists
Steven Sacks | BLITZ wrote: I have an issue with coders who put block comments in the middle of their code, such as: /*** ** SOME COMMENTS **/ function foo() { trace(hello world); } Or even worse: /*** ** SOME COMMENTS

Re: [Flashcoders] communication between flash and access db

2006-08-23 Thread Bbt Lists
Céline Nguyen wrote: Hi, I am beeing asked a question too technical for me, and maybe some of you might be interessted and could help me to see the things more clearly. I'm building a desktop application with Flash Studio, f8, oop, shared obj. One of the clients of my client wants the

[Flashcoders] [Fwd: relay responder method never called]

2006-08-21 Thread Bbt Lists
Can things like whitespace produce this kind of result? How about spaces instead of tabs (code formating)? Just having a hard time tracking this issue down. Just to recap, and possibly add more info: I had a remoting project that just stopped working. I put traces in on the method that calls

Re: [Flashcoders] need help in button

2006-08-14 Thread Bbt Lists
On 8/14/06, Rutul Patel [EMAIL PROTECTED] wrote: hi people, anybody know how to draw button using AS. if anybody can tell me, thanks -- Regards, Rutul Patel You could define your button in a movieclip - place it in your library, and attach it to your movie with AS. Or skin the button

[Re: [Flashcoders] DK - redrawing interface elements after destruction]

2006-08-11 Thread Bbt Lists
Anthony Lee wrote: At any rate - when i create my thumbnails, all works fine the first time, but after they have been wiped out, and I recall my method to re-draw the thumbnails, for some reason my buttons are not working. Now I did a bunch of tracing tests to see if: Hi dnk, This may not

[Flashcoders] |:::| can you write dynamic meathods in a class?

2006-08-11 Thread Bbt Lists
Hi there Can you write dynamic methods in a class? for example for (var i:Number = 0; i 11; i++) { function onBtnPress + i() { trace(Button number: + i + was pressed); } } So then that would essentially create 10 methods (onBtnPress0 to onBtnPress9) to be used by

Re: [Flashcoders] |:::| can you write dynamic meathods in a class?

2006-08-11 Thread Bbt Lists
Ramon Miguel M. Tayag wrote: I don't think you can create dynamic functions.. even if you could, I don't see the need to. use your arguments to make your functions all-purpose. Ex. function onBtnPress(n:Number):Void { trace(n + was pressed.); } button0.onRelease = Delegate.create(this,

Re: [Flashcoders] |:::| can you write dynamic meathods in a class?

2006-08-11 Thread Bbt Lists
Ramon Miguel M. Tayag wrote: Sorry, I'm using a custom delegate class.. I completely forgot. Let me dig up that post that has what you need... I was just reading a reference to a proxy class that does similar to delegate, but allows args to the functions. So I was not entirely insane (as in

[Flashcoders] ?? inconsistant results - remoting ??

2006-07-26 Thread Bbt Lists
Hi there - I have a flash movie with different frames that make remoting calls. Now when I view them from the server (and loaded into another movie) - not all the data will populate in various text fields. When i just test it out of the IDE and local on my computer - it works fine! Now the

[Flashcoders] net connection debugger not working in F8

2006-07-26 Thread Bbt Lists
Has anyone had this issue, or a way around it? I had searched google, and found references to using the mx2004 files to replace the F8 ones, but i do not have access to those... Thanks! -- dnk ___ Flashcoders@chattyfig.figleaf.com To change your

Re: [Flashcoders] net connection debugger not working in F8

2006-07-26 Thread Bbt Lists
Mike Boutin wrote: Ive had this problem using the f8 remoting files. It seems to fix itself for me by restarting flash... Bbt Lists wrote: Has anyone had this issue, or a way around it? I had searched google, and found references to using the mx2004 files to replace the F8 ones, but i do

[Flashcoders] getting started with AS3

2006-07-21 Thread Bbt Lists
And yes I did search the archive =-). At any rate I was wondering if there is a way to get started with AS3 without having to delve into flex. Nothing against flex, but I just wanted to focus on the language, and not the tool (at this point). And well also since i am on a mac - there

Re: [Flashcoders] getting started with AS3

2006-07-21 Thread Bbt Lists
Tom Lee wrote: If you are a licensed user of Flash 8, you can download the Flash 9 AS3 Preview at http://labs.adobe.com/technologies/flash9as3preview/. Thanks MUCH! -- dnk ___ Flashcoders@chattyfig.figleaf.com To change your subscription