Re: [flexcoders] Detect exeptions - help!!

2009-02-04 Thread John McCormack
Alex, Can you recommend a particular network monitor? I would like to catch all the local connection messages - i.e. between a Windows exe and Flash swf working on the same PC. John Alex Harui wrote: > > It would be unusual for Flex to hang waiting for the server. Use a > network m

Re: [flexcoders] Flex Builder debugger problems

2009-01-23 Thread John McCormack
tly IE may show no content when interrupted by Flash/Flex. John Curtis Barrett wrote: > I'm running into an odd problem with the Flex Builder debugger. About > 4/5ths of the times that I click the debug button I get a nice, white > IE page. It has the loading icon down at the

Re: [flexcoders] SWF access from Javascript from different domains

2009-01-22 Thread John Robinson
I think you need to add the "allowScriptAccess" param: http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_16494 John On Jan 22, 2009, at 11:49 AM, edison5308 wrote: > Hi Everyone, > > > I have a problem (looks like a domain issue) with communication > betwee

Re: [flexcoders] FB debug constantly logs to console

2009-01-20 Thread John Van Horn
ader or one of its subclasses such as Image. This is simply Player > telling you about it decoding the results and adding them to the VM. > > -Josh > > 2009/1/21 John Van Horn > > All of a sudden a few days ago, launching a debug session in FB3, results >> in FB (or may

[flexcoders] FB debug constantly logs to console

2009-01-20 Thread John Van Horn
bytes after decompression [SWF] Users:jvanhorn:player.swf - 0 bytes after decompression [SWF] Users:jvanhorn:player.swf - 0 bytes after decompression -- John Van Horn jmvanh...@gmail.com

Re: [flexcoders] Cant empty context menu- previous answers don't work...

2009-01-14 Thread john fisher
Thanks Doug, I'll stop trying to make this work and change the interface idea. Flex team: this seems like a collision between proprietary ideas of how to build a framework and Open Source culture. Obviously a developer ought to be able to do whatever he likes with right-click events. John

Re: [flexcoders] Cant empty context menu- previous answers don't work...

2009-01-13 Thread john fisher
TEM_SELECT,createParamPopUp); var customContextMenu:ContextMenu = new ContextMenu(); customContextMenu.hideBuiltInItems(); customContextMenu.customItems.push(menuItem); Though it does add an item, and run the associated function. Has anyone cleared the *whole* contextMenu out? or Taken control of mouse-rt-click events so as to avoid the standard contextMenu? John

[flexcoders] Cant empty context menu- previous answers don't work...

2009-01-13 Thread john fisher
round: I'd be just as happy to get a right-click event on my sprite, and dump the context menu altogether! building in: Flex3.0 flexbuilder for Linux running on: Firefox 3.x on Linux, Flash debugger v 9 0 11 5 0 thanks John

Re: [flexcoders] Re: Generating random colors, excluding others

2009-01-13 Thread john fisher
ColorTransform(Math.random(), Math.random(), Math.random(),1,(Math.random() * 512) - 255, (Math.random() * 512) -255, (Math.random() * 512) - 255, 0); } HTH John

Re: [flexcoders] use an actionscript class from a SWC in actionscript

2009-01-09 Thread John McCormack
dnk wrote: > Hi there i have written a very simple class in AS that has ben added > to a personal library (SWC). > > Now in mxml I can reference the classes and components easily by > putting a: > > xmlns:mycomps="*" > > > Now what I would like to know is how would I reference a class that is

Re: [flexcoders] Creating an ArrayCollection object for charting

2009-01-08 Thread john fisher
Bless you! this is the syntax I didn't get- and behold, it works! excellent. Maciek Sakrejda wrote: > > then inside that loop, for each property you want to graph: > currItem[element.name()] = element.valueOf(); > >

Re: [flexcoders] Creating an ArrayCollection object for charting

2009-01-08 Thread john fisher
Thanks Maciek... I actually started that way, but it failed. I'll try again and post if I can't get it to work. Maciek Sakrejda wrote: > It looks like you're creating a String that looks like the code for the > object (i.e., "{ foo: 'bar' }"), and then casting that to Object. That > won't do what

Re: [flexcoders] Creating an ArrayCollection object for charting

2009-01-08 Thread john fisher
Can I define this better? Anybody got an idea? john fisher wrote: > > > ## This does not work: > simpleData = new ArrayCollection([]); > var st:String = new String(); > > #left out the l

[flexcoders] Creating an ArrayCollection object for charting

2009-01-07 Thread john fisher
pps:2233, refresh:3000, outpps:7799, conns:2211, inbps:1144, inpkts:3322, outbps:2233, outpkts:4433, inbytes:4455, outbytes:5544,cps:6655}" uid = "9543B87D-14F5-0BC6-E2F0-B289C8EC32FC" sort = (null) source = (Array)#2 # thanks John

Re: [flexcoders] My frustrations with the Adobe Bug Report system

2008-12-20 Thread John McCormack
I found it extremely slow and painful yesterday when I tried to add feature requests for Flex 4. Might it work better as an Air application sorted on build number. We don't have many builds out in the field so it might not be a problem. Thanks John Matt Chotin wrote: > Hi Jason, > &

Re: [flexcoders] SWC compression format?

2008-12-17 Thread John McCormack
If you rename the *.swc file to a *.zip file you can open it with Windows Vista (and XP?) or with 7-zip (etc.) without renaming it, so it must be a derivation of the pkzip format. There are some zip functions in the nochump branch of papervision3D so that might help. John aaron smith wrote

[flexcoders] Re: Flash being cached

2008-12-04 Thread John Luke Mills
There is a Firefox extension called johnnycache that lets you supply a list of sites not to cache. I put all the servers I work on there so I always get the newest version.

Re: [flexcoders] People with blogs

2008-12-04 Thread john fisher
ajaxed-wp exec-php raw-html John Nate Pearson wrote: > Sorry this is a little off topic. I'm trying to start a flex blog but I'm > not sure how to copy code > from flex builder into Wordpress and have the formating stay the same. Is > there some plugin > that you us

Re: [flexcoders] multiple data sources not loading except in MXMLapp

2008-11-23 Thread John Fisher
Tracy, Fotis... apologies. I set up the same experiment at home and it works fine. Of course because *there was no error message or event* gr I wasted two days tracking it down. so close this question . and thanks John Tracy Spratt wrote: > "..it just jumps from service.send

Re: [flexcoders] multiple data sources not loading except in MXMLapp

2008-11-21 Thread john fisher
Tracy Spratt wrote: > "..it just jumps from service.send()to the next function in the init > file ...", that is normal, because of the async nature of RPC calls. > The code does NOT wait until the call returns. How are you debugging? > You need a breakpoint or trace or alert in the handler. >

Re: [flexcoders] multiple data sources not loading except in MXMLapp

2008-11-21 Thread john fisher
Tracy Spratt wrote: > Have you debugged to see if httpResult is being called? > thats it exactly, it never gets called I added the "e4x" and no difference. When debugging it just jumps from service.send() to the next function in the init file. I think I should make a dummy mxml app and see

Re: [flexcoders] multiple data sources not loading except in MXMLapp

2008-11-21 Thread john fisher
service.addEventListener("fault", httpFault); service.send(parameters); } public function httpResult(event:ResultEvent):void { var result:Object = event.result; //Do something with the result. } thanks for the help, John

Re: [flexcoders] multiple data sources not loading except in MXMLapp

2008-11-21 Thread john fisher
great. good news = " I am doing something wrong" never mind Flare - the data is never getting there... here's what I have: an xml source and a graphml source. Each will drive a visualization. Maybe more sources to come... here's what I want to do: make a class or component for each type of visua

Re: [flexcoders] multiple data sources not loading except in MXMLapp

2008-11-21 Thread john fisher
OOps I am NOT able to get two HTTPServices working in one MXML app. Is there a way around this? john fisher wrote: > The problem: > I have multiple data sources and multiple visualizations planned. > I am using the Flare libraries for some ( and I have also asked this on > their for

[flexcoders] multiple data sources not loading except in MXMLapp

2008-11-21 Thread john fisher
MXML app. Symptom: no error, var is null after loading. Am I hitting known limitations? John

Re: [flexcoders] Re: updating data in Actionscript

2008-11-13 Thread john fisher
e theres a swf and theres a data source somewhere behind a URL, and thats all you need John netdeep wrote: > The problem is that I'm transferring an ActionScript object to the server, > populating it with > the data, and then returning the ActionScript via BlazeDS and remot

[flexcoders] Re: re-throwing keystrokes to browser?

2008-11-12 Thread John Athens
I would be very interested in your ExternalInterface solution. Pleae, tell me more. Thanx... --- In flexcoders@yahoogroups.com, ibo <[EMAIL PROTECTED]> wrote: > > I want the browser to react on the CTRL-T (new tab). > But since the focus is on the flash app, it doesnt do that. > So I think I have

Re: [flexcoders] updating data in Actionscript

2008-11-12 Thread john fisher
I am using an httpservice to xml files on other servers. The display changes when the file changes, mostly. All you have to do is bind the dataprovider. Maybe your problem is different? Theres lots of documentation for what I am doing John > I have been trying to find an answer for t

Re: [flexcoders] udefined property error without function

2008-11-11 Thread john fisher
No you nailed it. I didn't understand about having to use a function. I'm sure I moved my eyes over the very document, but it just didn't stick. Thanks. John Paul Andrews wrote: > > > I have a feeling this error may not be to do with these particular snippets. > > Paul > > > > >

Re: [flexcoders] udefined property error without function

2008-11-11 Thread john fisher
I am calling addChild inside the mx script section of a mxml file. If it has to be called inside a method, then I need some instruction. JF Fotis Chatzinikos wrote: >> public var myDemoClass:Zdemos ; >> public var myDataFilePath:String = "http://.realdata2.xml"; ; >> >> myDemoClass = new

Re: [flexcoders] Re: Debugging: general advice

2008-11-11 Thread john fisher
ah, I did not grok that trace() would work with all classes, d'oh, I'll have to get trace working. I used my own before, but of course it doesn't work outside the main mxml code. thanks Amy wrote: > - > I use trace() when it _is_ in the browser,

Re: [flexcoders] Debugging: general advice

2008-11-11 Thread john fisher
e an option. You could also look > into X-Ray. > > -Josh > > On Tue, Nov 11, 2008 at 11:30 AM, john fisher <[EMAIL PROTECTED]> wrote: > > >

Re: [flexcoders] udefined property error without function

2008-11-11 Thread john fisher
oh %^&$ thats what I get for typing anything instead of cut&paste! sorrybut The *actual* error has the capital "P" so unfortunately its not this simple pilot error, though I am not ruling out some other dumb pilot error any other idea? Paul Andrews wrote: > - > > You'll notice that in th

[flexcoders] udefined property error without function

2008-11-10 Thread john fisher
blic var myDataFilePath:String = "http://.realdata2.xml"; ; myDemoClass = new Zdemos(myCanvas,myDataFilePath); myCanvas.addChild(myDemoClass.getUIComponent()); Errors: "access to undefined property" myCanvas/myDemoClass/myDataFilepath thanks for help John

[flexcoders] Debugging: general advice

2008-11-10 Thread john fisher
clicks. Is there any way to do this other than re-writing the code to call the bad section automatically? yes the damn debugging flash crashes FireFox all the time. sigh. fortunately I can type "kill" and Firefox remembers where I was tips and dope-slaps welcome. John

Re: [flexcoders] Re: Security and dual localhost address question

2008-11-05 Thread john fisher
its in the hosts file by default on *nix OSes.. dunno what Windows does. If the problem is resolving "localhost" the solution is in the places we pointed him John Fotis Chatzinikos wrote: > John, appart from your correct info on dns, I do not think thats John's > p

Re: [flexcoders] Re: Security and dual localhost address question

2008-11-05 Thread john fisher
t; hence the need for hosts file and DNS. If your browser says "http://..."; it still uses the network interface, even if its all on one machine. this is a Good Thing. If it uses "file://..." then not. This is why the raw ip address works and localhost doesn't - see? HTH

Re: [flexcoders] Security and dual localhost address question

2008-11-05 Thread john fisher
ame.domain.com name name.domain.com ... HTH John ralcab wrote: > I am building a Flex (version 2) application on my machine with a > Tomcat server that is hosting the application, a couple of servlets > and an Axis2 web service. The application runs fine if I load it > fr

Re: [flexcoders] What classes are available to Flex applications vs AS3 applications?

2008-10-28 Thread john fisher
Me too: I am trying to move an app based on an AS class ( using the Flare classes ) into an MXML app, and I'd appreciate any tutorial on this. John ivo wrote: > Ive found that I can import many classes under the packages below, but not > all. The whole trial and error method of fi

Re: [flexcoders] first time using the AdvancedDataGrid and can use some help.

2008-10-24 Thread john fisher
nested XML than yours. oh yeah beware there are differences ( not very well understood be me yet) between XML: and XMLListCollection. John Mark wrote: > > I'm finding a few examples in the help and online but with > everything I see the XML only goes about 2 deep. I'm having

Re: [flexcoders] Do you use a Mac?

2008-10-24 Thread john fisher
yeah, thanks, have that. Its much better than a couple of years ago. Probably plenty good enough for a bushwhacker like me if I just took some time with it. J Guy Morton wrote: > Inkscape is a reasonable Illustrator-replacement, and it's free. > >

[flexcoders] Re: PLaying Flash From Scratch

2008-10-24 Thread John
edocs.adobe.com/flex/3/langref/mx/containers/ViewStack.html# event:change > > > --- In flexcoders@yahoogroups.com, "John" wrote: > > > > Does anyone have any source code for this? I cannot find anything > > mentioned in the Flex 3 documentation. > > >

Re: [flexcoders] Do you use a Mac?

2008-10-23 Thread john fisher
Just in case anybody cares, it is also possible to use Flex Builder on Linux. Since I don't normally use any non-free software, and I do a lot of Linux sys admin, thats good for me. There are a few apps I can't duplicate, like Illustrator and Google Sketchup and Rhino, but mostly I don't miss anyth

Re: [flexcoders] Re: getStyle("fill") from chart series fails

2008-10-23 Thread john fisher
signed, so I know the setStyle is working... Continuing to experiment John Amy wrote: > If it were me, I'd put the result of the getStyle() into a variable > with a * type and set a break point to look at it in the variables > window, rather than trying to trace it out. > >

Re: [flexcoders] Custom Tooltip-class

2008-10-23 Thread John Hauf
Hi, yes that's true. I could do it using the way you described, but in my case I want to display multiple tooltips at once for printing and that is only working with the createTooltip method, so I need to use it. John Farid SALAH wrote: > > Le 23 oct. 08 à 16:32, John Hauf a écrit

[flexcoders] Custom Tooltip-class

2008-10-23 Thread John Hauf
g the ToolTipManagerImpl-class? Thanks John

[flexcoders] Re: PLaying Flash From Scratch

2008-10-23 Thread John
nd depending on the index of the stack > call the appropriate swf start/play method > > > On Wed, Oct 22, 2008 at 3:20 AM, John < > [EMAIL PROTECTED]> wrote: > > > My actionscript is not that strong, we have several Flash animations > > in each of our view

[flexcoders] getStyle("fill") from chart series fails

2008-10-22 Thread john fisher
// Add the LegendItem to the GridItem. gi.addChild(li); // Increment any time a LegendItem is added. z++; //display("z counter = " + z ) ; } } } } ]]> /// thanks John

Re: [flexcoders] Re: How to keep Tree control synchronized with the database. Please Help

2008-10-22 Thread john fisher
Anuj I meant, "search through the online adobe docs for 'timer polling example' or other keywords like those." there are many many examples in the online docs at Adobe. John anuj sharma wrote: > Hi John > I am not sure i get what you are trying to say. Can you be ple

Re: [flexcoders] Re: How to keep Tree control synchronized with the database. Please Help

2008-10-22 Thread john fisher
@mark: thanks will check it out @anuj: this is just exactly what the adobe sample code does, except not directly to the database. anuj sharma wrote: > ... Can I use the Timer class to create a timer instance > which will periodically call HTTP a

[flexcoders] Flash

2008-10-22 Thread John
Hi there, Just a few quick questions from me: What is the best way to inserting a Flash SWF file into a flex, that will enable me to have it start from frame 0 on reentry of that framework? Would this be States, Viewstack? Is there a way of using forward and back buttons to navigate through d

Re: [flexcoders] How to keep Tree control synchronized with the database. Please Help

2008-10-21 Thread john fisher
the socket connection in the two demos I made. I'm just a newbie, so if there is another way, I'd sure like to hear about it. John Paul Andrews wrote: > Isn't this simply a problem that multiple calls are required to poll the > database for change? I think the OP r

[flexcoders] Re: PLaying Flash From Scratch

2008-10-21 Thread John
in. > What you want to do is have your Flash play when an event occurs. For > the instantiation you would probably want to use the CreationComplete > event. For subsequent times I think the event is Show (Although I > could be wrong) > > > --- In flexcoders@yahoogroups.c

Re: [flexcoders] Syntax of using a variable to make an object

2008-10-18 Thread John Fisher
Thanks Paul. Paul Andrews wrote: > > > The curly bracket syntax is for compile time declaration only where the > compiler knows all of the values at the time of compilation. In your example > variables are involved so the compiler gives you an error. > "AHA" he said. > Generally speaking the

[flexcoders] Syntax of using a variable to make an object

2008-10-17 Thread john fisher
ection. And I don't really get the curly brace syntax, as you can see... Thanks for guidance here... John PS what is the proper name for this like 'passing by reference vs passing by value' or?

Re: [flexcoders] AS equivalent for perl's chop/chomp?

2008-10-17 Thread john fisher
thanks Guy and of course you're right if they irritate my sense of code style, I can just wrap them up. Just thought I'd ask in case I missed something. John Guy Morton wrote: > I don't think so...I've never seen one, but what's hard about using > Strin

[flexcoders] AS equivalent for perl's chop/chomp?

2008-10-16 Thread john fisher
I see String.replace using a regex, but is there a more straightforward way to do this (very) common adjustment? (perl: "chop" and "chomp" delete the last character from a string in slightly different ways) thanks, John

[flexcoders] Changing the Default Colour and Preloader

2008-10-15 Thread John
Hi there I would like to change the preloader and the default colour that a Flex application has when it is downloading into the browser. Where is the best place to find out more about this? TIA J

[flexcoders] PLaying Flash From Scratch

2008-10-15 Thread John
Hi there I wonder if someone can help me. I have a viewstack with seperate pages - each page has a Flash animation. However, what I have found is when I navigate through the viewstack, the flash plays, then I goto the next page all is fine, but, if I then return to the previous one - it does

Re: [flexcoders] Re: Feeding complex XMLdata to charts: Flex3

2008-10-10 Thread john fisher
data from this big ugly XML file, I found myself off in the weeds. and thanks again, I am still working up to taking your code apart. John Amy wrote: > > > I was actually surprised to find that creating charts in AS instead > of MXML was actually _less_ confusing and quicker than MXML. > >

Re: [flexcoders] Feeding complex XMLdata to charts: Flex3

2008-10-09 Thread john fisher
worth will likely be revealed to me later. 2) use of the "child" method on XML objects, I need to practice this and figure it out. 3) I was right, the bar charts just want an array of arrays for data, but I lacked the tools to create that from the XML. further comment welcome. John

Re: [flexcoders] Re: Feeding complex XMLdata to charts: Flex3

2008-10-08 Thread john fisher
Hey I see what you are doing, including a call I didn't know about... thanks will try this afternoon, and probably have Qs. Have to write some release notes first. I knew I was having a forest and trees problem, but sometimes you just get stuck. John Amy wrote: > > You might find

[flexcoders] Feeding complex XMLdata to charts: Flex3

2008-10-07 Thread john fisher
o some complicated restructuring of the data before I return it from the dataFunc, so I send a simple array like shown above? Thanks! John *Simplified Data:* PC 1 1 eth3 0

[flexcoders] Re: Base64Encoder / Base64Decoder

2008-09-25 Thread John Luke Mills
); bArray = b64decoder.drain(); var temp : String = bArray.toString(); return(temp); }//decodeString }//class }//package Regards, John Luke Mills

[flexcoders] Overriding Combobox and ListBase

2008-09-25 Thread John Luke Mills
? Various attempts to make my own copy or extend and override this function haven't worked. Thanks, John Luke Mills

Re: [flexcoders] Who is Rxxxx Txxxxxx?

2008-09-02 Thread John McCormack
s going to be in a big mess, so let''s get on now. John

[flexcoders] dynamically sorting an adv datagrid

2008-08-26 Thread John Wilker
olumn the user selected. I may have other issues, but that's the first one. Is there a better approach? any thoughts on my current one? Not sure which code would help so I'll post if asked. John Wilker Vice President of Operations 360Conferences, Inc. twitter: jwilker www.johnw

[flexcoders] mx.core.Container - Event when child objects have been shifted?

2008-08-20 Thread John Hauf
l position." Is there any event that is dispatched when the child objects have been shifted? The updateComplete-event won't work. Thanks John

Re: [flexcoders] Flex and Vista 64

2008-08-18 Thread John McCormack
Flex Builder 3.0 works great on Vista Ultimate x64. John mvbaffa wrote: > Hi All, > > Does Flex Builder 3.0 works with Vista x64 > > Thanks in advance >

Re: [flexcoders] link report question

2008-07-30 Thread John Van Horn
share constant > pools, but there is an optimization pass where some byte code is pulled from > swf, but then the SWF is compressed so it will always be smaller than the > sum of sizes. > > > -- > > *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PRO

[flexcoders] link report question

2008-07-30 Thread John Van Horn
Can someone explain where exactly the "size" and "optimizedsize" attributes for a script in a link report come from? The sum of optimizedsize for all nodes in a link report always seems to be way more than the file size of the swf. -- John Van Horn [EMAIL PROTECTED]

Re: [flexcoders] asdoc - generate core framework documentation

2008-07-23 Thread John Hauf
lay.Sprite to Object. Is there any solution to include the classes form the flash package (playerglobal.swc) in the generated documentation too. Thanks John John Hauf wrote: > Hi, > > I have tried to generate the documentation in the core framework using > the following command as d

[flexcoders] asdoc - generate core framework documentation

2008-07-22 Thread John Hauf
there is no core-framework-manifest.xml file in my 3.0.0 flex sdk. Can anybody tell me how to generate these docs? I have managed to generate the documentation for my own projects, but I want to include the docs for the core framework too. Thanks John

[flexcoders] java ant tasks with compc - examples?

2008-07-16 Thread John Waggener
I'm using java ant tasks with compc. If anyone can point me to tutorials or examples of how to take a number of packaged classes and compile them into a library swc file, I would be most appreciative. One thing to note about the documentation: Using compc, the component compiler http://livedocs.a

[flexcoders] Working treegrid ? osflex / flexlib

2008-07-14 Thread John Dumbar
Hello all... It seems this topic has been around a lot, but my question is: is there any definitive answer? I found flexlib component, but ther are many issues on their wiki regarding dataprovider updates and all... wich makes it bad i think. Also, osflex has a component for treegrids that seem

[flexcoders] Flex Builder Plugin and Eclipse 3.4 (Ganymede)

2008-07-04 Thread John Hauf
Hi All, has anybody success in running Flex Builder 3 plugin (3.0.194161) with Eclipse 3.4 (Ganymede)? I tried this combination, but when I open mxml-files, I get an "assertion failed" error. Thanks John

Re: [flexcoders] Strange problem with Flex-Builder

2008-07-02 Thread John Hauf
comes first in alphabet in another tab and shows me the definition there. So it seems flex does not distinguish between projects when dealing with linked resources. John John Hauf wrote: > Hi All, > > i found a strange behavior in Flex-Builder (plugin) on OSX 10.4.11 when > usin

[flexcoders] Strange problem with Flex-Builder

2008-07-01 Thread John Hauf
il I close the file and reopen it. The strange thing is, that when I keep the second tab open and close the first, Flex Builder now exactly does what I want: Go to the definition of the variable in the same tab. Does anybody have the same problem or is there a solution for this issue? Thanks in advance, John

Re: [flexcoders] Re: Splitting FlexCoders in smaller, focused groups

2008-06-17 Thread John McCormack
How about an agreed list of acronyms that we use to prepend the Subject line with: NEWB, MXML, AS3, DESIGN, HTTP, ALL, etc., and we do the sorting ourselves with the mail rules? John

Re: [flexcoders] Math.abs() Limitation?

2008-06-11 Thread John McCormack
works as expected. John - Original Message - From: Daniel Freiman To: flexcoders@yahoogroups.com Sent: Friday, June 06, 2008 10:10 PM Subject: Re: [flexcoders] Math.abs() Limitation? I figured it out. The trace made it obvious (as opposed the debugger which is what I was

[flexcoders] feedback on RIA social networking site

2008-06-06 Thread John Moore
I just launched http://www.riaspot.com as a social networking site. It's totally non-commercial, just a way to connect to people in the RIA world. It's still beta - no content, but I'd love any feedback from fellow flexperts. It also doesn't cost anything to sign up, if you so choose. Thanks

Re: [flexcoders] Re: Importing SWC Files in FLEX

2008-05-25 Thread John McCormack
ts own cutdown class for it when ti doesn't find one. I got the above error when I followed various guidelines and tried to do something more complicated. Fingers crossed for you! John

[flexcoders] Has anyone heard of a SMIL Actionscript engine?

2008-05-13 Thread John Waggener
Has anyone heard of a SMIL Actionscript engine? Is there a standard markup language for synchronizing multimedia in Flash? Thanks, Johnny

[flexcoders] FB3 Hell...help please

2008-05-09 Thread John VanHorn
. I dont know what else to dosearching around turned up a few hits of folks having similar problems, but nothing they suggest to do has helped. Any ideas? -- John Van Horn [EMAIL PROTECTED]

[flexcoders] capture flash output?

2008-05-08 Thread John Waggener
Is there an effective way to capture the playback of a flash movie? I would like to output the playback of a collection of images, video, and audio files to a single flv. Is there a solution for this?

Re: [flexcoders] SWFLoader not scaling properly

2008-04-15 Thread John McCormack
In the constructor try stage.scaleMode = StageScaleMode.EXACT_FIT; and in the Flex Navigator right click the project and choose properties, then ActionScript Compiler and in additional compiler arguments enter the size... -default-size 800 600 John - Original Message - From: "A

[flexcoders] 360|Flex Europe, about a month away

2008-03-03 Thread John Wilker
Europe in just over a month!! Ask around, check out the blogs, ask Tom or I directly, we're here. Ok list spam over, go back to coding :) john

[flexcoders] Tilelist Error

2008-03-01 Thread John DuPaix
and down, they all disappear and are not redrawn. Any ideas? Thanks, John

RE: [flexcoders] HTML over Flash object

2008-02-25 Thread John Dowdell
Jerry DuVal wrote, on Mon 2/25/2008 5:42 AM: > I have a expandable Javascript menu in our html application that needs to be > able to expand over a flash object. I have this working currently in IE and > FF by adding the wmode="opaque" on the embed tag. My only issue is that in > FireFox the flash

[flexcoders] PDF Documents

2008-02-25 Thread John
Hi there Is there an ability to launch PDF Documents whether they are in an Acrobat Reader or in an HTML page or even within the Flex application itself? Is this easier within Flex 3.0? TIA John

[flexcoders] PDF Files

2008-01-20 Thread John
Hi there, I would like to be able to launch a pre-produced PDF document from my Flex app, has anybody done this and if so, can you please advise me?

[flexcoders] Flex and SCORM

2008-01-20 Thread John
Hi there, Has anybody achieved or got any advice on SCORM'ing a Flex package? Thanks in Advance, John

[flexcoders] Re: big problem

2008-01-14 Thread John
I have been having this problem as well. Just get an error saying that I need to install Flash when I run the HTML, or when I try and debug - it states that the version of Flash Player does not have debugging. Thanks In Advance John --- In flexcoders@yahoogroups.com, "adnane_1979&quo

[flexcoders] Re: Simulating a printed page

2008-01-13 Thread John Nagle
;m extremely comfortable with ActionScript 3, slightly less so with Flex. I've written several games and apps in AS3. I would definitely be interested in seeing your source if you're willing to share it. And any other suggestions you might have would be greatly appreciated as well.

[flexcoders] Simulating a printed page

2008-01-13 Thread John Nagle
efully the same source text (originating from a remote resource) can flow into. Any suggestions on the best way to set this up? Thanks for any help, John

[flexcoders] Taking a variable from an Component in my Viewstack

2008-01-11 Thread John
help? TIA John

[flexcoders] Error 1061:

2008-01-10 Thread John
Hi there, Although I have tried everything, I keep getting this error. Can anyone shed any light on the reasons why? 1061: Call to a possibly undefined method selectedChild through a reference with static type Class. TIA John

[flexcoders] Re: Page States

2008-01-09 Thread John
Simon, could you show an example of this, I am unfortunately new to Flex and I am getting used to the nuances of the tool. TIA John --- In flexcoders@yahoogroups.com, "simonjpalmer" <[EMAIL PROTECTED]> wrote: > > there are lots of ways of making sure that the state of

[flexcoders] Exit

2008-01-09 Thread John
Hi there, I am trying to create a close window routine that will be run when a user clicks the exit button using the following: Now I am getting silly errors like Access of unidentified property window. Can someone please shed some light on this

[flexcoders] SCORM and Flex

2008-01-07 Thread John
Hi there, Has anybody achieved or got any advice on SCORM'ing a Flex package? Thanks John

<    1   2   3   4   5   6   7   8   9   >