[flexcoders] Re: FLEX App to AIR App ยป flashvars question

2008-04-15 Thread Abyss Knight
I would imagine the best way to do this would be to convert your flashvar to a simple HTTPService call which fetches the XML via the network. As far as I know, AIR applications do not accept flashvars because they are not embedded in a wrapper. -- William --- In flexcoders@yahoogroups.com,

[flexcoders] Re: Camera / Video feed from iMac's Webcam is mirrored/reversed?

2008-03-27 Thread Abyss Knight
A ton of bitmap manipulation stuff: http://www.insideria.com/2008/03/image-manipulation-in-flex.html Just apply it as an effect to the container, or the video object and it should do the trick. For some demos, I'll plug my own test code:

[flexcoders] Re: Adding Flex Server to existing Project

2008-03-14 Thread Abyss Knight
What do you mean, Flex Server? -- William --- In flexcoders@yahoogroups.com, Anthony Cintron [EMAIL PROTECTED] wrote: Is it possible to add a Flex Server to an existing project. Everywhere I look, demonstrates it by creating a new project. - Never

[flexcoders] Re: GIS and Flex

2008-03-14 Thread Abyss Knight
Check this out: http://www.adobe.com/devnet/flex/articles/dashboard_ilog.html -- William --- In flexcoders@yahoogroups.com, kapil b [EMAIL PROTECTED] wrote: Hi All, Does anybody have idea how to implement gis(geographyical information system) in flex with the gis data in it. What kind of

[flexcoders] Re: Timed Reminder System

2008-03-13 Thread Abyss Knight
I haven't seen anything like that, but there is no reason it couldn't be created. Just set a timer to run each minute, check for reminders, and dispatch the events. One neat thing I just found the other day was the EverythingFlexAIR1.swc which lets you do little popups in the corner of the user's

[flexcoders] Re: Flex Charts with Large Data Set

2008-03-12 Thread Abyss Knight
From my understanding is that AMF, because it is binary encoded, is the fastest mode of transfer available. I've seen a couple links around the web profiling AMF vs. JSON vs. XML and from what I've worked on personally, the JSONDecoder is very slow, XML tends to have a large transfer size, and AMF

[flexcoders] Re: Flex Charts with Large Data Set

2008-03-11 Thread Abyss Knight
I believe you're having the same problem I ran into. Kudos to Brendan for the excellent example code, which it sounds like we've both made use of. ;) How many series are you adding to the chart? One thing I have noticed is that the more series, and more effects, renderers etc. that you add to the

[flexcoders] Re: Capturing and recording video with AIR

2008-03-05 Thread Abyss Knight
You may be able to roll your own solution by manipulating a byte array and writing it to the disk, assuming you know the binary format of an FLV or the video type you wish to write. The other option is to stream it to an FMS/Red5 server as Greg pointed out. To out this in perspective, when I was

[flexcoders] Re: Capturing and recording video with AIR

2008-03-05 Thread Abyss Knight
Ta da: http://www.zeropointnine.com/blog/simpleflvwriteras-as3-class-to-create-flvs If you can dream it, it probably exists. Hope that helps, -- William --- In flexcoders@yahoogroups.com, Abyss Knight [EMAIL PROTECTED] wrote: You may be able to roll your own solution by manipulating a byte

[flexcoders] Re: Capturing and recording video with AIR

2008-03-05 Thread Abyss Knight
? Is there a way to manage the interaction from an AIR app. ? Or can I launch the FME from a Zinc 3 application made with Flex? Thanks, Gilbert --- In flexcoders@yahoogroups.com, Abyss Knight briggins@ wrote: You may be able to roll your own solution by manipulating a byte array and writing

[flexcoders] Re: general flex usage question

2008-03-04 Thread Abyss Knight
Flex really lends itself to application development, rather than entire website development. Widgets, full RIAs, and other projects within the site are more of how I use Flex in the workplace. Of course, with the Apache module which compiles MXML on the fly, there really isn't a reason you could

[flexcoders] Re: Newbie question - Dialog box

2008-03-04 Thread Abyss Knight
I think what you need is a TitleWindow popup. Here's a link to a good reference: http://livedocs.adobe.com/flex/15/flex_docs_en/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Flex_Documentationfile=0376.htm --- In flexcoders@yahoogroups.com, ivovnenko [EMAIL PROTECTED] wrote: Hi! I have

[flexcoders] Re: Flex and PHP Issue. Please help!!!

2008-02-27 Thread Abyss Knight
] wrote: Ok I did it and It worked perfectly... thanks so much... But what about adding security such as DBO or MDB2?? On Tue, Feb 26, 2008 at 8:31 PM, Abyss Knight [EMAIL PROTECTED] wrote: Of course, Ben is right, this would work too. :) Of course, remember to prepare the SQL statement

[flexcoders] Re: Flex and PHP Issue. Please help!!!

2008-02-26 Thread Abyss Knight
If I were you, I would just print_r or vardump the contents of $_GET['DataSent'] or even $_REQUEST (everything on the page) and examine the output of the json_decode. I have a hunch you're not getting an array, but rather an object when you decode. -- William --- In flexcoders@yahoogroups.com,

[flexcoders] Re: Flex and PHP Issue. Please help!!!

2008-02-26 Thread Abyss Knight
Of course, Ben is right, this would work too. :) Of course, remember to prepare the SQL statement using DBO or MDB2 to prevent injection, or use addslashes/mysql_escape_string. -- William --- In flexcoders@yahoogroups.com, Ben Marchbanks [EMAIL PROTECTED] wrote: Why not submit as a regular

[flexcoders] Re: Web conferencing with Flex

2008-02-21 Thread Abyss Knight
It all depends on the scale of the app you want to build: http://sunil-gupta.blogspot.com/2007/04/shared-whiteboard-application-in-red5.html http://renaun.com/blog/2006/10/13/111/ http://www.flexvideochat.com/ Now, all of those presume use of Red5 and Flex. Combine all three of those

[flexcoders] Re: Mac mini for development?

2008-02-14 Thread Abyss Knight
You should be fine, just make sure to get as much RAM as the budget will allow. ;) I have a MBP and the processors are roughly the same in the Minis; the only concession being the video card/GPU and its memory. Just remember that OS X likes RAM, and will make use of every megabyte you can spare.

[flexcoders] Re: Security cam vedio brodcasting

2008-02-13 Thread Abyss Knight
What sort of cameras, systems and budget do you have? I would presume you would have to route the cameras through a computer (i.e. a server) to get the video to Flex either through Flash Media Server or any other means for that matter. This board is really meant for Flex specific questions and

[flexcoders] Re: Flex 2 Login using PHP and PHPMyAdmin

2008-02-05 Thread Abyss Knight
Here's a tutorial: http://www.vipercreations.com/print_tutorial.php?id=28 Though, if this is for a production system, you will want to observe common best practices for the login system, PHP, and SQL development. -- William --- In flexcoders@yahoogroups.com, mswamy_mca [EMAIL PROTECTED] wrote:

[flexcoders] Re: Need IF Logic for Chart Data Provider

2008-02-04 Thread Abyss Knight
-Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Abyss Knight Sent: Friday, February 01, 2008 3:11 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Need IF Logic for Chart Data Provider One option would be to change the chart's

[flexcoders] Re: Need IF Logic for Chart Data Provider

2008-02-04 Thread Abyss Knight
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Abyss Knight Sent: Monday, February 04, 2008 9:06 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Need IF Logic for Chart Data Provider I think you just need to change the to '' like so: dataProvider

[flexcoders] Re: newbie: pushing data changes back to server

2008-02-04 Thread Abyss Knight
Basically, to make any changes to the data in the datagrid you just need to make changes to the dataProvider you specified. Say, if it was an ArrayCollection, then you would just update the array collection. Then you would want to send the changes back to the server using an HTTPService,

[flexcoders] Re: Need IF Logic for Chart Data Provider

2008-02-01 Thread Abyss Knight
One option would be to change the chart's viewable area, as in modify the start of the axes to only show the data you want to show. This would obviously put a strain on the client if there was far too much data loaded into an ArrayCollection though. The other option is to query the XML using e4x

[flexcoders] Re: Working with maps / latitude / longditude data

2008-01-30 Thread Abyss Knight
Where I work we use a number of methods for plotting map data. As for a Flex specific implementation, you might try: http://modestmaps.com/ Yahoo's AS3 connection kit is another option, but the support on that front has been spotty at best. ESRI has a Flex API coming out soon as well:

[flexcoders] Re: Executing local java

2008-01-30 Thread Abyss Knight
http://artemis.effectiveui.com/ --- In flexcoders@yahoogroups.com, Jhonny Everson [EMAIL PROTECTED] wrote: Hi, Can Adobe Air run a local java application? Like System.exec()? We are building a multi-agent system using Jade. I was thinking about doing the front-end using Air. --

[flexcoders] Re: Is this GREAT deal of purchasing Flex any good.

2008-01-28 Thread Abyss Knight
Sounds possible but they want $999 for the bundle from BEA. Link: http://blogs.zdnet.com/Gardner/?p=2539 Product: http://www.bea.com/framework.jsp?CNT=index.htmFP=/content/products/weblogic/workshop/studio/ --- In flexcoders@yahoogroups.com, jb.gardiner [EMAIL PROTECTED] wrote: Recently I

[flexcoders] Re: Stop being Windows-oriented!

2008-01-16 Thread Abyss Knight
Macs are not expensive. Sure, you pay a premium for design if you buy the higher end stuff but a Mac Mini can be had quite inexpensively. Not to mention the countless used and refurbished machines on sale in many outlets. I personally own a Mac, and bought my first Mac (iBook G4) in college with

[flexcoders] Re: Newbie : Flex Hosting Question

2008-01-04 Thread Abyss Knight
I'm not sure about the JSP requirement, but I would presume you would need Tomcat, JBoss or Geronimo to do that. I would recommend taking a look at WebORB and AMFPHP, as those are easier to set up on shared hosting. Are you looking to do real-time messaging using push, or would polling work? --

[flexcoders] Re: displaying the results of a UNION query in Flex DataGrid

2008-01-02 Thread Abyss Knight
Data is data, I would presume it'd just work. It all depends on how you want to display it in the grid and how you set up the AS/MXML. -- William --- In flexcoders@yahoogroups.com, Mr Greg Murnock [EMAIL PROTECTED] wrote: Can this be done in a Flex 2 DataGrid? anything I need to be aware of?

[flexcoders] Re: Alternatives to LCDS

2007-12-27 Thread Abyss Knight
I've taken a look at WebORB, and was quite impressed with the PHP class structure as well as portability. What I can say is that the latter two options will require you to use J2EE (if I'm not mistaken) while WebORB has options for most popular languages such as .NET, Java, and PHP. It all depends

[flexcoders] Re: Looking for component to generate PDF files

2007-12-19 Thread Abyss Knight
Sounds like you need SVG: http://en.wikipedia.org/wiki/Scalable_Vector_Graphics Then you could use an SVG to PDF converter like: http://www.kevlindev.com/utilities/index.htm Or a plugin to allow you to embed SVG in PDFs for the client:

[flexcoders] Re: Dynamically add line to chart

2007-12-17 Thread Abyss Knight
I don't have too much time to post, as I am at work, but here is a snippet of a project I've been working on that might help: //Dump current series to array var allSeries:Array = bigChart.series; //Set chart series to the array

[flexcoders] Re: Creating a game in Flex

2007-12-10 Thread Abyss Knight
You'll probably want to look into the drag drop tutorials at the Flex Dev. Center, as well as the other tutorials there. That should get you started with Flex, and teach you what you need to know to start the game. -- William --- In flexcoders@yahoogroups.com, pirzadaz_ali [EMAIL PROTECTED]

[flexcoders] Re: Scan document using Flex 2 or 3. Help please

2007-12-07 Thread Abyss Knight
I don't believe you can access other applications on the system directly unless they are other AIR/Flex applications that you've written. If you were able to do this, it would be a very large security concern. -- William --- In flexcoders@yahoogroups.com, pirzadaz_ali [EMAIL PROTECTED] wrote:

[flexcoders] Re: new to FLEX

2007-12-07 Thread Abyss Knight
It can be done! http://renaun.com/blog/?p=33 Source code should be available, but the link fails. You can probably email them and get a copy, as it was a Derby entry. -- William --- In flexcoders@yahoogroups.com, dengelwood [EMAIL PROTECTED] wrote: Hi, I am new to FLEX development, but

[flexcoders] Re: Usage tracking in a Flex app with Google Analytics: How to

2007-12-07 Thread Abyss Knight
Excellent hack! Really, this is a big step for feasibility regarding Flex based sites. Advertisers especially are interested in analytics data. What about deep linking, could you run that through GA too? -- William --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: The

[flexcoders] Re: new to FLEX

2007-12-07 Thread Abyss Knight
@yahoogroups.com, dengelwood [EMAIL PROTECTED] wrote: Abyss Knight: It seems that the example is for reading bar codes with a cam corder rather than a hand held bar code scanner. Or is the principle the same? My requirements are quite specific regarding a scanner, any other hand held device falls

[flexcoders] Re: Redirect to new page

2007-12-06 Thread Abyss Knight
This is the JS library I've been using, and it works like a charm: http://blog.deconcept.com/swfobject/ -- William --- In flexcoders@yahoogroups.com, Mark [EMAIL PROTECTED] wrote: How can I redirect the user to a new page if that uses doesn't have the plug-in or an out of date plug-in?

[flexcoders] Re: Local storage of password

2007-12-04 Thread Abyss Knight
I believe this was posted last week, but it is a great library and bears repeating: http://as3crypto.riaforge.org/ -- William --- In flexcoders@yahoogroups.com, rmarples [EMAIL PROTECTED] wrote: I have a requirement to take credentials used for an external web service and cache them locally

[flexcoders] Re: Flex LineChart dynamic data

2007-12-04 Thread Abyss Knight
You can also explicitly define the start and end points of each axis, then when the data comes in check it against your max/mins and fire off events accordingly. If you use binding, you can keep all 4 charts to the same axis using the one filter function, or even just bind one to the others to

[flexcoders] Re: Blurring The Background

2007-12-04 Thread Abyss Knight
This sounds like you need masking, which is in fact available in Flex. I'm not an expert on it, but I have seen it used to make rounded images, etc. Basically, you'd want to blur component (could you use the blur effect in Flex?), then use a mask to simulate the transparent area. Not sure that

[flexcoders] Re: Error 2032 - Stream error

2007-11-30 Thread Abyss Knight
I just had this same error yesterday and had a couple answers posted. You might try a search on this board, but the checklist I was asked for was: 1. Is it using SSL? 2. Are you using Pragma: no-cache or cache control? 3. Is the server using gzip? 4. Did you check the URL of your HTTPService

[flexcoders] Re: Symmetric Key Encryption in Flex Client C# WebServices

2007-11-29 Thread Abyss Knight
Here you go: http://as3crypto.riaforge.org/ Hope that helps, -- William --- In flexcoders@yahoogroups.com, peeyushtuli [EMAIL PROTECTED] wrote: Hi, There is a requirement to implement encryption some data in a Flex based client and decrypt it in a C# based web service, and vice versa.

[flexcoders] 2032 Stream error, only in IE6.

2007-11-29 Thread Abyss Knight
I'm getting a 2032 Stream error in IE6, and only in IE6. It works in IE7, FF2, and even Safari but not in IE6. I have a crossdomain file on the target server, and I have done a Security.allowDomain('*') as well. Anyone have any idea why this would be happening? Somehow this past QA, so I need to

[flexcoders] Re: 2032 Stream error, only in IE6.

2007-11-29 Thread Abyss Knight
it. :) -- William --- In flexcoders@yahoogroups.com, Richard Rodseth [EMAIL PROTECTED] wrote: Could be the cache issue. Try PHP equivalent of: response.setHeader(Cache-Control, max-age=0, must-revalidate); On Nov 29, 2007 7:29 AM, Abyss Knight [EMAIL PROTECTED] wrote: I'm

[flexcoders] Re: 2032 Stream error, only in IE6.

2007-11-29 Thread Abyss Knight
Also, running ServiceCapture, strangely fixes the issue as it is proxying the requests. Very, very weird runtime error. --- In flexcoders@yahoogroups.com, Abyss Knight [EMAIL PROTECTED] wrote: I moved the SWF to the same server as the data source, and it is still erroring. Also, I pass

[flexcoders] Re: 2032 Stream error, only in IE6.

2007-11-29 Thread Abyss Knight
PROTECTED] On Behalf Of Abyss Knight Sent: Thursday, November 29, 2007 10:56 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: 2032 Stream error, only in IE6. Also, running ServiceCapture, strangely fixes the issue as it is proxying the requests. Very, very weird runtime error

[flexcoders] Re: 2032 Stream error, only in IE6.

2007-11-29 Thread Abyss Knight
Found the issue. It was in fact the caching bug in IE6. Both lines had to be removed for the scripts to run. Thanks for the lead, it certainly saved the day! -- William --- In flexcoders@yahoogroups.com, Abyss Knight [EMAIL PROTECTED] wrote: No SSL here, but the data server may be serving

[flexcoders] Re: *****************************************************Group Box in Flex******

2007-11-27 Thread Abyss Knight
Use this library: http://code.google.com/p/jwopitz-lib/ The component is called FieldSet. There's an example link on that page if you just want to check it out first. Hope that helps, -- William --- In flexcoders@yahoogroups.com, yourName [EMAIL PROTECTED] wrote: can any one tell me how to

[flexcoders] Re: Animated PNG

2007-11-20 Thread Abyss Knight
There are components already written to allow the use of animated GIF files in Flex. It isn't Adobe's responsibility to include components for everyone's favorite format, rather ours to create them. That is the real beauty of Flex's licensing and the openness of the SDK. Link:

[flexcoders] Re: flex + dll

2007-11-20 Thread Abyss Knight
What exactly do you want to use the DLL for? That might help us find you a solution that would work with Flex. :) I'm not sure what you are looking to do whether it is to use multi-touch (using your fingers to navigate) with Flex, or to access the UNIX command, finger. This question has come up a

[flexcoders] Re: Flex grid to serve 100K-1mil rows

2007-11-12 Thread Abyss Knight
Have you considered paging the dataset in the ActionScript, but applying the operations to the original ArrayCollection/Dataset? What I mean is, although the grid may only show say 15 records at a time, the dataset is still stored as an AS object and could be adjusted client side, and the current

[flexcoders] Re: How would you make a heat map?

2007-11-09 Thread Abyss Knight
It's been a very long time since I've worked with this sort of thing, but I would imagine you would first generate a histogram of all the possible concentrations and then map that into the color set you want to show (just putting everything into colored buckets). That way with any data set the

[flexcoders] Re: How would you make a heat map?

2007-11-09 Thread Abyss Knight
take their circles and add a lot of glow and blur to them and up the opacity to the outer colors (blue and green)...what do you guys think? --- In flexcoders@yahoogroups.com, Abyss Knight briggins@ wrote: It's been a very long time since I've worked with this sort of thing, but I would

[flexcoders] Re: FLEX / AIR app with touchscreen

2007-11-07 Thread Abyss Knight
development to those better qualified 8^). Abyss Knight wrote: It would have to be a multi-touch screen/surface. Doug McCune would be better suited to answer this question, as I'm pretty sure he's working on this. See the comments section over at: http

[flexcoders] Re: FLEX / AIR app with touchscreen

2007-11-06 Thread Abyss Knight
It would have to be a multi-touch screen/surface. Doug McCune would be better suited to answer this question, as I'm pretty sure he's working on this. See the comments section over at: http://dougmccune.com/blog/2007/09/16/my-new-toy/ -- William --- In flexcoders@yahoogroups.com, Ben Marchbanks

[flexcoders] Re: How to receive data from Comet - Pushlet

2007-11-06 Thread Abyss Knight
You'll likely want to use LCDS (LiveCycle Data Services) from Adobe, and write a J2EE app to serve up the data to Flex. -- William --- In flexcoders@yahoogroups.com, Amit Gupta [EMAIL PROTECTED] wrote: I have a pushlet on the server which keeps sending streaming data. I'm able to receive the

[flexcoders] Re: LDAP Authentication and Login System

2007-10-30 Thread Abyss Knight
Just to follow up on the reply regarding middleware, one cheap solution assuming you do not have any current server architecture or service layers would be: OpenLDAP: http://www.openldap.org/ Apache + PHP with LDAP: http://us2.php.net/ldap Then you can use Apache + PHP to manage the sessions

[flexcoders] Re: zoom - in charts

2007-09-26 Thread Abyss Knight
You can do this quite easily by manipulating the maximum and minimum constraints on your graph. I'm not sure what you are trying to achieve, but it has likely been done. You may wish to take a look at:

[flexcoders] Re: yahoo maps CustomSWFMarker

2007-09-12 Thread Abyss Knight
I actually am having the same documentation issues, but this might help you: latLonController.addMarkerByLatLon('CustomPOIMarker',dp[i].lat, dp[i].lon,{index:index,title:dp[i].shortName, description: description, markerColor: Number('0x3366CC'), strokeColor: Number('0xCEE9FF')});

[flexcoders] Re: Flex eye candy source

2007-09-10 Thread Abyss Knight
Most likely its from here, the cube effect that is: http://weblogs.macromedia.com/auhlmann/archives/2007/03/distortion_effe.cfm --- In flexcoders@yahoogroups.com, garrett.reynolds [EMAIL PROTECTED] wrote: Hi all was wondering if anyone knew where I could find the source code for the

[flexcoders] Re: Getting xml in code only

2007-09-10 Thread Abyss Knight
What you need is to listen for the result and fault events like so: my_service.addEventListener(ResultEvent.RESULT,handleResultOtherModelDataXML); my_service.addEventListener(FaultEvent.FAULT,handleFault); Hope that helps, - William --- In flexcoders@yahoogroups.com, Steve

[flexcoders] Re: Trigger DataTips - Event Injection?

2007-09-06 Thread Abyss Knight
I'm taking a wild guess this is going to require diving into the core files then. I'll see how long my superiors will let me twiddle with it, and post if I get it working. In the meantime, if anyone has a hint just let me know! - William

[flexcoders] Trigger DataTips - Event Injection?

2007-09-05 Thread Abyss Knight
I'm working on a charting project, and we're rendering some extra objects in the chart to represent different data in the actual series using the DataDrawingCanvas. Basically, what I'd like to do is on mouseover of one of those custom components, trigger a specific data point's toolTip. What I've

[flexcoders] Re: Hi GUYS..

2007-08-31 Thread Abyss Knight
Quietly Scheming http://www.quietlyscheming.com/blog/feed/ simple plans for world dominationflexcoders at Yahoo! Groups http://rss.groups.yahoo.com/group/flexcoders/rss Enterprise RIA Development with Macromedia Flexdougmccune.com http://dougmccune.com/blog/feed/ A blog

[flexcoders] Re: some typical questions

2007-08-30 Thread Abyss Knight
I can't say anything regarding FDS, but from my experience with HTTPService, you can pass what you would call hidden variables by simply adding them to the request using Actionscript, just before sending the request to the server. You can modify the request parameters like you would when adding

[flexcoders] Re: Google Finance - Server Side?

2007-08-30 Thread Abyss Knight
Having implemented just such a graph, but without said advanced paging, I have to say there is a wall of performance issues. Rendering the data takes a significant amount of memory, as well as rendering time. If you find a way around it, be sure to let me know! This has been a major issue in

[flexcoders] DateField and DateValidator

2007-08-30 Thread Abyss Knight
For the life of me I can't find an example of using a DateField with a DateValidator, and it's driving me crazy. Does anyone know how to do this? I've got the two bound together, but it doesn't validate selectedDate on the DateField correctly when I trigger the validation. Thanks, - William

[flexcoders] Re: How do u position a label directly underneath a picture you don't know the s

2007-08-29 Thread Abyss Knight
You could always wrap the photo and caption into a VBox and that'd at least get the two paired up vertically. - William --- In flexcoders@yahoogroups.com, steve [EMAIL PROTECTED] wrote: I have a panel and I load an image in at runtime, I would like to position the label directly underneath

[flexcoders] Re: Flex TextMate

2007-08-28 Thread Abyss Knight
I haven't tried it, so I can't speak on the usage but I found this last week: http://blog.danielparnell.com/?p=22 - William --- In flexcoders@yahoogroups.com, Kyle Neath [EMAIL PROTECTED] wrote: So, I'm a pretty hardcore OS X guy and absolutely love Texmate. I also am starting to really get

[flexcoders] Re: file upload max?

2007-08-27 Thread Abyss Knight
What kind of server side technology are you using? I think Apache and PHP default between 8 and 12mb, but you have to also take into account the script timeout of 30 seconds. If you're using IIS, the same kind of limitation applies. Though, I can't speak on LCDS or the like. - William --- In

[flexcoders] Re: How to set Scrollbars THICKNESS ?

2007-08-27 Thread Abyss Knight
Not sure what the inheritance is on VScrollBar but could you extend it and override the constant? - William --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: If you skin with larger buttons, it should get thicker (but not thinner).