Re: HTTPService breakage in Flex SDK 4.15?

2016-02-18 Thread Scott Talsma
I ran into a similar issue w/an older app that I maintain. But I was making SOAP calls to .NET. Does it work fine initially, and after about a minute of inactivity, you start getting stream errors? Scott On Thu, Feb 18, 2016 at 11:11 AM, erikjthomas3 wrote: > I and a colleague each upgraded f

flex js installer failure

2015-07-07 Thread Scott Talsma
I just errored out twice trying to download and install Flex JS 0.0.2 using the installer. Interesting enough, when I looked at the install log, it aborted when trying to download JBurg, which was not the install option I selected. Upon re-attempting, this time w/the JBurg install option, it comp

Re: TLF Editor / Docx compatible / PDF Export

2015-02-16 Thread Scott Talsma
I assume that PurePDF is on your radar? I recently had to generated PDFs in Arabic, and this worked really well. The only thing that was a bit tricky was automatic pagination. If I recall correctly, it also did references w/o issue. It was pretty low-level; you could not give it HTML, and have

Re: Flex 4.6 Spark Skin question

2015-02-08 Thread Scott Talsma
David, Is there a particular reason you are maintaining two separate projects? Is it your intention to share the skins across projects? One thing you can try to it add your skins directory as a secondary source root. I'm not sure how to do it in FlashBuilder, but I recall it being pretty simple

centerPopup not working in RTL layouts

2014-11-04 Thread Scott Talsma
I just noticed when I was testing my Arabic builds that all my centered popup windows were appearing offscreen. Prior to SDK 4.9, I was compensating for this in a wrapper call to centerPopup, but after 4.9 was released, I was able to take that code out. Basically, it was this: var isLTR:Boolean

Re: Flex audio recording platform

2014-10-08 Thread Scott Talsma
Hi Bruce, I'm not familiar w/any specific Flex recording tool, unless you are referring to the native microphone API that Flash Player provides. Have you looked into the overview in the docs? http://help.adobe.com/en_US/as3/dev/WS5b3ccc516d4fbf351e63e3d118a9b90204-7d1d.html Assuming you are not

Re: Desktop AIR app issue

2014-10-03 Thread Scott Talsma
show download > progress > appUpdater.isInstallUpdateVisible = false; // don't ask to launch the > updator and install the app. > appUpdater.initialize(); > } > > protected function onUpdate(event:UpdateEvent):void { > appUpdater.checkNow(); > } > > protected function

Re: Desktop AIR app issue

2014-09-24 Thread Scott Talsma
Jack, I am doing something similar, using the built-in .air installers and a badge page. My build script increments the version number in the -app.xml config file. (I'm using the built-in update ui classes from AIR.) When I run a .air file to update a previous installation, I see it delete the

issue w/embedded text asset and incremental compiles

2014-08-01 Thread Scott Talsma
Hello all, I just spent too much time tracking down a RTE to having incremental compiles turned on. Basically, it was very hit and miss; it always would compile fine; run when running the installed product is would sometimes sometimes simply fail, throwing a Error #1065, before it even ran the cla

Re: Arabic Content Problem

2014-05-16 Thread Scott Talsma
What are you using for fonts? Most likely, the square symbols are stand-ins for missing glyphs in the font set. Does the font on the S3 & S2 (I assume they are system fonts instead of embedded) contain the unicode range for Arabic? On Fri, May 16, 2014 at 8:21 AM, Rami Tarabay wrote: > Dear ,

Re: app name issue for ukrainian langague

2014-03-27 Thread Scott Talsma
Sounds like you are supporting a lot of languages. That means you probably have a build process in place. My app is similar (but I don't support Ukrainian). Here are things I would investigate: 1. Drop your text into a CDATA. My build scripts has lots of issues across their various langu

Re: FDB has old code ?

2014-01-24 Thread Scott Talsma
I think SWD is only relevant for ActionScript 1.0 and 2.0. Flash files with debugging turned on would produce a swd file. When debugging was toggled on in the Flash Player (and a debugging swf was loaded), a call for the swf's swd would be made. I just did a small test, creating a debuggable Fl

Re: Specifying multiple RSL URL

2013-08-29 Thread Scott Talsma
Can you simply reference a class from rsl1 in application? That should cause the rsl to be loaded correctly by the main app? Or is that not an acceptable behavior (longer startup time). On Thu, Aug 29, 2013 at 10:31 AM, Jagan Langa Sami Durai < jaga...@sybrant.com> wrote: > Hi All, > > This is

Re: Export to Excel

2013-08-29 Thread Scott Talsma
Oleg, I have had great luck simply scraping the entire grid into an HTML table, and placing it into the clipboard. Then popup an an alert instructing the user to paste into Excel. Obviously, if you are exporting 2 grids, then you rely on the user to move the cursor correctly to the new position.

Re: fdb

2013-04-18 Thread Scott Talsma
I've been using IntelliJ IDEA for a few years now, and have not experienced any major issues with debugging, breakpoints, etc., assuming that you have the debug player installed, and are your project settings are create a debug build. I have had issues w/Safari and Firefox sometimes dropping the c

Re: TileList

2013-04-02 Thread Scott Talsma
You would essentially have to iterate over the TileList's dataprovider, making the data that your button has to the data in the dataprovider item. When you get a match, set the TileList's selectedItem to the pointer into the dataprovider. Keep in mind that the item you find may not be onscreen (o

Re: autosuggest component for lengthy xmls

2013-04-01 Thread Scott Talsma
I'll worked w/similar components. One thing that helps is to have each keypress schedule an autocomplete to take place in the future (e.g. in 100ms), and each keypress resets/restarts the timer. That way, if the user knows where they are going, you are not unnecessarily doing processing. Also, d

Re: embedding fonts in external css (swf) broken for s:Label?

2013-03-11 Thread Scott Talsma
l > > It didn't for me without RSLs in 4.6 which is how Apache Flex works. > > > On 3/8/13 12:15 PM, "Scott Talsma" wrote: > > > It works perfectly if I do not use external stylesheets. > > > > (Although I did notice that the Panel label [title

Re: embedding fonts in external css (swf) broken for s:Label?

2013-03-08 Thread Scott Talsma
t; > The default for spark is embedAsCFF=true and all components, even Label > should be able to use it. > > > On 3/8/13 10:58 AM, "Scott Talsma" wrote: > > > I misspoke earlier. I suspect that my alias collided w/a locally > installed > > system font, and that wa

Re: embedding fonts in external css (swf) broken for s:Label?

2013-03-08 Thread Scott Talsma
styleManager.loadStyleDeclarations("styles.swf"); } On Fri, Mar 8, 2013 at 1:13 PM, Scott Talsma wrote: > Nope--this was a generic desktop AIR app. > > > On Fri, Mar 8, 2013 at 11:39

Re: embedding fonts in external css (swf) broken for s:Label?

2013-03-08 Thread Scott Talsma
Nope--this was a generic desktop AIR app. On Fri, Mar 8, 2013 at 11:39 AM, Alex Harui wrote: > Are you using the mobile theme? You shouldn't need to do that for a > non-mobile app. > > > On 3/8/13 7:41 AM, "Scott Talsma" wrote: > > > Sure enough--t

Re: embedding fonts in external css (swf) broken for s:Label?

2013-03-08 Thread Scott Talsma
Sure enough--that was the issue. Thanks for the help. On Fri, Mar 8, 2013 at 10:12 AM, Jagan Langa Sami Durai wrote: > * embedAsCFF: true; - *this is the problem. set it to false. > > > On Fri, Mar 8, 2013 at 8:34 PM, Scott Talsma wrote: > > > I just updated a 4.6 t

embedding fonts in external css (swf) broken for s:Label?

2013-03-08 Thread Scott Talsma
I just updated a 4.6 to 4.9, and discovered some my text fields were displaying in Times New Roman instead of Verdana. Verdana is being specified in an runtime stylesheet, compiled into an external swf. When I dug further, I confirmed that only the spark Label () is affected (broken); and work f