Re: [Flashcoders] Pulling data from social media

2014-08-27 Thread Peter Ginneberge
ut I’m not find how to access Pinterest and Instagram to pull the followers of a specific person on each site. I really appreciate your comments… Thanks, John R. Sweeney Jr. Senior Interactive Multimedia Developer OnDemand Interactive Inc Hoffman Estates, IL 60169 On Aug 27, 2014, at 3:01

Re: [Flashcoders] Pulling data from social media

2014-08-27 Thread Peter Ginneberge
where jsonData is a JSON formatted string. regards, Peter On 27/08/2014 19:36, James Merrill wrote: Instagram uses JSON formatting for their API too. Depending on the data you want to retrieve, you may need to use OAuth. Fortunately they make it pretty easy. Have you considered using PHP to fetch th

Re: [Flashcoders] Air Windows installed app

2014-02-24 Thread Peter Ginneberge
in Flash Cs6. I created app in this program as Air 3.2 for Desktop. I have only two options - Windows Installer and App with runtime embedded. 2014-02-23 16:42 GMT+04:00 Peter Ginneberge : You can apply for a license to (re)distribute the Air runtime and then package it with your application. http:/

Re: [Flashcoders] Air Windows installed app

2014-02-23 Thread Peter Ginneberge
econd options installs both as a bundle. When a user uninstalls your app, the runtime gets uninstalled with it. regards, Peter On 23/02/2014 7:28, natalia Vikhtinskaya wrote: Thank you for help. I try to describe situation better. When I publish app as Windows installer the user can take m

Re: [Flashcoders] Video question

2014-01-31 Thread Peter Ginneberge
YouTube has a flash API that you can use: https://developers.google.com/youtube/flash_api_reference On 1/02/2014 0:46, John R. Sweeney Jr. wrote: Hello again, Has anyone used Youtube or Vimeo videos in their Flash app? My client will produce the video's and post them, then want a Flash based

Re: [Flashcoders] static const singleton & GC?

2013-09-20 Thread Peter Ginneberge
That's not a singleton, as every time you call the public static constant, it creates a new instance. The static var should be private and the class needs an access point method, usually called getInstance(); private static var INSTANCE:AppApi; public function AppApi():void { if (INSTANCE

Re: [Flashcoders] AIR

2013-05-20 Thread Peter Ginneberge
e things you're creating, you're good to go, just be careful when relying on things you have no control over. Moving forward, we'll see more and more HTML 5 content out there. AIR (webkit) needs to catch up, fast.. like.. yesterday. regards Peter On 19 May 2013 15:08,

RE: [Flashcoders] Adobe Flash future

2013-05-08 Thread Liu, Peter
Why can't Adobe make HTML5 as one of the publishing options, then we can continue to use Flash without the need to learn another program? -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Kevin Newman Sent:

Re: [Flashcoders] AS3

2012-10-27 Thread Peter Ginneberge
AS4 is on the way, including a new VM to support it. - Original Message - From: "Kerry Thompson" To: "Flash Coders List" Sent: Friday, October 26, 2012 8:28 PM Subject: Re: [Flashcoders] AS3 I don't think there is going to be an AS4. The ECMA Script committee was working on a new

Re: [Flashcoders] Accessing FlashVars

2012-04-30 Thread Peter Ginneberge
Not sure it matters, but there's quotes missing in the HTML: probably should be: - Original Message - From: "Kerry Thompson" To: "FlashCoders" Sent: Tuesday, May 01, 2012 12:46 AM Subject: [Flashcoders] Accessing FlashVars Flash Builder 4 AS3 project, Windows 7, Firefo

Re: [Flashcoders] Re: odd request: as1 flash remoting components!

2012-03-30 Thread Peter Ginneberge
ery old CD's (ran into Flash 3, Director and Generator !!), but nothing that really screamed Remoting AS1. Hopefully one of the above installers does the trick. Fingers crossed... regards, Peter - Original Message - From: "tom rhodes" To: "flashcoders" Se

Re: [Flashcoders] MVC - ScreenManager

2012-03-27 Thread Peter Ginneberge
) from the ServiceLocater, listens for events on the service and executes it. When data returns it is stored in the Model, which then dispatches a change event. regards, Peter - Original Message - From: "Creighton, Gerry" To: "Flash Coders List" Sent: Monday, Marc

Re: [Flashcoders] Dispatching events from V to C

2012-03-15 Thread Peter Ginneberge
the command classes talk directly to the model or view or back through the controller? On 3/15/12 4:44 PM, "Peter Ginneberge" wrote: == The controller then maps the different event types to Commands: // AppController: private function

Re: [Flashcoders] Dispatching events from V to C

2012-03-15 Thread Peter Ginneberge
I usually have Events that match the "data" (for lack of a better word) they are related with. eg: NewsEvent, UserEvent, etc.. Events then contain one or more static constants representing different event types. eg: NewsEvent.GET_NEWS, NewsEvent.UPDATE_NEWS, UserEvent.LOGIN, UserEvent.LOGOUT

Re: [Flashcoders] Should I use BlazeDS for this?

2012-03-09 Thread Peter Ginneberge
WebOrb seems to have RTMP in all their editions (including the free one). http://www.themidnightcoders.com/products/weborb-for-java/product-editions.html regards, Muzak - Original Message - From: "Dave Watts" To: "Steven Loe" ; "Flash Coders List" Sent: Friday, March 09, 2012 6:08 P

Re: [Flashcoders] MVC style Correction

2012-03-07 Thread Peter Ginneberge
What he was asking was where does certain logic go, such as: where do you check whether an email address is valid. So if only the view cares about the valid email address, you can do so in the view, otherwise move the logic to the controller. It also depends on how strict you are about what

Re: [Flashcoders] MVC style Correction

2012-03-06 Thread Peter Ginneberge
I guess I am looking to the controller to do the event dispatching to the model the model to listening for the result. You don't normally do that. The controller "talks" to the model directly, so the controller "knows" the model. The model doesn't "know" neither view nor controller and dispat

Re: [Flashcoders] MVC style Correction

2012-03-05 Thread Peter Ginneberge
PM Subject: Re: [Flashcoders] MVC style Correction I'm guessing we're now into nuancing the model to hold view states and the presenter is controlling multiple views, or is that wrong? On 05/03/2012 15:33, Peter Ginneberge wrote: The dependency with this is that any changes to the UI -

Re: [Flashcoders] MVC style Correction

2012-03-05 Thread Peter Ginneberge
The dependency with this is that any changes to the UI - additional views being added or removed, requires that the controller be changed too. Any change to a view could cause the controller to become broken. For this reason, I would say it's bad practice. Not necessarily so. But.. you'd use

Re: [Flashcoders] MVC style Correction

2012-03-01 Thread Peter Ginneberge
Found this FlashPaper swf that explains the ARP Pizza sample app: http://aralbalkan.com/downloads/FlashToFlex.swf The sample app is included in this download: http://osflash.org/downloads/arp/ARP_2.02.zip ___ Flashcoders mailing list Flashcoders@chat

Re: [Flashcoders] MVC style Correction

2012-03-01 Thread Peter Ginneberge
RP sources + samples, you can still see how it works (and use it if you like). http://osflash.org/downloads/arp/ARP_2.02.zip regards, Muzak ----- Original Message - From: "Peter Ginneberge" To: "Flash Coders List" Sent: Wednesday, February 29, 2012 4:25 PM Subject: Re:

Re: [Flashcoders] MVC style Correction

2012-02-29 Thread Peter Ginneberge
Here's what I use. packages: - business Contains singleton with services (RemoteObject, WebService, HTTPService, SQLite), used by Command classes. - commands Contains commands that are executed by the Controller when a matching event is triggered. Commands are responsible for fetchin

Re: [Flashcoders] Fwd: MVC

2012-02-17 Thread Peter Ginneberge
Main problem that I see with the code that was posted is that it breaks a major MVC rule and teaches a real bad habit: Views shouldn't have any knowledge of Models Not sure where you get the idea that a View shouldn't communictate with the Model directly: This states otherwise: http://st-ww

Re: [Flashcoders] Updating to 10.3 or 11 External player in cs5.5?

2012-02-08 Thread Peter Ginneberge
wc to to project's classpath. Once that's done, you're all set.. hit CTRL+SHIFT+ENTER and off you go. Same fla as previous post now has this output (in Flash IDE): Attempting to launch and connect to Player using URL C:\Users\Peter\Desktop\fp-test.swf [SWF] C:\Users\Peter\Desktop\fp-t

Re: [Flashcoders] Updating to 10.3 or 11 External player in cs5.5?

2012-02-08 Thread Peter Ginneberge
0,2,153,2 import flash.system.Capabilities; trace(Capabilities.version); In short, you're screwed :( regards, Peter - Original Message - From: "Peter Ginneberge" To: "Flash Coders List" Sent: Wednesday, February 08, 2012 8:24 PM Subject: Re: [Flashcoders] Up

Re: [Flashcoders] Updating to 10.3 or 11 External player in cs5.5?

2012-02-08 Thread Peter Ginneberge
is to actually wait for Adobe to release an updated version. I haven't used Flash in a long time, so things may have changed, but that's how it used to be. regards, Peter - Original Message - From: "Paul Andrews" To: "Flash Coders List" Sent: Wednesday, Fe

Re: [Flashcoders] Confirmation succeeded?

2012-01-30 Thread Peter Ginneberge
If you're going the java route, look into GWT and SmartGWT. http://code.google.com/intl/en/webtoolkit/ http://gwt.google.com/samples/Showcase/Showcase.html http://code.google.com/p/smartgwt/ http://www.smartclient.com/smartgwtee/showcase/#main Well Glen you kidda open the door so let me ask:

Re: [Flashcoders] Adobe is my down-ass chick

2011-12-31 Thread Peter Ginneberge
lash you can export to iPhone, iPad and Android with a simple click and for this reason the developing process is faster than any other thing done in another programming language? So right now, I stay with Flash. Happy new year to everyone. Il 31/12/2011 03:27, Peter Ginneberge ha scritto: Sorry

Re: [Flashcoders] Adobe is my down-ass chick

2011-12-30 Thread Peter Ginneberge
make web apps, desktop apps, android apps and ios apps? Il 29/12/2011 05:32, Peter Ginneberge ha scritto: Sure, we're never getting back in an exclusive relationship, but as long as she's willing to party, I'll keep her around until I find my next true love. Already found m

Re: [Flashcoders] Adobe is my down-ass chick

2011-12-28 Thread Peter Ginneberge
Sure, we're never getting back in an exclusive relationship, but as long as she's willing to party, I'll keep her around until I find my next true love. Already found mine. She's called GWT and she rocks. Still a bit rough around the edges, but she's getting there. Now if Flex (FlashBuilder)

Re: [Flashcoders] XMLList & Namespace Madness

2011-04-29 Thread Peter Ginneberge
The following works for me: === var myXMLList:XMLList = XMLList(xmlns="http://microsoft.com/webservices/SharePointPortalServer/UserProfileService"; xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"; xmlns:xsi="http://www.w3.org/2001/XMLSchema

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

2011-02-23 Thread Peter Ginneberge
Because it is much easier to get a random wrapper approved than AIR. Oh wait, it shouldn't be. Especially since AIR apps need to be digitally signed (requires certificate). Granted, you can build an AIR app with a developer certificate, but during install that is being displayed as "Publisher

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

2011-02-23 Thread Peter Ginneberge
AIR 2.0 has OS native installers (.exe, dmg). For first time user, it would be a two-step installation to run an AIR app. This is pretty much automated from what I remember. Haven't installed the runtime in a while though. There's also the option to use your own installer (e.g. NSIS) as a wra

Re: [Flashcoders] Re: OTish MP3 files for a piano scale

2011-02-08 Thread Peter B
This is why I love Flashcoders, and still lurk here despite not being actively involved in Flash development anymore. Great discussion :) ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcod

Re: [Flashcoders] ComboBox label issue

2011-01-24 Thread Peter Ginneberge
If you want to display both the fontName and fontStyle, define a labelFunction for the combobox. function setLabel(item:Object):String { var fnt:Font = item as Font; return fnt.fontName + " (" + fnt.fontStyle + ")"; } font_cb.labelFunction = setLabel; - Original Message - From: "Crei

Re: [Flashcoders] How to utilize this code:public staticconst: Needhelp understanding...

2011-01-12 Thread Peter Ginneberge
so I guess Yes, right - we're really just guessing Well, it was a bit more than just a guess :) http://www.matthijskamstra.nl/blog/index.php/2008/07/23/from-as2-to-as3-where-did-it-go-setrgb/ So a little as2 update. You're right that they serve no code-purpose in that class, but they co

Re: [Flashcoders] How to utilize this code: public staticconst: Needhelp understanding...

2011-01-12 Thread Peter Ginneberge
The class is a rewrite from AS2, so I guess they just left it in there. In AS3 - for use with getDefinitionByName() or getQualifiedClassName() - those constants serve no purpose, as to get to them you have to know their package anyway. - Original Message - From: "Merrill, Jason" To:

Re: [Flashcoders] How to utilize this code: public static const: Needhelp understanding...

2011-01-12 Thread Peter Ginneberge
I don't remember all the details, but if I'm not mistaken, those were used in the AS2 days to attach a class to a MovieClip, without them being linked in the Library (through the Symbol properties). Google: Object.registerClass and/or __packages Muzak - Original Message - From: "Mick

Re: [Flashcoders] Automagically create an interface from a given AS3class?

2010-12-20 Thread Peter Ginneberge
Just did a quick google and this turned up: http://flashfocus.nl/forum/showthread.php?t=38705 It's a Dutch forum, but you should be able to get the tool here: http://flashfocus.nl/forum/attachment.php?attachmentid=6488&d=1196363980 Haven't tried/tested it, just a quick google search. regards; M

Re: [Flashcoders] (From a PDF?) Getting bitmap data

2010-12-03 Thread Peter Ginneberge
Not sure what you mean with swc only. All sources can be found here: http://code.google.com/p/purepdf/source/browse/ http://code.google.com/p/fxpdf/source/browse/ http://code.google.com/p/pavo/source/browse/ - Original Message - From: To: Sent: Friday, December 03, 2010 7:07 PM Subj

Re: [Flashcoders] Fwd: Looking for Flash/Web Designer! Great

2010-09-07 Thread Peter B
Nice to see such a measured, mature response from the president of an LCC. If the crappy salary didn't warn people off the job, this kind of response certainly should. On 8 September 2010 12:05, wrote: > Such drama queens. Grow up. > Sent from my Verizon Wireless BlackBerry > > __

Re: [Flashcoders] Photo-realistic 3d in as3

2010-08-16 Thread Peter B
On 17 August 2010 07:31, Karl DeSaulniers wrote: > I believe it will let you, in swift, create an interactive animation > utilizing the vectors > of your polys and integrate AS code to control it, > > Swift is just generating the polygon ,odel and textures. In order to add interactivity you're st

Re: [Flashcoders] Smokescreen: Flash without the plugin

2010-06-01 Thread Peter B
"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. wrote: > Interesting. Does it only work with timeliner flash? Or can it handle > something entirely code-built? >

Re: [Flashcoders] another flash without flash library

2010-06-01 Thread Peter B
Shame it doesn't supporet anu of the really ineteresting stuff Flash does though. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Hello Everyone!!

2010-04-20 Thread Peter B
> > if you just moved from a third-world country and promised the client a huge > ecommerce flash site and usually hire russian flash devs but don't have any > contacts now and don't have money for a book then i would advise against > posting. > > > heh heh _

Re: [Flashcoders] import documents into flash

2010-02-15 Thread Peter B
"just to show what a great tool director used to be..." Still is! ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] [beno's eyes only] I Must Be Asking This Question Wrong...

2010-02-05 Thread Peter B
+1 ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] I Must Be Asking This Question Wrong...

2010-02-03 Thread Peter B
> Could you kindly translate that into Mac lingo? > Seriously? You couldn't even look up / work out that for yourself? Hmm - not a good SNR. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/fla

Re: [Flashcoders] WIRED hates Flash

2010-02-02 Thread Peter B
Now this is interesting too. Wired, through their 'Top Stories' feed ( http://feeds.wired.com/wired/index ) say this: "A Swiss startup has created a sleek video player that looks like Flash Player and works in multiple browsers, but uses only HTML5 and web standards." They then link to a Webmonke

Re: [Flashcoders] Any suggestion for texting

2010-01-28 Thread Peter B
Or more generically, Google for: http to sms ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Browser levels??

2010-01-26 Thread Peter B
>> Karl DeSaulniers wrote: >>> Is there a JSFL out there that would do that? Flash Javascript? Hey Karl. For the record JSFL is for performing tasks (think sorting library items, building / extending tools etc etc) inside the Flash authoring environment rather than in the FlashPlayer. ___

Re: [Flashcoders] Colour Matching

2009-12-16 Thread Peter B
You say it's more noticeable on one Mac than another, which is interesting. Are both displays set to the same colour depth? It's common to see this type of issue when viewing in 16 bit. Do you have a URL we could take a look at? Pete ___ Flashcoders mail

Re: [SPAM] Re: [Flashcoders] Delivering a flah christmas card by email

2009-12-12 Thread Peter B
To be fair Karl, just because it played well well for *you* doesn't mean it's a good idea, and doesn't mean it will play well for others... ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashc

Re: [SPAM] Re: [Flashcoders] Delivering a flah christmas card by email

2009-12-09 Thread Peter B
Spent some time looking into this years ago. Though it is possible to do (as Karl suggested, you can store the SWF somewhere on-line and embed via an HTML email), I would suggest it's not wise to. The main consideration for me is that I *hate* being forced to download something in my email, no mat

Re: [Flashcoders] Drag and drop from desktop to browser

2009-11-03 Thread Peter B
You can drag images from your local drive to Google Wave already - does need gears too though... 2009/10/31 Pedro Kostelec : > Hm...as far as i know they are trying to integrate the drag and drop > technology in Google Wave, but i think it is only a feature of HTML5. __

Re: [Flashcoders] monitor outgoing http requests

2009-10-11 Thread Peter B
IMHO Wireshark is overkill for simple HTTP sniffing. You can use Firebug extension for Firefox, and I also like Fiddler2: http://www.fiddler2.com/fiddler2/ Charles is ace, but not free... ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com htt

Re: [Flashcoders] RE: Pricing a Freelance Project

2009-10-11 Thread Peter B
I'd say £40 to £50 p/h is entirely reasonable for this kind of freelance work. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Searching all ActionScript in an FLA

2009-09-29 Thread Peter B
Did you try the Movie Explorer window? You can configure it to just show movieclips with AS attached... ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Job Fair - CIM (Comcast Interactive Media)

2009-08-27 Thread Peter B
I don't object to job postings here in general, or this one specifically. I was amused by the redundancy of asking if it was OK to post it at the same time as posting. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf

Re: [Flashcoders] Job Fair - CIM (Comcast Interactive Media)

2009-08-26 Thread Peter B
> Hi, can I post this ad? Is it too late to say 'no'? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] FLV export - size(w, h) vs data rate

2009-08-25 Thread Peter B
I did a lot of work around optimising videos about a year and a half back. For my money, I'd say you get better results by encoding at a smaller resolution and scaling up i Flash than by trying to squeeze the data rate down, so I'd say No.2. ___ Flashcode

Re: [Flashcoders] How to add a DisplayObject into a container without using addChild() method.

2009-08-18 Thread Peter B
2009/8/19 Leandro Ferreira : > A good CODER must go beyond a good CODE be fast when needed. That's MHO, and > It gets clear when we compare the number of lines we use to express > ourselves. > Indeed. And you unintentionally help to illustrate the point. Paul's post, though long, is clear in what

Re: [Flashcoders] Re: Sending 2 HTTP requests from a webchat-like app

2009-08-18 Thread Peter B
> Yes, a socket server would make my app easier to program, > but it would also make it unusable for too many users > (those behind corporate firewalls). Does this help wrt tunnelling through firewalls? Seems to allow a socket to be established on Port 80 http://www.blog.lessrain.com/as3-java-so

Re: [Flashcoders] mac vs pc

2009-08-10 Thread peter
a Mac. Unfortunately 3D programming (currently VRML although Papervision3d is in the picture) and streaming media are the bottlenecks. Would be nice to know some results of your research. Thanks. Succes, Peter Citeren "Allandt Bik-Elliott (Receptacle)" : [...] So the question I&#

Re: [Flashcoders] Seek bar not working with FLVPlayback Component?

2009-07-30 Thread Peter B
Sure Barry, that's the first type of cue point described in the article. You can't seek to an event cue point though. Cheers Karl ;) ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Seek bar not working with FLVPlayback Component?

2009-07-30 Thread Peter B
You can't. Setting cue points for time based navigation inserts a key frame. You can only seek to key frames. It's all covered in that article, specifically: "Specify the type of cue point you want to embed. You can embed either a navigation or event cue point. * Event cue points are used to tri

Re: [Flashcoders] Seek bar not working with FLVPlayback Component?

2009-07-30 Thread Peter B
>From the article Sam links to: "Navigation cue points are used for navigation and seeking, and to trigger ActionScript methods when the cue point is reached. Embedding a navigation cue point inserts a keyframe at that point in the video clip to enable viewers to seek to that point in the video."

Re: [Flashcoders] Seek bar not working with FLVPlayback Component?

2009-07-29 Thread Peter B
>From what I can see TS the issue isn't cue points but keyframes. As in, there are none in your FLV except one at the start and one at the end. FlashPlayer can only seek to an actual key frame, hence the behaviour you are seeing. AFAIK, the only solution to the issue is to re-encode the video, this

Re: [Flashcoders] Reach a single attribute value on a XML node with xpath AS3

2009-06-26 Thread Peter Hall
Hi Davide, I assume the asterisks are just for our benefit. And I think the path you are looking for is "root/ancestor/someElement/@someAttribute". You need the / before the @. Peter On Fri, Jun 26, 2009 at 6:17 PM, Dave Watts wrote: >> I'm parsing a huge xml file, and

Re: [Flashcoders] How can i asign an action to a loaded swf from the mainTimeLine?

2009-05-26 Thread Peter B
Are you perhaps trying to assign the event listener before the SWF has loaded fully? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Batch wrapping a bunch of FLV files in SWFs

2009-05-01 Thread Peter B
The accuracy is pretty much dependant on the density of keyframes in your FLV, as you can only seek to a timecode with a keyframe. This though is absolutely accurate. If your FLVs are of any lenght, and if they have audio, you are likely to run into difficulties wrapping them in a SWF. Pete _

Re: [Flashcoders] flickr api as3

2009-04-19 Thread Peter B
*Steven ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] flickr api as3

2009-04-19 Thread Peter B
Ha! Know what's crazy there? Your post Stephen, and the OP are now the number 3 & 4 results from that search... ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] ?: how to prevent users to copy text from a TextArea? SUMMARIZED

2009-04-01 Thread Peter vdr Post
saved my day: text cannot be copied and yet, URL's embedded in the text, can still be activated. Sample code and Muzaks' class MyTextArea are provided to whom it may need: (hopefully still readable despite the format of the list) Peter van der Post // class MyTextArea - a

Re: [Flashcoders] ?: how to prevent users to copy text from a TextArea?

2009-03-27 Thread peter
Taka and Anthony, Wooohaa, very nice working around which I will try definitely. Thanks. Peter Citeren Taka Kojima : public function DistributorsForm () :void{ [...] var details_ta_overlay:Sprite = new Sprite(); [ rest skipped

Re: [Flashcoders] ?: how to prevent users to copy text from a TextArea?

2009-03-27 Thread peter
f previous mail. It was easier to come up with above sample than I thought. Peter Citeren pe...@pepo.nl: Joel, Ian, I agree with you, because I thought I was doing it "by the book" (=AS3 Reference). Thanks, you are willing to look at the code. Code is included however it is extra

Re: [Flashcoders] ?: how to prevent users to copy text from a TextArea?

2009-03-27 Thread peter
t;textFormat", format); } } class moduleTemplate is not shown but does do anything with details_ta, or formatting components. Peter Citeren Joel Stransky : Somehow I doubt that. How about posting your code so there's no confusion. On Fri, Mar 27, 2009 at 3:36 PM, wrote: J

Re: [Flashcoders] ?: how to prevent users to copy text from a TextArea?

2009-03-27 Thread peter
Joel, Thanks, however that didn't work. (sorry if I was not clear in my response on Ian's hint, because what you wrote was exactly what I did) Still no joy ... Peter Citeren Joel Stransky : Target the TextArea's TextField details_ta.textField.selectable = false; On Fri,

Re: [Flashcoders] ?: how to prevent users to copy text from a TextArea?

2009-03-27 Thread peter
do with it? Peter Citeren Ian Thomas : Try: textArea.textField.selectable=false; HTH, Ian On Fri, Mar 27, 2009 at 4:38 PM, wrote: I'll have to prevent users to copy text from a TextArea. In Flex I saw you do that bij setting a selectable attribute of the mx.controls.TextArea to false.

[Flashcoders] ?: how to prevent users to copy text from a TextArea?

2009-03-27 Thread peter
hint. Thanks. PS. setting editable of the TextArea to false doesn't help, and setting the enabled attribute of the TextArea to false gives a disabled look and is not the intention. Peter van der Post ___ Flashcoders mailing list F

[Flashcoders] Replacing Colors?

2009-01-13 Thread peter ginsberg
Is there any way to do color swaps in AS3? What I'm looking to do is: Take a given DisplayObject (MovieClip or Sprite to be specific), look for particular colors (specific RGB values) and replace those colors with other specific RGB values, all without touching any other colors. Sort of like some

Re: [Flashcoders] ComboBox + Custom Cursor , AS3

2008-11-12 Thread Peter Hall
Oh yes sorry, it's Flex. Peter On Wed, Nov 12, 2008 at 1:26 PM, Karim Beyrouti <[EMAIL PROTECTED]> wrote: > Did not find it in Docs, so googled it - and it's a Flex thing no?... > > Using flash CS3... > > > > -Original Message- > From: [EMAIL P

Re: [Flashcoders] ComboBox + Custom Cursor , AS3

2008-11-12 Thread Peter Hall
Are you using CursorManager or adding the cursor in some other way? Peter On Wed, Nov 12, 2008 at 12:42 PM, Karim Beyrouti <[EMAIL PROTECTED]> wrote: > Hello All - > > I am a little stumped by this one. > > I am using a custom cursor ( added to the stage ), > one of my

Re: [Flashcoders] What is the ActionScript equiv. to HTML ?

2008-11-01 Thread Peter Witham
Hi, Can you not just put a stop(); on the last frame to stop it from starting over? Regards, *Peter Witham* http://www.evolutiondata.com On Sat, Nov 1, 2008 at 2:05 PM, William Adams <[EMAIL PROTECTED]>wrote: > I'm loading a Flash file in a MovieClip and I want it to play

Re: [Flashcoders] attachMovie() with non-library-symbols

2008-10-23 Thread Peter Hall
? Peter On Thu, Oct 23, 2008 at 9:31 AM, strk <[EMAIL PROTECTED]> wrote: > On Thu, Oct 23, 2008 at 10:01:37AM +0200, Matthias Dittgen wrote: > >> if you mean EXPORT tags in the swf bytecode, >> I am not aware of the tags that are written by the compiler when using >> th

[Flashcoders] SWC catalog XML file format documentation?

2008-10-06 Thread Peter Nicolai
Hi, There are a couple of posts on this list from April discussing using nochump's ziplib to open & read SWC files. I'm looking to do something along those lines. Is anyone aware of any documentation from Adobe on the SWC catalog's XML file format? thanks __

Re: [Flashcoders] Sound/Music

2008-08-25 Thread Peter B
I like this one: http://www.sound-effects-library.com/ Pete ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Re: Flash - cross-platform? really?

2008-08-13 Thread peter ginsberg
On Wed, Aug 13, 2008 at 10:04 AM, Ashim D'Silva <[EMAIL PROTECTED]>wrote: > Hey, thanks for all the feedback. > I'd like to think we've tested on a large enough amount of machines to > eliminate differences in power, and I hate to say it but PC's are > performing > better than Macs. > Any more inf

Re: [Flashcoders] Re: Flash - cross-platform? really?

2008-08-13 Thread Peter B
FYI the massive GIF of the guy falling onto the goat at the end seems to be a massive performance bottleneck... Also, you may find some useful information here: http://www.craftymind.com/2008/04/18/updated-elastic-racetrack-for-flash-9-and-avm2/ HTH Pete

Re: [Flashcoders] Does anyone want to sell Zinc 2.5?

2008-08-08 Thread Peter B
> I here that the 3.0 version is unreliable. Well, it has that in common with 1.0, 2.0 and 2.5 then... ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] CS3: "Test Movie" vs. published swf (or, how to update test player?)

2008-07-20 Thread peter ginsberg
This isn't precisely related to AS3, but it's definitely something in my code in particular causing this issue. I'm working on an application (a game) that contains some pretty complicated AS3 code. It's a CS3 project, with a main .fla file and several sub .flas with their own classes. I don't t

Re: [Flashcoders] Strange Masking Bug in Flash

2008-07-03 Thread peter ginsberg
On Thu, Jul 3, 2008 at 12:07 PM, Allandt Bik-Elliott (Receptacle) < [EMAIL PROTECTED]> wrote: > are the masks rendered as bitmaps? > Yay, thank you! I'm not sure why I didn't try this before, but you're right -- if I set cacheAsBitmap to true on the mask and the masked clip, the issue disappears

[Flashcoders] Strange Masking Bug in Flash

2008-07-03 Thread peter ginsberg
Hoping to get some help with a bizarre bug that has been haunting development of the current game we're working on. The situation is this: We have character animations where we swap in dynamic clothing. We developed a system where we add patterns dynamically to the clothing by doing the following

Re: [Flashcoders] Flash Player security hole

2008-05-28 Thread Peter B
> you are only vulnerable if your site is hackable No no - you are vulnerable if you *visit* a site that has been hacked. 2008/5/28 Gerrit Grobbelaar <[EMAIL PROTECTED]>: > The UPDATE section here: > http://www.securityfocus.com/bid/29386/exploit > > states that website hacks let the pages forwar

Re: [Flashcoders] XPath

2008-04-30 Thread Peter Hall
is actually of type "node", but you have to read between the lines to get that, especially as attributes have special treatment elsewhere. Peter On Wed, Apr 30, 2008 at 12:23 PM, Glen Pike <[EMAIL PROTECTED]> wrote: > But hey, it works now right and I won't be upgrading

Re: [Flashcoders] XPath

2008-04-30 Thread Peter Hall
On Tue, Apr 29, 2008 at 7:11 PM, Peter Hall <[EMAIL PROTECTED]> wrote: > In XPath 1.0, an attribute is an axis, not a node, and so cannot be > used as a context node. (ie the self axis that you are attempting to > access with "." does not exist). I could be wrong on th

Re: [Flashcoders] XPath

2008-04-29 Thread Peter Hall
ort more than is required. Anyway, the following will work instead: //*[contains(@file, '.swf')]/@file Peter On Tue, Apr 29, 2008 at 6:06 PM, Glen Pike <[EMAIL PROTECTED]> wrote: > Hmmm, > >Seems my original reply did not go to the list: > >Here is the ema

Re: [Flashcoders] XPath

2008-04-29 Thread Peter Hall
I was about to reply the same thing. But I don't think it is being developed any more, so it might be a matter of fixing it yourself... Peter On Tue, Apr 29, 2008 at 4:52 PM, Pete Hotchkiss <[EMAIL PROTECTED]> wrote: > Bugs - interesting I've used this extensively for some ti

Re: [Flashcoders] Flash + Air

2008-04-25 Thread Peter B
The easiest way? Put the name of the SWF in the filename node of the AIR application descriptor file. See http://livedocs.adobe.com/air/1/devappshtml/help.html?content=HTMLHelloWorld_1.html Note - this example is an HTML based 'hello world' but the information about the application descriptor file

Re: [Flashcoders] Question about the AIR security model...

2008-04-24 Thread Peter B
Could sandbox bridging help here? http://www.adobe.com/devnet/air/ajax/quickstart/sandbox_bridge.html This example descibes loading local HTML files, but the same rules apply... Pete ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http:/

  1   2   3   >