[Flashcoders] Flash Builder 4.6 Spark button skin

2012-05-17 Thread Creighton, Gerry
there might be a conflict with the skin I created and setting an icon. The icon for each button Doesn't even show up. Anyone run into this? I've looked online but nothing related to my situation. Thanks, -Gerry ___ Flashcoders mailing list Flashcoders

Re: [Flashcoders] MVC - ScreenManager

2012-03-26 Thread Creighton, Gerry
If I'm loading XML would that be done in the model or the controller? On 3/9/12 9:06 AM, Glen Pike g...@engineeredarts.co.uk wrote: :D On 09/03/2012 05:20, Karl DeSaulniers wrote: If you can't take the Henrik, get out of the kitchen.. lol ___

Re: [Flashcoders] MVC - ScreenManager

2012-03-26 Thread Creighton, Gerry
I thought that it should be in the controller. Just wanted to be certain. Thanks, -Gerry On 3/26/12 1:21 PM, tom rhodes tom.rho...@gmail.com wrote: well, either you can add an Service to MVC and get MVCS, or perhaps your main app controller would load it if it's config stuff and set up models

[Flashcoders] FP 11.1 and above rendering issue

2012-02-23 Thread Creighton, Gerry
but I'm using a macbook pro and I don't see any updates available for my video card. Thanks, -Gerry ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Flash Platform roadmap released - time to start learning HTML 5 unless you make games.

2012-02-22 Thread Creighton, Gerry
Except that you need a certain level of browser to handle HTML5. That's the bummer, it'll Take some time to get more people on board. -Gerry On 2/22/12 2:24 PM, James Merrill jmerri...@gmail.com wrote: When HTML5 can do what I can do in AS3, I'll consider it. :) What exactly are you

Re: [Flashcoders] am i loaded by another swf?

2012-02-15 Thread Gerry Beauregard
I think that if a SWF is loaded by another SWF (e.g. using SWFLoader), 'stage' will be null. -Gerry On 2012-02-16 , at 04:07 , g...@engineeredarts.co.uk wrote: Hi, Can you check if the parent exists, and is there a way to determine if this is the document/main class? Glen Sent from my

Re: [Flashcoders] Getting at SampleDataEvent bytes before full Chunk is reported.

2011-12-21 Thread Gerry Beauregard
it worked, especially for Flash. Cheers, -Gerry On 2011-12-22 , at 07:15 , Anthony Pace wrote: Hey Karl, Not sure if you read my question completely, or if you did and what I wrote was too confusing; yet, I do already know how to set the sampling rate (e.g. mic.rate = 44, or 11, or w/e

Re: [Flashcoders] Tween

2011-11-07 Thread Creighton, Gerry
You could use a bezier tween. Google that and you should find what you need. -Gerry On 11/7/11 12:25 PM, Paul Andrews p...@ipauland.com wrote: I'm just thinking about the best way to do this (OK, the laziest way to do this). I have a MC at point A and want to tween it to point B. OK

Re: [Flashcoders] swf 2 pdf on the fly

2011-10-28 Thread Creighton, Gerry
Look up swftools. They have something to handle this. On 10/28/11 8:56 AM, Rodrigo Augusto Guerra rodr...@alumni.org.br wrote: hi all, I have a flash swf that generates a report inside a mc then print it. ok. now my client wants a button 'save to pdf.' not just print... The more automated the

Re: [Flashcoders] can't get e.target.data

2011-10-08 Thread Gerry Beauregard
for pkg, e.target.data only serves up this string -- which is incomprehensible to me. What does the URL look like in this case? Is it well formed? And if you simply paste the url into your browser's address bar, does the browser show --? -Gerry

[Flashcoders] SWF size reduction

2011-09-17 Thread Gerry Beauregard
I'm currently working on a project for which the customer requires the SWF to be very small, so I've been investigating how to reduce SWF sizes. Flash Builder's compiler is smart enough to not include code for unreferenced classes, but it seems to miss some other seemingly obvious opportunities

Re: [Flashcoders] SWF size reduction

2011-09-17 Thread Gerry Beauregard
Thanks for the quick feedback. Is there any way to tell the compiler that the SWF won't be loaded by another SWF, and that it's therefore safe to strip out unreferenced features? On 2011-09-17 , at 17:28 , Henrik Andersson wrote: The issue here is that the compiler does not know that they

Re: [Flashcoders] array problem,loop.plot

2011-08-22 Thread Gerry Beauregard
are issues, try using two vectors of Numbers, one for the x values, the other for the y values. -Gerry ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Calling native code from Flash

2011-07-19 Thread Gerry Beauregard
(using the File class), but that's reading and writing data, not running code. I also know it's possible to run C code compiled using Alchemy - but that's not really native code, as Alchemy-compiled code isn't native code, but rather byte-code that runs on the ActionScript VM. -Gerry

Re: [Flashcoders] Calling native code from Flash

2011-07-19 Thread Gerry Beauregard
, the SWF (or AIR app) would use the native signal processing functions implemented in it, otherwise it would rely on a simplified lower-quality implementation coded in AS3. -Gerry On 2011-07-19 , at 15:25 , Paul Andrews wrote: On 19/07/2011 08:15, Gerry Beauregard wrote: Hi folks, Does

Re: [Flashcoders] Calling native code from Flash

2011-07-19 Thread Gerry Beauregard
Thank you Paul and Karl for your responses! Interesting discussion! On 2011-07-19 , at 17:36 , Paul Andrews wrote: On 19/07/2011 10:27, Karl DeSaulniers wrote: Hi Paul, Gerry, Are these runtime calls, or calls to set up runtime? How is the swf published? Local? Server? If Local, you could

Re: [Flashcoders] Calling native code from Flash

2011-07-19 Thread Gerry Beauregard
to obviate any gain you get from using Alchemy as opposed to AS3. Alchemy also seems to still be a research project within Adobe Labs, not really a fully-supported official product, so I'm reluctant to use it for commercial code. -Gerry

Re: [Flashcoders] Calling native code from Flash

2011-07-19 Thread Gerry Beauregard
Hi Kevin, Thanks for this! Definitely interesting. In my limited testing with Alchemy, I found that getting large amounts of data across the AS3-Alchemy boundary using ByteArrays was indeed a major bottleneck, so anything that eliminates that bottleneck is welcome indeed! -Gerry On 2011-07

[Flashcoders] Alchemy still prerelease?

2011-07-19 Thread Gerry Beauregard
that disclaimer a year (or two?) ago. I wonder whether it's worth putting effort into learning the ins and outs of a technology that's not officially supported and into which Adobe appears to be putting few resources. -Gerry On 2011-07-20 , at 12:17 , Karl DeSaulniers wrote: Hi Gerry, Alchemy

[Flashcoders] RE: Flash AS editor preferences question

2011-06-02 Thread Creighton, Gerry
Whatever works for you. I use the default. -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Mendelsohn, Michael Sent: Thursday, June 02, 2011 9:48 AM To: Flash Coders List Subject: [Flashcoders] Flash AS

RE: [Flashcoders] trying to get data from list component

2011-05-26 Thread Creighton, Gerry
Check out this page to get a handle... http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/URLVariables.html -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of DONALD TALCOTT Sent:

Re: [Flashcoders] is there a dsp lib with analysis using zero crossing in as3

2011-05-12 Thread Gerry Beauregard
on a commercial project? If so, I'd be happy to do some consulting/contracting work! ;-) Cheers, Gerry Beauregard g.beaureg...@ieee.org On 2011-05-12 , at 04:12 , Anthony Pace wrote: Hello list, I have been doing some experiments, but although my stuff is working, it isn't optimized at all, and I

RE: [Flashcoders] How make an SWF run on IPad?

2011-05-02 Thread Creighton, Gerry
You might need to install that update to CS5 to allow compiling for iPhone. It should show in the list for Create New in the start page when you launch Flash. -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf

[Flashcoders] AIR apps on iPhone - any good shipping examples?

2011-04-24 Thread Gerry Beauregard
!). It's not difficult, but at the moment I'm more comfortable writing in AS3. The idea of being able to write in a single language for iPhone, Android, and web is certainly appealing, but only if works very well. -Gerry ___ Flashcoders mailing

Re: [Flashcoders] How to access MovieClip declared in one function in an event listener

2011-04-22 Thread Gerry
your MovieClip within the function? 2.) Does that movieClip and button have to be added to the stage at a certain time? 3.) Is all of this code on the timeline? -Gerry On Apr 22, 2011, at 12:35 AM, Steve Abaffy wrote: So basically the only way to make this work is to declare the myMovieClip

Re: [Flashcoders] How to access MovieClip declared in one function in an event listener

2011-04-22 Thread Gerry
what those objects are. Now when you click on that button your click event can fire an event that can reference anything that is on the stage*. *see my first code example. Let me know if you're still unclear and I'll send some more code. -Gerry On Apr 22, 2011, at 10:24 AM, Steve Abaffy wrote

Re: [Flashcoders] What is up with adobes documentation?

2011-04-22 Thread Gerry
Agreed. On Apr 22, 2011, at 1:55 PM, Merrill, Jason wrote: I miss the good old days when Adobe's local help was easy to access and find information. I find better results with Google. Jason Merrill Instructional Technology Architect Bank of America Global Learning

Re: [Flashcoders] How to access MovieClip declared in one function in an event listener

2011-04-21 Thread Gerry
Steve, You have some things confused. Like Ross said, read up on event.target. Your code should look something like this... Var myMovieClip:MovieClip; Var myButton:SimpleButton; DrawMyStuffOnScreen(); Function DrawMyStuffOnScreen():void{ myMovieClip = new DefinedMovieClip();

[Flashcoders] IE 9 Flash security issue

2011-04-12 Thread Creighton, Gerry
but not Initialized because of an IE 9 security issue. Thanks, -Gerry ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] RE: IE 9 Flash security issue -FIXED

2011-04-12 Thread Creighton, Gerry
until a new Flash player is released by Adobe OR Windows comes up with a fix. -Gerry -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Creighton, Gerry Sent: Tuesday, April 12, 2011 8:33 AM To: Flashcoders

Re: [Flashcoders] Trouble with é FIXED

2011-04-04 Thread Creighton, Gerry
I used a try catch block to handle my error...worked well. So I don't use the 'ol Try - catch too often and forgot about using it for my situation. On 4/1/11 7:02 PM, Creighton, Gerry gcreigh...@discmakers.com wrote: So I¹m trying to place a textField at the end of a title by getting

Re: [SPAM?] Re: [Flashcoders] Trouble with é

2011-04-04 Thread Creighton, Gerry
Yes, font is embedded and I even included the offending characters as well as a couple others. On 4/4/11 9:28 AM, Latcho spamtha...@gmail.com wrote: Did you embed the font and the basic latin chars? On 4/2/2011 1:02 AM, Creighton, Gerry wrote: So I¹m trying to place a textField at the end

Re: [SPAM?] Re: [Flashcoders] Trouble with é

2011-04-04 Thread Creighton, Gerry
Font is DEF embedded...ArialReg and ArialBold are the names...I didn't embed the entire font so that I don't bloat my application. I selected upper, lower, numbers and punctuation and included:.$()_-=+ é™℠ System: Mac - CS5 Thanks, -Gerry On 4/4/11 12:43 PM, Kerry Thompson al

Re: [SPAM?] Re: [Flashcoders] Trouble with é

2011-04-04 Thread Creighton, Gerry
No Kerry...the actionscript name is ArialReg which is the regular vers of Arial. ArialBold is Arial Bold. Fonts are embedded properly and work everywhere in the app except for that instance of a strange character. I got it working but thanks for the help. -Gerry On 4/4/11 1:26 PM, Kerry

Re: [SPAM?] Re: [Flashcoders] Trouble with é

2011-04-04 Thread Creighton, Gerry
I do... As I mentioned below. Thanks, -Gerry On 4/4/11 1:46 PM, Cédric Muller flashco...@benga.li wrote: You have to actually embed the desired chars (ie: you have to include: é) hth, Cedric (actually: Cédric ;) ) No Kerry...the actionscript name is ArialReg which is the regular vers

[Flashcoders] Trouble with é

2011-04-01 Thread Creighton, Gerry
, -Gerry ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] tascam us-144 is detected, but no sound

2011-03-07 Thread Gerry Beauregard
Is it possible that the signal is on the right channel of your Tascam audio box? If you're using the FP 10.1 Microphone class SampleDataEvent feature, it's only able to capture mono audio, as far as I can tell. If you've got a stereo audio interface, that mono channel is actually the left

Re: [Flashcoders] flash.filesystem not in Flash?

2011-02-23 Thread Gerry Beauregard
/ -Gerry (This is a repost: I sent this yesterday, but it looks like it didn't appear on the list). On 2011-02-23 , at 18:10 , Cor wrote: Hi list, I would like to create an explorer to let a user browse to a specific folder There he can select a txt-file to load in in Flash CS5

Re: [Flashcoders] Form inside a Google Flash Banner :: Possible?

2011-02-15 Thread Creighton, Gerry
Try iab.net as well, there is info on every kind of banner on there. On 2/15/11 5:51 AM, allandt bik-elliott (thefieldcomic.com) alla...@gmail.com wrote: you'll be better of contacting google but as far as i'm concerned, as long as your crossdomain.xml on the site with the script is correct,

Re: [Flashcoders] Help with code

2011-02-12 Thread Gerry Beauregard
gets called. An easy fix would be to call iniciarJogo from the constructor of the Bolhas class, like this: public function Bolhas() { iniciarJogo(); } -Gerry ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http

[Flashcoders] ComboBox label issue

2011-01-24 Thread Creighton, Gerry
I’m having a problem properly displaying the font name and variant in a combobox. I have fonts embedded in my swf and am exporting for AS. I have a ComboBox that I’m populating from an enumerated font array like so... code fontArray = Font.enumerateFonts(false);//using false only enumerates

Re: [SPAM?] Re: [Flashcoders] ComboBox label issue SOLVED

2011-01-24 Thread Creighton, Gerry
+ ( + fnt.fontStyle + ); } font_cb.labelFunction = setLabel; - Original Message - From: Creighton, Gerry gcreigh...@discmakers.com To: flashcoders@chattyfig.figleaf.com Sent: Monday, January 24, 2011 4:11 PM Subject: [Flashcoders] ComboBox label issue I�m having a problem properly

[Flashcoders] XML attribute issue

2011-01-12 Thread Gerry
Hey all, I'm parsing this xml and can't get one attribute to work as a TextFormat. I have an app that saves XML of objects on the screen, each object has a TextFormat attached to it so I save the XML node with attributes for x, y, text and Textformat. Below is what is returned to me when I load

Re: [Flashcoders] XML attribute issue -SOLVED

2011-01-12 Thread Gerry
Ahh yes, I thought it would be simple to just stuff the old TextFormat in an attribute. I now save each node with an attribute for each TextFormat property. All is good! -Gerry On Jan 12, 2011, at 3:17 PM, Merrill, Jason wrote: Take a peek at what the textformat property is asking

Re: [Flashcoders] Problems when converting to Number

2010-12-19 Thread Gerry Beauregard
precision of 53 bits, equal to about 16 decimal digits of precision. The error you're getting is in the 17th digit - no surprise at all. -Gerry On 2010-12-19 , at 09:55 , Anthony Pace wrote: trace(Number('1992.2')); //why does it output 1992.3 //I am assuming I am

Re: [Flashcoders] AIR 2 / 10.1 + Microphone

2010-10-02 Thread Gerry Beauregard
You might want to check out my real-time spectrum analyzer here: http://gerrybeauregard.wordpress.com/2010/08/06/real-time-spectrum-analysis/ It uses the microphone input and an FFT that I wrote. All the code is freely available for download. -Gerry On 2010-10-02 , at 17:55 , Karim

[Flashcoders] Date.monthUTC uses 0 for January

2010-08-27 Thread Gerry Beauregard
* as January. It's documented, but pretty bizarre nonetheless... though it turns out the tm structure in C's time.h uses the same convention. -Gerry ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman

Re: [Flashcoders] A fast FFT in Flash?

2010-08-03 Thread Gerry Beauregard
one pays for using a virtual machine. I'll post the new code in my blog soon... -Gerry On 2010-08-03 , at 22:21 , Glen Pike wrote: Hi, You should maybe look using twiddle factors and creating these in the init too - so you are not doing cosine / sin math in the butterfly loops

Re: [Flashcoders] A fast FFT in Flash?

2010-08-02 Thread Gerry Beauregard
On 2010-08-03 , at 06:07 , Patrick Matte wrote: Maybe check this http://blog.inspirit.ru/?p=405 Hey Patrick, thanks for the link (to Eugene Zatepyakin's Fast Fourier Transform for Flash). It looks like an interesting implementation, but it uses Alchemy. I've been reading up more on Alchemy,

[Flashcoders] A fast FFT in Flash?

2010-08-01 Thread Gerry Beauregard
of Numbers :-( I've come across a few blogs where people discuss the possibility of doing FFTs with PixelBender, but I haven't found any implementations yet. -Gerry Beauregard ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http

Re: [Flashcoders] 1046 Error

2010-07-26 Thread Gerry Beauregard
Maybe just a missing import statement? import flash.events.*; On 2010-07-26 , at 22:20 , John Singleton wrote: 1046: Type was not found or was not a compile-time constant: Event.� [for RotateGearsLoaded(e:Event)] ___ Flashcoders mailing list

Re: [Flashcoders] Flex generative art???

2010-06-10 Thread Gerry Beauregard
results in a 176KB swf (when you export a release build) , whereas an ActionScript Project is just 4KB. Cheers, -Gerry The overhead On 2010-06-11 , at 03:46 , Jim Andrews wrote: I'm a bit confused as to how to proceed with Flash. I've been using Director for the last 11 years. You can

Re: [Flashcoders] RE: Passing Var value to loaded swf

2010-06-07 Thread Gerry Beauregard
I don't have a whole lot of experience with the Loader class, but I suspect that rather than calling addChild() immediately after calling load(), you'd need to listen for a load complete event (Event.COMPLETE), and call addChild() in the handler for that event. -Gerry

Re: [Flashcoders] Smokescreen: Flash without the plugin

2010-06-01 Thread Gerry Creighton
/smokescreen/ Helps to view that on an iPhone/touch/pad. -Gerry On Jun 1, 2010, at 7:12 PM, Peter B wrote: Smokescreen currently supports a sizeable subset of Flash 8 animation capabilities, streaming sound, sound effects, some input and basic ActionScript On 2 June 2010 03:40, Matt S. mattsp

Re: [Flashcoders] Sound

2010-05-10 Thread Gerry Beauregard
any glitching. Andre Michelle's blog has some great examples of how to use the FP 10 audio API, for example: http://blog.andre-michelle.com/2010/playback-mp3-loop-gapless/ -Gerry Beauregard Lead Software Architect Sonoport.com On 2010-05-11 , at 03:45 , Glen Pike wrote: Hi, The Sound

Re: [Flashcoders] One Video, multiple Audio tracks?

2010-05-06 Thread Gerry Beauregard
to French. In your code, you would mute the FLV's English audio soundtrack, get the FLV's current playback position (which I assume is possible, though I've never tried!), then call play on a Sound with the French sound track, with startTime set to the FLV's current position. -Gerry On 2010-05-06

Re: [Flashcoders] Producing a random list with no repeats

2010-05-05 Thread Gerry Beauregard
It's probably best just to create an Array or Vector containing numbers 1 to 40. (Vectors are only available in AS3, not sure about Array). Shuffle the array, then choose the first 10 elements. A reasonably effective way to shuffle an array is to step through the array, and for each element

Re: [Flashcoders] Font embedding without Flash // Was: (no subject)

2010-03-04 Thread Gerry
http://blog.bobbyjuncosa.com/2009/06/14/flex-3-font-embedding-from-swc/ On Mar 4, 2010, at 3:26 PM, Michael Teniente wrote: I want to ask a question about embedding fonts without flash. I want to use 3.0 in the flex builder. Can u give me a sample of how that is done? I searched the online

Re: [Flashcoders] Link Around a Bitmap

2010-02-27 Thread Gerry
a number of XML elements or some number that you set based on your needs. -Gerry On Feb 27, 2010, at 9:57 AM, Susan Day wrote: On Sat, Feb 27, 2010 at 8:58 AM, Susan Day suzieprogram...@gmail.comwrote: On Fri, Feb 26, 2010 at 3:25 PM, Nathan Mynarcik nat...@mynarcik.comwrote: Put your bitmap

[Flashcoders] Library of vector math functions for Flash

2010-02-04 Thread Gerry Beauregard
Does anyone know of a good, fast, well-documented library of AS3 vector math operations? I'm thinking specifically of a good FFT, as well as more basic functions to add, multiply vectors, convert to/from polar coordinates, etc. In my C++ DSP programming work on Windows, I've often made use of

Re: [Flashcoders] WIRED hates Flash

2010-02-01 Thread Gerry
I've been digging through the code and trying to build my own examples. Does anyone have info on gordon as far as targeted FP version? -Gerry On Feb 1, 2010, at 10:58 AM, Merrill, Jason wrote: I think apple store and adobe flash have big chance to be flipfloped anyway: http://paulirish.com

Re: [Flashcoders] WIRED hates Flash

2010-02-01 Thread Gerry
I've tried every kind of tween and various flash player exports but still can't get this Gordon work. FP6 AS1 FP 7 AS1 FP8 AS1 AS2 FP9 AS2 AS3 FP10 AS2 AS3 I've checked my chmod settings on the files, still no dice. I love the lack of documentation regarding the exporting of the swf and what

Re: [Flashcoders] WIRED hates Flash

2010-02-01 Thread Gerry
Yeah it's not worth it. It's neat but you can only use swf's exported as FP1 in order for them to show on the iPhone. -G On Feb 1, 2010, at 11:39 AM, Zeh Fernando wrote: No point. It's an interesting experiment I'm quite sure. But I guess in a world where people are impressed by acronyms

Re: [Flashcoders] WIRED hates Flash

2010-02-01 Thread Gerry
Flash Player 1. I emailed Tobias and he replied... Hi Gerry! Sorry, but Gordon supports only SWF version 1.0 at this time. Export your movie to FP1 and it will works great. Tobi On Feb 1, 2010, at 1:17 PM, Merrill, Jason wrote: you can only use swf's exported as FP1 in order for them

Re: [Flashcoders] WIRED hates Flash

2010-02-01 Thread Gerry
Yes. On Feb 1, 2010, at 4:36 PM, Henrik Andersson wrote: Gerry wrote: Flash Player 1. I emailed Tobias and he replied... Sorry, but Gordon supports only SWF version 1.0 at this time. Export your movie to FP1 and it will works great. Can you even do that with recent Flash versions

Re: [Flashcoders] Ideas, Please

2010-01-27 Thread Gerry
the lines of what you want to do... http://lab.andre-michelle.com/bitmap-particles -Gerry On Jan 27, 2010, at 9:59 AM, beno - wrote: Hi; I have two graphics. I want to explode one and then immediately thereafter reverse explode the other. I can do the reverse with TweenLite or Max, that should

Re: [Flashcoders] Ideas, Please

2010-01-27 Thread Gerry
with the help of this list and reading books. Get what I'm hinting at? -Gerry On Jan 27, 2010, at 10:52 AM, beno - wrote: On Wed, Jan 27, 2010 at 11:15 AM, Gerry noentour...@gmail.com wrote: You should be looking for Bitmap copyPixels or setPixel32 (andre michelle example link below) I made

Re: [Flashcoders] Capturing TextEvent from image in textfield

2009-11-10 Thread Gerry
http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/text/TextField.html#event:link On Nov 10, 2009, at 7:47 PM, Mattheis, Erik (MIN - WSW) wrote: How do I send an event from a click on an image in a textfield? Clicking on the actual text fires the event, but it doesn't fire when

Re: [Flashcoders] re: alpha for dynamic text without embedding font

2009-10-29 Thread Gerry
This is what I had suggested. If you can't or don't want to embed the font you'll need to take a snapshot of the text, delete the movieClip that contains the text then do your fades or alpha property to that snapshot. -Gerry On Oct 29, 2009, at 1:16 PM, Glen Pike wrote: You can't change

Re: [Flashcoders] alpha on text without embedding font

2009-10-25 Thread Gerry
No. Unless you take a snapshot of that textField using BitmapData first then add that to a MovieClip. -Gerry On Oct 25, 2009, at 5:22 PM, Pedro Kostelec wrote: Hi, is there a way to set alpha transparency to dynamically imported text with as3 without having to embed the font? Thanks

Re: [Flashcoders] Image loader problem

2009-07-25 Thread Gerry
through the array to get the image and it's properties so that you can align everything the way you want. -Gerry On Jul 25, 2009, at 6:35 AM, Cor wrote: Hi list, I am loading a lot of images dynamically from xml. Therefore I use a class file to handle the loading. When loaded I want

Re: [Flashcoders] SWAddress logical workflow

2009-06-13 Thread Gerry
} } You could have an eventListener for the dispatched event (above) to listen for open section then that function could load data using the _string info as a value to determine what to load.. I'm only on my first cup of coffee so if this doesn't make any sense let me know. -Gerry

Re: [Flashcoders] Re: SWAddress logical workflow

2009-06-13 Thread Gerry
/sectionName?img= do something else. I'm just spit balling but that might be what you have to do. I don't think I've ever seen any tutorials on how anyone else has handled that. -Gerry On Jun 13, 2009, at 12:15 PM, Omar Fouad wrote: Thanks Gerry this is exactly what i do. But as Matt says

Re: [Flashcoders] Re: SWAddress logical workflow

2009-06-13 Thread Gerry
to write a conditional to handle undefined dates and/or include code to not allow future dates. -Gerry On Jun 13, 2009, at 2:19 PM, Omar Fouad wrote: Well i can do that but i don't use that syntax. i instead do /gallery/2. At the end i omit the first forward slash from the address value string

[Flashcoders] Creating MXP with Flex Builder?

2009-05-11 Thread Gerry Beauregard
I'm development a library of interactive sound effects in Action Script 3 using Flex Builder. I've got loads of experience with audio coding on various platforms in various languages (especially C++). However, I'm relatively new to Flash development, so I have some (perhaps naive)

[Flashcoders] Re: Creating MXP with Flex Builder?

2009-05-11 Thread Gerry Beauregard
Transfer Connector version=1.0.0 type=flashcomponentswc requires-restart = false author name=Gerry Beauregard - Sonoport.com / products product name=Flash version=8 primary=true required=true/ /products description ![CDATA[Description of what the heck

[Flashcoders] Flash Player 10 code in SWC

2009-05-08 Thread Gerry Beauregard
Just want to share some things I've learned while using Flex Builder 3 to create Flash Player 10 dependent code... If you're using Flex Builder 3, and you want to use a Flash Player 10 specific language feature (e.g. the Vector class), you need to set the Require Flash Player version to

Re: [Flashcoders] Recommendation for AS3 decompiler?

2009-05-06 Thread Gerry Beauregard
. Gerry Beauregard wrote: Does anyone have a recommendation for a good tool for decompiling SWFs (and if possible SWCs) written in ActionScript 3? Must run on MacOS 10.5. I was considering buying the SoThink SWF Decompiler for Mac, but unfortunately it often crashes when I select an SWF I just

[Flashcoders] Recommendation for AS3 decompiler?

2009-05-05 Thread Gerry Beauregard
out if I don't use obfuscation. If I conclude that obfuscation is necessary at all, I'll need a decompiler to evaluate obfuscation options... -Gerry ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman

Re: [Flashcoders] InputTextField issue

2009-03-01 Thread Gerry
This is true. I started with 0 which is incorrect, I've been working with Arrays this week so a 0 index slipped in there. -Gerry On Mar 1, 2009, at 7:53 AM, Juan Pablo Califano wrote: Hi, I'm almost certain that tabIndex is 1-based not 0-based, so it should be: txtName.tabIndex = 1

Re: [Flashcoders] InputTextField issue

2009-02-28 Thread Gerry
You can look up focus (stage.focus = txtName; ), that will allow you to set which textfield has focus and for tabbing use tabIndex like this. txtName.tabIndex = 0; txtEmail.tabIndex = 1; txtAddress.tabIndex = 2; txtCity.tabIndex = 3; -Gerry On Feb 28, 2009, at 3:19 AM, Cor wrote: Hi Keith

[Flashcoders] Happy Holidays

2008-12-25 Thread Gerry
Happy Holidays to everyone on the Flashcoders mailing list. -Gerry www.thespikeranch.com ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] adding child movie clips in a loop

2008-12-14 Thread Gerry
OR... You could do the following in your loop... mc.name = mc+i; It all depends on how you want to reference those clips though, mouseEvents? Or just an animation / change of some property on each clip? -Gerry On Dec 14, 2008, at 3:00 PM, php_mysql_ as_ dev wrote: Hello This code

Re: [Flashcoders] LMS -- Moodle

2008-10-17 Thread Gerry
Start digging around this thing they call the internet (that was sarcasm). Pipwerks.com has some info on SCORM that I found helpful. -Gerry On Oct 17, 2008, at 11:42 AM, Cor wrote: Hi List, Can anyone tell me how to read and write to Moodle (SCORM 2004 3e edition)?? Every hint

Re: [Flashcoders] Drag and drop in AS3

2008-09-23 Thread Gerry
Susan, Try... aButton[i].buttonMode = true; aButtons[i].mouseChildren = false; On Sep 23, 2008, at 10:58 AM, Lord, Susan, CTR, DSS wrote: Hi there, I am programming a drag and drop using a instance array. The problem I am having is that the instances have dynamic text within them. I

Re: [Flashcoders] AS3 Call a function from an array

2008-09-06 Thread Gerry
Thanks Mike! -Gerry On Sep 6, 2008, at 12:47 AM, Mike Chambers wrote: if fnct is a function: stepArray[0].fnct(); if it is a string: stepArray[0][fnct](); The 0 is the index from the array you want to retrieve. mike chambers [EMAIL PROTECTED] On Sep 5, 2008, at 8:30 PM, Gerry wrote

Re: [Flashcoders] AS3 Call a function from an array

2008-09-06 Thread Gerry
); } private function testFunctionOne(num:Number):void{ trace(you called testFunctionOne, num -- +num); } Everything is working the way I wanted. Thanks, -Gerry On Sep 6, 2008, at 12:31 PM, jonathan howe wrote: Mike asks an important question

[Flashcoders] AS3 Call a function from an array

2008-09-05 Thread Gerry
I have an array built from and XML file that I want to step through and one of the nodes will have a function to call. I thought I did this in AS2 before but can't find my code. I'm stuffing my array with the function string cast as an object but I can't seem to find any hints on how I

Re: [Flashcoders] AS3 for each loop / splice issue - RESOLVED

2008-08-28 Thread Gerry
I fixed it myself...I was staring at the code too long so after a long break I came up with this to be able to get through the cue_points array... // var count:Number = 0; for each (var cue:XML in xmlData..step.training.cuein){

[Flashcoders] OT - Any London Multi-media houses looking for video help?

2008-07-29 Thread Gerry
with audio, post production, lighting or anything involving video production. Please let me know if you have any reliable leads. Let's keep this professional please. No you can't have pictures, no you can not date her. Thanks, -Gerry ___ Flashcoders

Re: [Flashcoders] Image Hyperlinks in TextFields

2008-06-17 Thread Gerry
Is this AS2 or AS3? Have you looked up asfunction if it's AS2? If it's AS3 look up flash.text.TextField dispatches event: link . On Jun 17, 2008, at 4:06 AM, Ashim D'Silva wrote: This is supposed to be relatively simple, but I'm facing a rather odd problem. I've got almost everything

Re: [Flashcoders] Image in dynamic text field

2008-05-28 Thread Gerry Creighton
]; You could get more complex on where you'd want that image to sit in the text if you did an indexOf for a particular on the string (data). -Gerry On May 28, 2008, at 2:15 AM, Rajiv Seth (Pixelated) wrote: XML is like: imageshow image path=images/home1.jpg url=www.google.com data

Re: [Flashcoders] moving a symbol with AS

2008-04-04 Thread Gerry Creighton
http://code.google.com/p/tweener/ Get yourself acclimated with Tweener. You can use Tweener to move or change properties of your movieClips with code. Gerry On Apr 4, 2008, at 12:20 PM, Lehr, Theodore M (N-SGIS) wrote: How can I move an object with AS and be able to watch it move? I am

Re: [Flashcoders] SEO / accessibility demo site?

2008-01-18 Thread gerry
I created one using swfAddress which works. SwfAddress info can be found at the following url.. http://www.asual.com/swfaddress/ The site I built is: www.altemose.com -Gerry Hi, Someone posted a link to a Flash site about 6 months ago which was there to demonstrate a sensible Flash

Re: [Flashcoders] flash contact form backend

2007-09-13 Thread gerry
PHP or CGI? -Gerry I have a flash contact form, and I'm struggling to implement a proper backend code to be able to send it to an email recipient. Could anyone help with an example, many thanks, Robert _ Express yourself

Re: [Flashcoders] search engine optimization for flash sites

2007-09-06 Thread gerry
SWFAddress is not only the back and fwd button access, it has the ability for deep linking in search engines. Read the documentation on it, there's a lot more to it... it's very good! -Gerry Thanks Jiri, this however only let's you control the flash movie with the back and forward buttons

Re: [Flashcoders] Site effect

2007-09-02 Thread Gerry Creighton
I'll agree with you...it is amazing, good transitions. Gerry On Sep 2, 2007, at 7:35 AM, 2lakes wrote: What? No takers on this? WOW i think it's amazing as well. Love some idea of the origins cheers Ian On 30/08/2007, at 3:28 AM, eric e. dolecki wrote: http

Re: [Flashcoders] Setting Dynamic Text Help

2007-07-09 Thread gerry
Try setting the text as a variable string... --scene 1 -- var sameText:String = Some text that fills the textField; textField.text = sameText; -- scene 2 -- textField.text = sameText; I'm sure there are other examples you'll get. -Gerry -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Does

Re: [Flashcoders] WebServices support in AS3/FLCS3

2007-07-04 Thread Gerry Creighton
If you are in Flash CS3 and have an AS3 fla open navigate to Window/ Common Libraries/Classes You will find them there. -Gerry On Jul 4, 2007, at 9:03 PM, Enrique Chávez wrote: Really What happened with the webservices classes in AS3/Flash CS3? i can't believe they are gone. Anyone

Re: AW: [Flashcoders] Turn image around effect?

2007-07-02 Thread gerry
I took that distort image class and altered some things to get it working like used on http://www.ja-ik-doe-mee.be/ See here: http://www.thespikeranch.com/test/turnImg.html Gerry Hi, not entirely what you need, but it might be of some use: http://objectpainters.com/blog/?p=37 http

  1   2   >