Flex 4.10 - Queries

2013-08-15 Thread Flexicious.com
Hi Team - congratulations on releasing 4.10. We are in the process of
testing out our products with the 4.10 release and have a few questions:

1) On importing the SDK into Flash Builder (BTW - excellent work on the
Installer), it says the minimum required version is 11.8. Is this true? I
remember reading somewhere that 4.10 actually offers better backwards
compatibility for older FP versions. Any idea how to configure 4.10 to work
with older FP versions?

2) This is more of a request/question. this probably got changed by Adobe
prior to the Apache transition, but why was GridColumnHeaderGroupLayout
marked as ExcludeClass? This makes it monumentally harder to
extend/override functionality.

Thanks!
Sal

Flexicious - The MUST have Flex DataGrid

Twitter  |
LinkedIn
 | Facebook 
http://www.flexicious.com


Spark DataGrid Multi Column Sort

2013-08-15 Thread Flexicious.com
So we're beginning to play with the Spark DataGrid - nice to see multi
column sort. In the ADG, there used to be a separator in the header, click
on the right of it would cause a multi column sort by that column. Does
anything like that exist for the Spark DataGrid? Right now it looks like
the only way to trigger MSC is control click on the header?


http://blog.flexexamples.com/

2013-08-16 Thread Flexicious.com
Does any one on this list know Peter DeHaan (He used to be Adobe). If so,
is it possible to reach out to him to figure out what happened with this
site (http://blog.flexexamples.com/) ? It was a very useful resource for
flex developers, and a lot of google searches still link to it.


Re: http://blog.flexexamples.com/

2013-08-18 Thread Flexicious.com
We (flexicious) would be glad to host it if needed.


On Sat, Aug 17, 2013 at 1:45 AM, Alex Harui  wrote:

>
>
> On 8/16/13 8:55 PM, "Paul Hastings"  wrote:
>
> >
> >
> >did you ever ask him about donating his content to apache?
>
> I was pondering that.  I'm not sure what how migrate-able the data is.  I
> don't know if Apache hosts blogs that don't use Apache Roller.
>
> Another option is to try to crowd-source the cost of him using a slightly
> more expensive provider that has better up-time.
>
> -Alex
>
>


Re: Installer goes straight to abort installation.

2013-08-21 Thread Flexicious.com
Run the installer as admin to bypass this.
On Aug 21, 2013 11:16 AM, "Jason Moore" 
wrote:

> Hi All,
>
>
>
> Just been using the installer to download 4.10.0 - the first time I have
> done so.  The first thing I tried to do was install the SDK into a
> folder under "sdk" in flash builder. I accept the licences, but as soon
> as you hit next, you get the progress bar with a single red square and
> "aborting installation" as the title... then the installer does nothing.
>
>
>
> I guessed it was a permissions thing and I'm happily downloading to a
> different directory - but just thinking it might be an Idea to catch
> this condition.
>
>
>
> But well done with the 4.10 release !  I  appreciate the huge amount of
> work that's gone into it.
>
>
>
> J :)
>
>
>
>


Re: Export to Excel

2013-08-29 Thread Flexicious.com
We've done a lot of work on this front. For the longest time we generated
just CSV/HTML/XML and Text, but recently added native excel. As3xls has a
number of limitations (no backgrounds, limited formatting, no multiple
sheets) but the biggest advantage is that it generates native excel files.
Another option that has worked out quite well is generating OOXML files.
These are generic XML files, but have OOXML markup. Here is an example of
what this can look like:
http://blog.flexicious.com/post/Flexicious-30-Release-Grid-Edition.aspx -
Item 3 has a screenshot. Granted it is not pretty, but you can pretty much
generate anything you want.



On Thu, Aug 29, 2013 at 1:57 PM, Alexandre Barreiros <
alexandre.barrei...@arealmedia.com> wrote:

> Hi All,
>
> The best solution that i have till now is to export as an CSV file.
>
>
> Alexandre
>
> Em 29-08-2013 18:48, Scott Talsma escreveu:
>
>> 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.
>>
>> Maybe write two tables to a html file and then use native extensions to
>> launch excel and open it?  (This assumes AIR.)
>>
>>
>> On Thu, Aug 29, 2013 at 12:33 PM, Oleg Konovalov 
>> wrote:
>>
>>  Hi,
>>>
>>> I am trying to export data from few DataGrids to Excel, using AS3XLS
>>> library, but it seems it doesn't create a second sheet.
>>> Does anyone knows how to do it? Or is there a better AS library
>>> for that?
>>>
>>> Optionally I might want to skip a few rows and put second DG data there.
>>> But how to add blank rows in AS3XLS?
>>>
>>> I know about POI, but need something quick. And I guess, for Flex Web app
>>> that might be a security violation, correct? I mean, writing to file
>>> system.
>>>
>>> Please advise.
>>>
>>> TIA,
>>> Oleg
>>>
>>>
>


Re: Next release of Apache Flex

2013-09-23 Thread Flexicious.com
You should really create a test case and post on the mailing list. If you
look at our website http://www.flexicious.com/Home/DemoFlex4  we've done a
lot of work on this arena, and almost always have been able to get
acceptable performance out of the mx DataGrid or our Flexicious Ultimate
Datagrid by simply optimizing item renderers and using the flash profiler
to identify performance bottlenecks. There are certain scenarios where the
MX ADG is known to slow down, but you mentioned you are using mx DG, so it
is possible your renderers could use some optimization. The MX DataGrid is
very well designed and we have customers who routinely run tens of
thousands of records with it.


On Mon, Sep 23, 2013 at 10:00 PM, OmPrakash Muppirala
wrote:

> On Sep 23, 2013 6:47 PM, "Jack Yu"  wrote:
> >
> > Hi Justin,
> >
> > we use mx:DG, and have tried on flex 4.10
> >
> > The issue we have is that there are a large amount of cells in datagrid,
> > over 1,000, and there are a lot of metadata associated with each cell,
> like
> > display color, font style, number format, borders, alignments, etc...
> >
> > in a single threaded rendering, it is taking too much time to render cell
> by
> > cell sequentially...
> >
> > We have been trying to optimize the rendering, but has reach the limit,
> > where the viable solution is to have multi-threaded rendering, so that
> all
> > the cells can be split into groups and rendered concurrently via multiple
> > threads.
> >
> > This is a very typical problem for financial application where datagrid
> > needs to handle a massive amount of cell data.
> >
> > I have already filed a feature request to Adobe Flash Player team to
> support
> > multi-threaded datagrid.
> >
> > We also need this multi-threaded component from flex sdk.
> >
> > Thanks
> > Jack
>
> Can you work on a prototype to flesh out this concept a bit further?  Multi
> threaded datagrid sounds a bit too generic.
>
> Also, maybe you could try it out with the spark datagrid to see if the
> performance is acceptable for you?
>
> Thanks,
> Om
>
> >
> > -Original Message-
> > From: Justin Mclean [mailto:jus...@classsoftware.com]
> > Sent: Monday, September 23, 2013 12:22 AM
> > To: dev@flex.apache.org
> > Subject: Re: Next release of Apache Flex
> >
> > Hi,
> >
> > > if the spreadsheet has 4 or 5 years financial data, the rendering of
> > > those large amount of cell data can take time, and make the
> > > spreadsheet not really responsive to cell scrolling...
> >
> > What version of Flex is it compiled with? Apache Flex 4.10? Have the
> tired
> > the latest nightly build to see if there been any speed improvements post
> > Apache Flex 4.10? There have been several speed improvements added to
> > Datagrids in recent history.
> >
> > What version of the DG is it using the mx:ADG, mx:DG or s:DG one?
> >
> > Have you run it though Scout after compiling with the advanced-telemetry
> > flag to see where the bottlenecks are? You may find it's not cell
> rendering.
> >
> > Thanks,
> > Justin
> >
>


Air Stage Text Issue

2013-09-29 Thread Flexicious.com
This may not be a Flex/Apache issue, but just wanted to see if anyone has
been successful with text on Air mobile.

The issue basically revolves around the native text input. It is rendered
on top of the display list, and it does not scroll within its parent
scroller. So dropdowns and such that render on top of it do not hide it,
and if the user scrolls the text stay in place.  There are some more
details here:

http://stackoverflow.com/questions/15840504/what-options-are-available-for-handling-text-input-on-android-using-adobe-air
https://bugbase.adobe.com/index.cfm?event=bug&id=3302441

Some have suggested using the older  spark.mobile.TextInputSkin but with
Air 3.8 and iOS7 on iPad , the workaround suggested is not an option. It
seems to be even more problematic, as you type it selects what you have
typed so you cannot effectively type anything without erasing what was
there.

A comment from an Adobe person here suggests the issue with the older
TextinpustSkin is a Flex SDK issue.
https://bugbase.adobe.com/index.cfm?event=bug&id=3292370

Has anyone run into this, if so, been able to handle it gracefully?


Re: Air Stage Text Issue

2013-09-29 Thread Flexicious.com
Yup saw that - should resolve the issue with the scroller getting out of
whack. Probably will make scrolling expensive, but alteast usable. but
still has the issue of the text showing through stuff (like dropdowns and
popups and such). So basically we need to evaulate objects underneath these
popups and hide them if they are text inputs and show them back when the
popups are closed. Yuck. Any better ideas?


On Sun, Sep 29, 2013 at 11:20 PM, jude  wrote:

> Not so much gracefully but this might help,
>
> http://stackoverflow.com/questions/14412301/flex-textarea-and-textinput-on-mobile-not-positioning-correctly
> .
>
>
>
>
>
> On Sun, Sep 29, 2013 at 9:28 PM, Flexicious.com  >wrote:
>
> > This may not be a Flex/Apache issue, but just wanted to see if anyone has
> > been successful with text on Air mobile.
> >
> > The issue basically revolves around the native text input. It is rendered
> > on top of the display list, and it does not scroll within its parent
> > scroller. So dropdowns and such that render on top of it do not hide it,
> > and if the user scrolls the text stay in place.  There are some more
> > details here:
> >
> >
> >
> http://stackoverflow.com/questions/15840504/what-options-are-available-for-handling-text-input-on-android-using-adobe-air
> > https://bugbase.adobe.com/index.cfm?event=bug&id=3302441
> >
> > Some have suggested using the older  spark.mobile.TextInputSkin but with
> > Air 3.8 and iOS7 on iPad , the workaround suggested is not an option. It
> > seems to be even more problematic, as you type it selects what you have
> > typed so you cannot effectively type anything without erasing what was
> > there.
> >
> > A comment from an Adobe person here suggests the issue with the older
> > TextinpustSkin is a Flex SDK issue.
> > https://bugbase.adobe.com/index.cfm?event=bug&id=3292370
> >
> > Has anyone run into this, if so, been able to handle it gracefully?
> >
>


AIR on Android x86 based devices

2013-10-29 Thread Flexicious.com
We've been doing some work on Mobile AIR, and ran into an intriguing
scenario. The project we are working on is a fairly large Flex app that we
converted to Spark/Mobile. We ran it on iPad, as well as Samsung Tablets
(up until 2). Runs great, almost desktop like performance. Then we ran it
on a Samsung Tab 3  10.1, and performance is almost 5 times slower, pretty
much unusable. Turns out that is because the Tab 3 is based on Intel atom
x86, and Air performs poorly on that platform. A number of folks are
running into this. http://forums.adobe.com/message/5773513

Does anyone on the list have any insight/experience dealing with this?
Given that Intel based x86 tablets are gaining traction, does anyone know
if Adobe is planning anything on this front?

We have customers getting impatient over this, and don't know what to tell
them!


Re: Air Stage Text Issue

2013-11-17 Thread Flexicious.com
For what its worth, we have a skin that solves the issue atleast for our
scenarios.
http://blog.flexicious.com/post/Scrolling-Issues-With-TextInput-for-Flex-Air-Mobile-Native-StageText.aspx
.
It may not be the best workaround, but its better than what we had. For us,
it was not only scrolling, but things like dropdowns and date pickers
(which we also skinned for mobile) appeared underneath the stage text.



On Sun, Nov 17, 2013 at 10:29 AM, Alex Harui  wrote:

>
>
> On 11/17/13 2:59 AM, "Maurice Amsellem" 
> wrote:
>
> >>What I am saying to myself to get some motivation to go ahead, is that
> >>the "partial occluding" issue could be solved by modifying the
> >>application code, so that nothing comes in the way
> >Of the edited text.
> And note that, in most cases, the next best solution is to modify the
> application code so that scrolling is not needed.  Just have more screens
> that you can swipe between.  That kind of modification might be better
> than trying to implement code that makes sure text inputs don't get
> partially clipped.
> >
> >But I know that it won't prevent people from coming to this forum
> >(because the other Flex fora are not active) and calling us names :-(
> Well, they are already complaining, so I doubt things will get worse.
>
> -Alex
>
>


Re: Air Stage Text Issue

2013-11-17 Thread Flexicious.com
Yes, it seems to work on iPad 2/3/4 as well as Samsung Galaxy Tab 2 . Have
not tested on phones, but doubt it should be different. It is not a perfect
solution, but for the subset of scenarios that this current client cared
about, it seems to work.




On Sun, Nov 17, 2013 at 12:08 PM, Maurice Amsellem <
maurice.amsel...@systar.com> wrote:

> Thank you Mr. Flexicious  for the code :-)
>
> I am taking pretty much the same approach, expect that I have encapsulated
> StageText and ImageProxy in its own class, like in StyleableStageText.
> That way, it can be reused in TextAreaStageSkin as well.
>
> There is something I don't understand in your implementation:
> StyleableStageText implementation is very complex, because the StageText
> which is always displayed, does not belong to the DL, while the proxyImage
> is displayed only in some situations (throw effect after scroll and nested
> popups).
>
> I tried to tweak it like you did, and abandoned, because the approach we
> are taking ( proxyimage displayed by default, and stage text when editing)
> is antagonist to the one implemented in SST, and the tweaking code was
> actually more complex that rewriting everything from scratch.
>
> So I am rather surprized that you managed to conciliate both and that the
> resulting code is so simple.
> Don't you have some side effects ?  does it work on Android as well?
>
> Maurice
>
> -Message d'origine-
> De : Flexicious.com [mailto:flexici...@gmail.com]
> Envoyé : dimanche 17 novembre 2013 17:31
> À : dev@flex.apache.org
> Objet : Re: Air Stage Text Issue
>
> For what its worth, we have a skin that solves the issue atleast for our
> scenarios.
>
> http://blog.flexicious.com/post/Scrolling-Issues-With-TextInput-for-Flex-Air-Mobile-Native-StageText.aspx
> .
> It may not be the best workaround, but its better than what we had. For
> us, it was not only scrolling, but things like dropdowns and date pickers
> (which we also skinned for mobile) appeared underneath the stage text.
>
>
>
> On Sun, Nov 17, 2013 at 10:29 AM, Alex Harui  wrote:
>
> >
> >
> > On 11/17/13 2:59 AM, "Maurice Amsellem" 
> > wrote:
> >
> > >>What I am saying to myself to get some motivation to go ahead, is
> > >>that the "partial occluding" issue could be solved by modifying the
> > >>application code, so that nothing comes in the way
> > >Of the edited text.
> > And note that, in most cases, the next best solution is to modify the
> > application code so that scrolling is not needed.  Just have more
> > screens that you can swipe between.  That kind of modification might
> > be better than trying to implement code that makes sure text inputs
> > don't get partially clipped.
> > >
> > >But I know that it won't prevent people from coming to this forum
> > >(because the other Flex fora are not active) and calling us names :-(
> > Well, they are already complaining, so I doubt things will get worse.
> >
> > -Alex
> >
> >
>


Re: Air Stage Text Issue

2013-11-17 Thread Flexicious.com
Couple of things - it appears that in your test case, the textDisplay is of
0 width and height. If you debug through, you will notice that it does not
actually capture the screen shot. Second, this wont work on the emulator,
since it depends on SoftKeyboardEvent.SOFT_KEYBOARD_ACTIVATE and
SoftKeyboardEvent.SOFT_KEYBOARD_DEACTIVATE events.

but try the below. it should atleast capture the screenshot.
override protected function createChildren():void
{
super.createChildren();
this.textDisplay.addEventListener(ResizeEvent.RESIZE, invalidateScreenshot);
this.textDisplay.addEventListener(TextOperationEvent.CHANGE,
invalidateScreenshot);
}

The one thing is that the screenshot is not capturing the text in your test
case. Not sure why. Maybe the experts on here could help shed some light.
It might be that we simply need to wait a little more before capturing the
screenshot. It is odd that this works perfectly on our client application
but not in a simple test case like this. For our scenario, we have a fairly
large Flex 3 based application with tons of forms that we converted to Flex
4.10/11. It is working for us.




On Sun, Nov 17, 2013 at 1:31 PM, Maurice Amsellem <
maurice.amsel...@systar.com> wrote:

> @Flexicious,
>
> FYI,  I have tried the ExtendedStageTextInputSkin and it does not solve at
> all the scrolling problem:
>
> - Simple code to show the issue below:
> - Run the app even in the ADL, and scroll the Form:  the TextInput stays
> in place.
>
> Can you confirm the behavior on your side ?
>
>
> 
> 
> 
> 
> 
> 
> skinClass="skins.ExtendedStageTextInputSkin"/>
> 
> 
> 
> 
> 
> 
> 
>
> -Message d'origine-
> De : Maurice Amsellem [mailto:maurice.amsel...@systar.com]
> Envoyé : dimanche 17 novembre 2013 18:34
> À : dev@flex.apache.org
> Objet : RE: Air Stage Text Issue
>
> Ok, thanks.
> I am too advanced now in my implementation to drop everything and use your
> code instead, but I will keep it in case  I get into a deadlock.
> And of course, I will use it as a reference implementation.
>
> >It is not a perfect solution, but for the subset of scenarios that this
> current client cared about, it seems to work.
> Can you please detail some use cases where it does not work (apart from
> the occluding stuff). That could also help me since I am taking almost the
> same approach.
>
> Maurice
>
> -Message d'origine-
> De : Flexicious.com [mailto:flexici...@gmail.com] Envoyé : dimanche 17
> novembre 2013 18:28 À : dev@flex.apache.org Objet : Re: Air Stage Text
> Issue
>
> Yes, it seems to work on iPad 2/3/4 as well as Samsung Galaxy Tab 2 . Have
> not tested on phones, but doubt it should be different. It is not a perfect
> solution, but for the subset of scenarios that this current client cared
> about, it seems to work.
>
>
>
>
> On Sun, Nov 17, 2013 at 12:08 PM, Maurice Amsellem <
> maurice.amsel...@systar.com> wrote:
>
> > Thank you Mr. Flexicious  for the code :-)
> >
> > I am taking pretty much the same approach, expect that I have
> > encapsulated StageText and ImageProxy in its own class, like in
> StyleableStageText.
> > That way, it can be reused in TextAreaStageSkin as well.
> >
> > There is something I don't understand in your implementation:
> > StyleableStageText implementation is very complex, because the
> > StageText which is always displayed, does not belong to the DL, while
> > the proxyImage is displayed only in some situations (throw effect
> > after scroll and nested popups).
> >
> > I tried to tweak it like you did, and abandoned, because the approach
> > we are taking ( proxyimage displayed by default, and stage text when
> > editing) is antagonist to the one implemented in SST, and the tweaking
> > code was actually more complex that rewriting everything from scratch.
> >
> > So I am rather surprized that you managed to conciliate both and that
> > the resulting code is so simple.
> > Don't you have some side effects ?  does it work on Android as well?
> >
> > Maurice
> >
> > -Message d'origine-
> > De : Flexicious.com [mailto:flexici...@gmail.com] Envoyé : dimanche 17
> > novembre 2013 17:31 À : dev@flex.apache.org Objet : Re: Air Stage Text
> > Issue
> >
> > For what its worth, we have a skin that solves the issue atleast for
> > our scenarios.
> >
> > http://blog.flexicious.com/post/Scrolling-Issues-With-TextInput-for-Fl
> > ex-A

SkinnableComponent question

2014-01-04 Thread Flexicious.com
In SkinnableComponent, there is this:

protected function findSkinParts():void
{
if (skinParts)


and then there is this:

  protected function get skinParts():Object
{
return null;
}


Anyone have a clue where skinParts is getting populated from? Its not
overridden in a derived class, so really not sure how/whats populating it?


Re: SkinnableComponent question

2014-01-04 Thread Flexicious.com

aha! thanks a lot!


On Sat, Jan 4, 2014 at 7:18 PM, Michael A. Labriola <
labri...@digitalprimates.net> wrote:

> >Anyone have a clue where skinParts is getting populated from? Its not
> overridden in a derived class, so really not sure how/whats populating it?
>
> It's compiler magic. The compiler creates a static variable called
> _skinParts on each class with the skin parts for the class in it. It then
> overrides the getter to return the static var, so:
>
> So, if I added this to my application:
>
> [SkinPart(required="false")]
> public var thingies:BitmapImage;
>
> The compiler would generate this:
>
> private static var _skinParts:Object = {contentGroup:false,
> thingies:false, controlBarGroup:false};
>
> override protected function get skinParts() : Object
> {
> return _skinParts;
> }// end function
>
> Mike
>
>


Jira Bug

2014-02-27 Thread Flexicious.com
We had submitted a flash player bug that some how got imported into the
apache flex jira: https://issues.apache.org/jira/browse/FLEX-28162. The
original page is no longer there http://bugs.adobe.com/jira/browse/SDK-31155,
and there was a test case associated with this bug, that seemed to have
been lost in the move. Any idea how to get that test case back?


Re: Jira Bug

2014-02-28 Thread Flexicious.com
Thanks Alex!


On Thu, Feb 27, 2014 at 11:17 PM, Alex Harui  wrote:

> The attachments failed to import during the move.  I have most of them and
> can usually find and restore them as needed.  One of these days I'll find
> the time to write a script to rename them properly and then we'll post
> them on-line.
>
> I think I found the right test case and re-attached it.
>
> -Alex
>
> On 2/27/14 6:17 PM, "Flexicious.com"  wrote:
>
> >We had submitted a flash player bug that some how got imported into the
> >apache flex jira: https://issues.apache.org/jira/browse/FLEX-28162. The
> >original page is no longer there
> >http://bugs.adobe.com/jira/browse/SDK-31155,
> >and there was a test case associated with this bug, that seemed to have
> >been lost in the move. Any idea how to get that test case back?
>
>


Re: Filtering Hierarchical data in ADG

2014-03-09 Thread Flexicious.com
Take a look at our product - http://www.flexicious.com/Home/DemoFlex4
We have a fairly robust filtering mechanism :
http://blog.flexicious.com/post/The-Anatomy-of-a-Filter-Control.aspx. The
product has dozens of other features, filtering being one of them.


On Sun, Mar 9, 2014 at 7:00 PM, Oleg Konovalov  wrote:

> "Filter columns" means show only rows which have some term like anything
> containing "term1" (in the column which you filter or optionally all
> columns) or maybe starting from it.
> Ideally that list should be updated as user types
>
>
> On Tue, Mar 4, 2014 at 8:37 AM, Alex Harui  wrote:
>
> > Filter columns as in not show some columns?
> >
> > On 3/4/14 4:30 AM, "Oleg Konovalov"  wrote:
> >
> > > Hi,
> > >
> > >
> > >I have a true hierarchical data presented via HierarchicalData with
> input
> > >in XML in MX AdvancedDataGrid.
> > >
> > >Need to filter columns in ADG.
> > >
> > >None of existing filters (standard or some proprietary filters in my
> > >company) work.
> > >
> > >
> > >
> > >Any suggestions how to make it work?
> > >
> > >(haven't touched filters yet).
> > >
> > >
> > >Any help is very appreciated.
> > >
> > >
> > >
> > >
> > >TIA,
> > >
> > >Oleg.
> > >
> > >P.S. using Flex 4.5.1
> >
> >
>
>
> --
> Thank you,
> Oleg.
>


Air iOS app - Blank white screen

2014-03-25 Thread Flexicious.com
We have a fairly large air app, and for some reason, when we package it for
iOS, it does not launch correctly. Just a plain white screen. When we
launch it in debug mode (or even using Fast packaging), it works fine. Only
with the export release build it simply launches a plain white screen and
does nothing.

Anybody seen anything similar? Any idea if there is an error of some sort,
any way to find out what the error is?


Re: Air iOS app - Blank white screen

2014-03-26 Thread Flexicious.com
tried with 3.9, 4.0 as well as air 13.



On Wed, Mar 26, 2014 at 1:47 AM, Raj Raju  wrote:

> Can you try to make the build with latest air sdk 4.0 ( 4.0.0.1619 ). I
> guess the problem will be resolved with this new sdk .
> You can find the link below
> http://labsdownload.adobe.com/pub/labs/flashruntimes/air/air4-0_sdk_wi
> n.zip<
> http://labsdownload.adobe.com/pub/labs/flashruntimes/air/air4-0_sdk_win.zip
> >
>
> Cheers,
> Raju.M.
>
>
>
> On Wed, Mar 26, 2014 at 9:38 AM, Flexicious.com  >wrote:
>
> > We have a fairly large air app, and for some reason, when we package it
> for
> > iOS, it does not launch correctly. Just a plain white screen. When we
> > launch it in debug mode (or even using Fast packaging), it works fine.
> Only
> > with the export release build it simply launches a plain white screen and
> > does nothing.
> >
> > Anybody seen anything similar? Any idea if there is an error of some
> sort,
> > any way to find out what the error is?
> >
>


Re: Air iOS app - Blank white screen

2014-03-27 Thread Flexicious.com
Thanks Alex - we did try that - for some reason it choked right before it
could alert the message. We seem to have narrowed down the problem to
images that use swf files as source. Once we remove these images, the app
loads. So that begs the question, how do you get the Image component to
load swf graphics? Or is that just not possible with Air on iOS

[Embed(source = '/assets/images/someIcon.swf')]
public static var someIcon:Class;

And then  wrote:

> Try putting in an uncaughtException handler and see if it catches anything.
>
> On 3/26/14 5:26 AM, "Flexicious.com"  wrote:
>
> >tried with 3.9, 4.0 as well as air 13.
> >
> >
> >
> >On Wed, Mar 26, 2014 at 1:47 AM, Raj Raju  wrote:
> >
> >> Can you try to make the build with latest air sdk 4.0 ( 4.0.0.1619 ). I
> >> guess the problem will be resolved with this new sdk .
> >> You can find the link below
> >> http://labsdownload.adobe.com/pub/labs/flashruntimes/air/air4-0_sdk_wi
> >> n.zip<
> >>
> >>
> http://labsdownload.adobe.com/pub/labs/flashruntimes/air/air4-0_sdk_win.z
> >>ip
> >> >
> >>
> >> Cheers,
> >> Raju.M.
> >>
> >>
> >>
> >> On Wed, Mar 26, 2014 at 9:38 AM, Flexicious.com  >> >wrote:
> >>
> >> > We have a fairly large air app, and for some reason, when we package
> >>it
> >> for
> >> > iOS, it does not launch correctly. Just a plain white screen. When we
> >> > launch it in debug mode (or even using Fast packaging), it works fine.
> >> Only
> >> > with the export release build it simply launches a plain white screen
> >>and
> >> > does nothing.
> >> >
> >> > Anybody seen anything similar? Any idea if there is an error of some
> >> sort,
> >> > any way to find out what the error is?
> >> >
> >>
>
>


RE: Air iOS app - Blank white screen

2014-03-27 Thread Flexicious.com
Yup. Saw that. That's what I thought. You could load local embedded swf.
But it needs to be asset only swf. No as code. Need to talk to the graphics
designer how he generated the swf. May be some as code snuck in.
On Mar 27, 2014 10:53 AM, "Jason Moore" 
wrote:

> My understanding is that you can load SWFs that are included in the
> application ( not loaded from remote ). I happened to be looking at this
> recently..
>
> See old Adobe blog post:
> http://blogs.adobe.com/airodynamics/2012/11/09/packaging-and-loading-mul
> tiple-swfs-in-air-apps-on-ios/
>
> Which is quite useful.
>
> J :)
>
>
> -Original Message-
> From: Alex Harui [mailto:aha...@adobe.com]
> Sent: 27 March 2014 13:34
> To: dev@flex.apache.org
> Subject: Re: Air iOS app - Blank white screen
>
> Pretty sure loading SWFs, even embedded SWFs at runtime is not allowed
> on IOS because of the restriction on interpreted code.
>
> -Alex
>
> On 3/27/14 6:08 AM, "Flexicious.com"  wrote:
>
> >Thanks Alex - we did try that - for some reason it choked right before
> >it could alert the message. We seem to have narrowed down the problem
> >to images that use swf files as source. Once we remove these images,
> >the app loads. So that begs the question, how do you get the Image
> >component to load swf graphics? Or is that just not possible with Air
> >on iOS
> >
> >[Embed(source = '/assets/images/someIcon.swf')] public static var
> >someIcon:Class;
> >
> >And then  >
> >
> >
> >On Wed, Mar 26, 2014 at 9:32 AM, Alex Harui  wrote:
> >
> >> Try putting in an uncaughtException handler and see if it catches
> >>anything.
> >>
> >> On 3/26/14 5:26 AM, "Flexicious.com"  wrote:
> >>
> >> >tried with 3.9, 4.0 as well as air 13.
> >> >
> >> >
> >> >
> >> >On Wed, Mar 26, 2014 at 1:47 AM, Raj Raju 
> >>wrote:
> >> >
> >> >> Can you try to make the build with latest air sdk 4.0 ( 4.0.0.1619
> >>). I
> >> >> guess the problem will be resolved with this new sdk .
> >> >> You can find the link below
> >> >>
> >>http://labsdownload.adobe.com/pub/labs/flashruntimes/air/air4-0_sdk_wi
> >> >> n.zip<
> >> >>
> >> >>
> >>
> >>http://labsdownload.adobe.com/pub/labs/flashruntimes/air/air4-0_sdk_wi
> >>n.z
> >> >>ip
> >> >> >
> >> >>
> >> >> Cheers,
> >> >> Raju.M.
> >> >>
> >> >>
> >> >>
> >> >> On Wed, Mar 26, 2014 at 9:38 AM, Flexicious.com
> >> >>  >> >> >wrote:
> >> >>
> >> >> > We have a fairly large air app, and for some reason, when we
> >>package
> >> >>it
> >> >> for
> >> >> > iOS, it does not launch correctly. Just a plain white screen.
> >> >> > When
> >>we
> >> >> > launch it in debug mode (or even using Fast packaging), it works
> >>fine.
> >> >> Only
> >> >> > with the export release build it simply launches a plain white
> >>screen
> >> >>and
> >> >> > does nothing.
> >> >> >
> >> >> > Anybody seen anything similar? Any idea if there is an error of
> >>some
> >> >> sort,
> >> >> > any way to find out what the error is?
> >> >> >
> >> >>
> >>
> >>
>
>


Re: Air iOS app - Blank white screen

2014-03-27 Thread Flexicious.com
Spark image same story. We have the mx lib in the build path. We are using
mx and spark components across the app. Everything works fine, until you
introduce swfs as the source for an image control .


On Thu, Mar 27, 2014 at 11:57 AM, OmPrakash Muppirala
wrote:

> On Mar 27, 2014 6:34 AM, "Alex Harui"  wrote:
> >
> > Pretty sure loading SWFs, even embedded SWFs at runtime is not allowed on
> > IOS because of the restriction on interpreted code.
>
> There is no technical limitation for this.  Swfs should load fine.  It may
> not pass through the App store approval process, though.
>
> Flexicious, try using a spark Image instead of the mx one.  The mx swcs are
> excluded from the app during the mobile compilation process.  No compile
> errors, but it will end up failing in runtime.
>
> You need to either remove all references to mx components or add the mx.swc
> manually in to your build path.
>
> Thanks,
> Om
>
> >
> > -Alex
> >
> > On 3/27/14 6:08 AM, "Flexicious.com"  wrote:
> >
> > >Thanks Alex - we did try that - for some reason it choked right before
> it
> > >could alert the message. We seem to have narrowed down the problem to
> > >images that use swf files as source. Once we remove these images, the
> app
> > >loads. So that begs the question, how do you get the Image component to
> > >load swf graphics? Or is that just not possible with Air on iOS
> > >
> > >[Embed(source = '/assets/images/someIcon.swf')]
> > >public static var someIcon:Class;
> > >
> > >And then  > >
> > >
> > >
> > >On Wed, Mar 26, 2014 at 9:32 AM, Alex Harui  wrote:
> > >
> > >> Try putting in an uncaughtException handler and see if it catches
> > >>anything.
> > >>
> > >> On 3/26/14 5:26 AM, "Flexicious.com"  wrote:
> > >>
> > >> >tried with 3.9, 4.0 as well as air 13.
> > >> >
> > >> >
> > >> >
> > >> >On Wed, Mar 26, 2014 at 1:47 AM, Raj Raju 
> > >>wrote:
> > >> >
> > >> >> Can you try to make the build with latest air sdk 4.0 ( 4.0.0.1619
> > >>). I
> > >> >> guess the problem will be resolved with this new sdk .
> > >> >> You can find the link below
> > >> >>
> > >>http://labsdownload.adobe.com/pub/labs/flashruntimes/air/air4-0_sdk_wi
> > >> >> n.zip<
> > >> >>
> > >> >>
> > >>
> > >>
> http://labsdownload.adobe.com/pub/labs/flashruntimes/air/air4-0_sdk_win.z
> > >> >>ip
> > >> >> >
> > >> >>
> > >> >> Cheers,
> > >> >> Raju.M.
> > >> >>
> > >> >>
> > >> >>
> > >> >> On Wed, Mar 26, 2014 at 9:38 AM, Flexicious.com <
> flexici...@gmail.com
> > >> >> >wrote:
> > >> >>
> > >> >> > We have a fairly large air app, and for some reason, when we
> > >>package
> > >> >>it
> > >> >> for
> > >> >> > iOS, it does not launch correctly. Just a plain white screen.
> When
> > >>we
> > >> >> > launch it in debug mode (or even using Fast packaging), it works
> > >>fine.
> > >> >> Only
> > >> >> > with the export release build it simply launches a plain white
> > >>screen
> > >> >>and
> > >> >> > does nothing.
> > >> >> >
> > >> >> > Anybody seen anything similar? Any idea if there is an error of
> > >>some
> > >> >> sort,
> > >> >> > any way to find out what the error is?
> > >> >> >
> > >> >>
> > >>
> > >>
> >
>


SVG Embed - works with 4.6, does not work with Apache Flex

2014-03-31 Thread Flexicious.com
Any reason why this would work with 4.6 but cause an error with Apache flex
(4.11, 4.12)

Description Resource Path Location Type
exception during transcoding: svgtest.mxml /svgtest/src line 16 Flex Problem
Unable to transcode sample.svg. svgtest.mxml /svgtest/src line 16 Flex
Problem


http://ns.adobe.com/mxml/2009";
xmlns:mx="library://ns.adobe.com/flex/mx"
xmlns:s="library://ns.adobe.com/flex/spark"
>
 





Re: Third-party tools / solutions on Apache Flex website

2014-04-01 Thread Flexicious.com
Hope its not too tacky for us to request to be listed on this page?

About us : http://flexicious.com/Home/AboutUs
Our products:  http://flexicious.com/Home/Products
http://flexicious.com/Home/Dashboard
http://flexicious.com/Home/Ultimate





On Tue, Apr 1, 2014 at 5:07 PM, piotrz  wrote:

> Thanks Maurice I will do this soon. :)
>
> Piotr
>
>
>
> -
> Apache Flex Committer
> piotrzarzyck...@gmail.com
> --
> View this message in context:
> http://apache-flex-development.247.n4.nabble.com/Third-party-tools-solutions-on-Apache-Flex-website-tp36116p36578.html
> Sent from the Apache Flex Development mailing list archive at Nabble.com.
>


Re: Third-party tools / solutions on Apache Flex website

2014-04-01 Thread Flexicious.com
Sure:
Flexicious provides custom components for Flex and Air developers. Our
products include Flexicious Classic, Advanced and Spark, which are
extensions to the Flex SDK DataGrid, AdvancedDataGrid and Spark DataGrid
components, as well as Flexicious Ultimate DataGrid and Flexicious Data
Visualization & Dashboard Framework which includes Portal, Charts, Gauges,
TreeMaps, Calendar/Scheduler and more. More details here :
http://www.flexicious.com/Home/Products




On Tue, Apr 1, 2014 at 5:40 PM, Maurice Amsellem <
maurice.amsel...@systar.com> wrote:

> Sorry, rather 2~3 lines of text (to be fair with others).
>
> Maurice
>
> -Message d'origine-
> De : Maurice Amsellem [mailto:maurice.amsel...@systar.com]
> Envoyé : mardi 1 avril 2014 23:40
> À : dev@flex.apache.org
> Objet : RE: Third-party tools / solutions on Apache Flex website
>
> IMO, Flexicious does not fit in any of the existing sections.
>
> It probably falls in a new section "Components Library" .
>
> But then, there are a few other component libs that would deserve to be
> included as well (eg. Elixir, etc...).
>
> I would say, first in, first served.
>
> Can you please provide the content you would want to be included (3 ~ 5
> lines paragraph) .
>
> Maurice
>
> -Message d'origine-
> De : Flexicious.com [mailto:flexici...@gmail.com] Envoyé : mardi 1 avril
> 2014 23:20 À : dev@flex.apache.org Objet : Re: Third-party tools /
> solutions on Apache Flex website
>
> Hope its not too tacky for us to request to be listed on this page?
>
> About us : http://flexicious.com/Home/AboutUs
> Our products:  http://flexicious.com/Home/Products
> http://flexicious.com/Home/Dashboard
> http://flexicious.com/Home/Ultimate
>
>
>
>
>
> On Tue, Apr 1, 2014 at 5:07 PM, piotrz  wrote:
>
> > Thanks Maurice I will do this soon. :)
> >
> > Piotr
> >
> >
> >
> > -
> > Apache Flex Committer
> > piotrzarzyck...@gmail.com
> > --
> > View this message in context:
> > http://apache-flex-development.247.n4.nabble.com/Third-party-tools
> > -solutions-on-Apache-Flex-website-tp36116p36578.html
> > Sent from the Apache Flex Development mailing list archive at Nabble.com.
> >
>


RE: Third-party tools / solutions on Apache Flex website

2014-04-02 Thread Flexicious.com
Thanks !!!
On Apr 2, 2014 4:47 AM, "Maurice Amsellem" 
wrote:

> done
>
> -Message d'origine-----
> De : Flexicious.com [mailto:flexici...@gmail.com]
> Envoyé : mercredi 2 avril 2014 04:49
> À : dev@flex.apache.org
> Objet : Re: Third-party tools / solutions on Apache Flex website
>
> Sure:
> Flexicious provides custom components for Flex and Air developers. Our
> products include Flexicious Classic, Advanced and Spark, which are
> extensions to the Flex SDK DataGrid, AdvancedDataGrid and Spark DataGrid
> components, as well as Flexicious Ultimate DataGrid and Flexicious Data
> Visualization & Dashboard Framework which includes Portal, Charts, Gauges,
> TreeMaps, Calendar/Scheduler and more. More details here :
> http://www.flexicious.com/Home/Products
>
>
>
>
> On Tue, Apr 1, 2014 at 5:40 PM, Maurice Amsellem <
> maurice.amsel...@systar.com> wrote:
>
> > Sorry, rather 2~3 lines of text (to be fair with others).
> >
> > Maurice
> >
> > -Message d'origine-
> > De : Maurice Amsellem [mailto:maurice.amsel...@systar.com]
> > Envoyé : mardi 1 avril 2014 23:40
> > À : dev@flex.apache.org
> > Objet : RE: Third-party tools / solutions on Apache Flex website
> >
> > IMO, Flexicious does not fit in any of the existing sections.
> >
> > It probably falls in a new section "Components Library" .
> >
> > But then, there are a few other component libs that would deserve to
> > be included as well (eg. Elixir, etc...).
> >
> > I would say, first in, first served.
> >
> > Can you please provide the content you would want to be included (3 ~
> > 5 lines paragraph) .
> >
> > Maurice
> >
> > -Message d'origine-
> > De : Flexicious.com [mailto:flexici...@gmail.com] Envoyé : mardi 1
> > avril
> > 2014 23:20 À : dev@flex.apache.org Objet : Re: Third-party tools /
> > solutions on Apache Flex website
> >
> > Hope its not too tacky for us to request to be listed on this page?
> >
> > About us : http://flexicious.com/Home/AboutUs
> > Our products:  http://flexicious.com/Home/Products
> > http://flexicious.com/Home/Dashboard
> > http://flexicious.com/Home/Ultimate
> >
> >
> >
> >
> >
> > On Tue, Apr 1, 2014 at 5:07 PM, piotrz 
> wrote:
> >
> > > Thanks Maurice I will do this soon. :)
> > >
> > > Piotr
> > >
> > >
> > >
> > > -
> > > Apache Flex Committer
> > > piotrzarzyck...@gmail.com
> > > --
> > > View this message in context:
> > > http://apache-flex-development.247.n4.nabble.com/Third-party-too
> > > ls -solutions-on-Apache-Flex-website-tp36116p36578.html
> > > Sent from the Apache Flex Development mailing list archive at
> Nabble.com.
> > >
> >
>


Re: [ANNOUNCEMENT] Apache Flex TourDeFlex 1.0

2014-08-25 Thread Flexicious.com
In the original tour-de-flex, there was a section with third party tools -
 there were a number of third party tools (including ours - flexicious.com)
is there something we can do to resurrect this?


On Mon, Aug 25, 2014 at 5:10 PM, OmPrakash Muppirala 
wrote:

> Okay, tracking for http://flex.apache.org/tourdeflex/index.html is on.
> I also made http://flex.apache.org/tourdeflex/explorer.html redirect to
> http://flex.apache.org/tourdeflex/index.html
>
> Thanks,
> Om
>
>
> On Mon, Aug 25, 2014 at 1:45 PM, OmPrakash Muppirala  >
> wrote:
>
> > On Mon, Aug 25, 2014 at 1:43 PM, Alex Harui  wrote:
> >
> >> Adobe has updated its website so that the link to the web version of TDF
> >> points to ours.  Do we have analytics on our TDF landing page?
> >>
> >>
> > Oops, we don't.  Let me quickly add that.
> >
> > Thanks,
> > Om
> >
> >
> >>  -Alex
> >>
> >> On 8/25/14 12:14 PM, "piotrz"  wrote:
> >>
> >> >Posted on some polish forums.
> >> >
> >> >Piotr
> >> >
> >> >
> >> >
> >> >-
> >> >Apache Flex Committer
> >> >piotrzarzyck...@gmail.com
> >> >--
> >> >View this message in context:
> >> >
> >>
> http://apache-flex-development.247.n4.nabble.com/ANNOUNCEMENT-Apache-F
> >> >lex-TourDeFlex-1-0-tp40018p40037.html
> >> >Sent from the Apache Flex Development mailing list archive at
> Nabble.com.
> >>
> >>
> >
>


Re: [ANNOUNCEMENT] Apache Flex TourDeFlex 1.0

2014-08-25 Thread Flexicious.com
Just wanted to chime in since we went through this with folks at Adobe to
get our stuff listed anyway. What we gave them was a link to the component
hosted off our site, and I believe they had flex-iframe or something
similar load up the content. They had asked for a link to the actual
component demo, and one link for the source tab, so for example, under
third party we had a few of our products listed:

Flexicious Dashboard Framework:
​​

Example link:
http://www.flexicious.com/resources/dashboard30/componentsample.html

Source Link:
http://www.flexicious.com/resources/dashboard30/srcview/index.html


Flexicious Ultimate DataGrid:

Example Link : http://www.flexicious.com/resources/Ultimate/TreeGrid.html

Source Link :
http://www.flexicious.com/resources/Ultimate/srcview/index.html


Flexicious Classic DataGrid(s):

Example Link: http://www.flexicious.com/resources/Flex4/Main.html

Source Link: http://www.flexicious.com/resources/Flex4/srcview/index.html

​



On Mon, Aug 25, 2014 at 7:19 PM, OmPrakash Muppirala 
wrote:

> On Mon, Aug 25, 2014 at 4:13 PM, Alex Harui  wrote:
>
> >
> >
> > On 8/25/14 3:57 PM, "OmPrakash Muppirala"  wrote:
> >
> > >On Mon, Aug 25, 2014 at 3:51 PM, Alex Harui  wrote:
> > >
> > >> AIUI, as long as we can build TDF by downloading third-party SWCs as
> > >>part
> > >> of the build process it doesn't even have to be compatibly-licensed.
> > >
> > >
> > >That is, assuming that a 3rd party component developer has a freely
> > >available download that we could use.  It is not a very likely scenario.
> > Maybe we need concrete examples.  If your component isn't freely
> > available, maybe the app that exhibits it should be in the showcase?
> >
> >
> Do you mean 'should not'?
>
>
> > Or are you talking about components that aren't free?  Good question if
> > for-pay components are a good fit for Apache TDF.
> >
>
> We need to support free and non-free component developers.  Otherwise we
> will never see enterprise components in the wild.  That is one of the
> reasons we don't have a good public showcase in spite of great apps being
> built on top of Apache Flex.
>
>
> >
> > And, if we get clearance from the Incubator to make changes to our
> version
> > of TDF on our site, then we could add them to the site version but not
> the
> > Apache version.
> >
> >
> Please elaborate.  I am not sure what the difference is.
>
> Finally, why can't we just hotlink if the 3rd party folks are okay with it?
>
> Thanks,
> Om
>
>
> > -Alex
> >
> >
>


Re: Wanted 3rd party examples for Tour De Flex

2014-10-12 Thread Flexicious.com
Hi Justin, Thanks a lot for doing this:

Do these work?
​​
Example name : Flexicious Dashboard Framework

Example link:
http://www.flexicious.com/resources/dashboard30/componentsample.s
wf

Source Link:
http://www.flexicious.com/resources/dashboard30/srcview/index.html


Example name : Flexicious Ultimate DataGrid:

Example Link : http://www.flexicious.com/resources/Ultimate/TreeGrid.
s
wf

Source Link : http://www.flexicious.com/resources/Ultimate
/srcview/index.html


Example name : Flexicious Classic DataGrid(s):

Example Link: http://www.flexicious.com/resources/Flex4/Main.s
wf

Source Link: http://www.flexicious.com/resources/Flex4/srcview/index.html



On Sun, Oct 12, 2014 at 6:07 PM, Justin Mclean  wrote:

> Hi,
>
> I've just implemented 3rd party component support in Tour De Flex. Is
> there anyone who wants their components in the Tour De Flex application?
>
> Given we had 10,000+ views since it launch it's probably a good way to get
> exposure :-)
>
> I just need:
> - Component name
> - Optional URL to swf showing information about the component
>
> The optional swf should fix the the top right content area and be
> something along the lines of the Apache Flex pages. eg
> http://flex.apache.org/tourdeflex/?app=apache/ApacheFlex4_10_0
>
> And for each example
> - Example name
> - Example URL to swf
> - One or more source URLs
>
> The swf should fit in the top right content area.
>
> Thanks,
> Justin
>
> 1. https://issues.apache.org/jira/browse/FLEX-34501
>
>


Re: Wanted 3rd party examples for Tour De Flex

2014-10-12 Thread Flexicious.com
Hi Justin, If we break it down, it would end up with hundreds of examples.
And some of our examples are components that do take up a lot of screen
real estate (for example, we have a portal/dashboard component that is
quite big). Maybe having a scrollbar on the demo would help?
We had the same link provided to Adobe when they hosted TDF.

If that does not do it, we can put up a swf with a brief description of the
component and have a "Launch Demo" button that launches the actual demo.
Let us know what you want us to do.



On Sun, Oct 12, 2014 at 7:01 PM, Justin Mclean 
wrote:

> Hi,
>
> Thanks for the links.
>
> > Example link:
> > http://www.flexicious.com/resources/dashboard30/componentsample.swf
>
> This example is really too big to fit into the content area. Could they be
> broken up into individual examples?
>
> > Source Link:
> > http://www.flexicious.com/resources/dashboard30/srcview/index.html
>
> Currently we not supporting src view style / HTML formatted code, any
> chance of a plain text file?
>
> > Example Link : http://www.flexicious.com/resources/Ultimate/TreeGrid.swf
>
> Likewise this example is really an explorer of it's own ie a collection of
> examples rather than a list of individual examples.
>
> > Example Link: http://www.flexicious.com/resources/Flex4/Main.swf
>
> Again any chance this could be broken up into individual examples?
>
> I guess an alternative to breaking it up, would be to make 3 place holder
> swf pages with some information in them that include external links to
> those collections of examples. Again it would be best if the place holder
> pages fitted into the content area along the lines of
> http://flex.apache.org/tourdeflex/?app=apache/ApacheFlex4_10_0
>
> Also what license is the example code licensed under?
>
> Thanks,
> Justin


Re: Wanted 3rd party examples for Tour De Flex

2014-10-15 Thread Flexicious.com
Hi Justin, we have the three swfs that I think should fit in the area.

http://www.flexicious.com/resources/demo/FlexiciousClassic.swf
http://www.flexicious.com/resources/demo/FlexiciousUltimate.swf
http://www.flexicious.com/resources/demo/FlexiciousDashboard.swf

Please let me know if that does not do it.


On Sun, Oct 12, 2014 at 8:06 PM, Justin Mclean 
wrote:

> Hi,
>
> > If we break it down, it would end up with hundreds of examples.
>
> I have no issue with that, it all goes into a tree control so you wouldn't
> swamp the current examples.
>
> > And some of our examples are components that do take up a lot of screen
> > real estate (for example, we have a portal/dashboard component that is
> > quite big). Maybe having a scrollbar on the demo would help?
>
> We have scrollbars it doesn't help and in fact looks really ugly.
>
> > We had the same link provided to Adobe when they hosted TDF.
>
> Sadly Adobe didn't give us the latest version and it currently broken
> (error "Internet connection required") so I can't see how they handled your
> examples previously.
>
> > If that does not do it, we can put up a swf with a brief description of
> the
> > component and have a "Launch Demo" button that launches the actual demo.
>
> That also works well - and probably the least amount of work for you.
>
> Thanks,
> Justin


Re: Wanted 3rd party examples for Tour De Flex

2014-10-18 Thread Flexicious.com
Updated, can you please check now?

On Fri, Oct 17, 2014 at 8:37 PM, Justin Mclean 
wrote:

> Hi,
>
> To make it consistant with the other examples would you mind adding a
> panel around the content?
>
>  height="100%">
>
> 
>  paddingRight="10" paddingTop="10" paddingBottom="10" />
> 
>
> ...
> 
>
> I'm also getting double progress bars, one when load your swf and then
> again in your swf, is there a reason your example need a progress bar?
>
> Thanks,
> Justin


Re: [DISCUSSION] TourDeFlex 1.2 RC 0

2014-11-17 Thread Flexicious.com
​​
Sorry team for being late to the topic, but having read through the thread,
am I correct in assuming that we need to provide a 600X400 image for our
products?

On Tue, Nov 11, 2014 at 2:27 PM, OmPrakash Muppirala 
wrote:

> >
> > 1) get your thoughts on taking Flexicious out of 3rdparty.xml so that
> > their app doesn’t show up scaled?  When they reply with a bitmap to use
> > like Ardisia did, then we’ll add it to the flex.a.o version which is what
> > most folks use anyway.
> >
>
> +1 for removing Flexicious out of 3rdparty.xml.  We can always add it later
> when they provide us with the images instead of swfs.
>
>
> > 2) get at least one of you to check out the source package on the CI
> > server?  If you want you can use the approval script by getting the
> > ApproveTDF.xml in the develop branch, copying it to an empty folder and
> > then running:
> > ant -e -f ApproveTDF.xml -Drelease.version=1.2 -Dno.asc
> > Please make sure to review the README/RELEASE_NOTES/LICENSE/NOTICE files.
> > For me the build takes 30 to 40 minutes so plan accordingly.
> >
>
> Used source package (zip) from [1]
>  - Compiles fine
>  - MD5 checksum looks good
>  - CONTRIBUTING, LICENSE, NOTICE, README AND RELEASE_NOTES look good
>  - We may want to add Gowtham S to the CONTRIBUTORS file (He tested and
> reported the Squiggly issue upthread)
>
> Thanks,
> Om
>
>
> [1]
>
> http://apacheflexbuild.cloudapp.net:8080/job/flex-utilities_tour-de-flex-release/lastSuccessfulBuild/artifact/TourDeFlex/TourDeFlex3/out/
>


Re: [DISCUSSION] TourDeFlex 1.2 RC 0

2014-11-21 Thread Flexicious.com
Thanks All, we have the images. I asked my graphics guy to make it look
like ardisia so it looks consistent. I hope thats ok, Let me know if it
looks too similar and I will have him get more creative with it :-)

[image: Inline image 1]

[image: Inline image 2]

[image: Inline image 3]

On Mon, Nov 17, 2014 at 6:16 PM, OmPrakash Muppirala 
wrote:

> On Mon, Nov 17, 2014 at 3:05 PM, Alex Harui  wrote:
>
> > On 11/17/14, 3:02 AM, "Flexicious.com"  wrote:
> >
> > >​​
> > >Sorry team for being late to the topic, but having read through the
> > >thread,
> > >am I correct in assuming that we need to provide a 600X400 image for our
> > >products?
> >
> > Hi,
> >
> > Om wrote the code so he’d know for sure, but I think it just has to be
> > “high-res”.  I think the window it is displayed in is resizable.  The one
> > for Ardisia doesn’t appear to be perfectly 600x400 but that would be a
> > good size.  If you supply a link to an image, we can update the xml file
> > and you can try it in a nightly build in a few hours after we check it
> in.
> >
> > -Alex
> >
> >
> Yes, a 600x400 image like this one [1] would work.  A label 'Click to Open'
> shown prominently in the image would be nice as well.
>
> Thanks,
> Om
>
> [1] http://www.ardisialabs.com/tourDeFlex/tour-de-flex.jpg
>


Re: [DISCUSSION] TourDeFlex 1.2 RC 0

2014-11-21 Thread Flexicious.com
Sorry about that - images attached.

On Fri, Nov 21, 2014 at 8:35 AM, Erik de Bruin  wrote:

> This list doesn't take inline or attached binaries, I'm afraid.
>
> EdB
>
>
>
> On Fri, Nov 21, 2014 at 2:29 PM, Flexicious.com 
> wrote:
>
> > Thanks All, we have the images. I asked my graphics guy to make it look
> > like ardisia so it looks consistent. I hope thats ok, Let me know if it
> > looks too similar and I will have him get more creative with it :-)
> >
> > [image: Inline image 1]
> >
> > [image: Inline image 2]
> >
> > [image: Inline image 3]
> >
> > On Mon, Nov 17, 2014 at 6:16 PM, OmPrakash Muppirala <
> bigosma...@gmail.com
> > > wrote:
> >
> >> On Mon, Nov 17, 2014 at 3:05 PM, Alex Harui  wrote:
> >>
> >> > On 11/17/14, 3:02 AM, "Flexicious.com"  wrote:
> >> >
> >> > >​​
> >> > >Sorry team for being late to the topic, but having read through the
> >> > >thread,
> >> > >am I correct in assuming that we need to provide a 600X400 image for
> >> our
> >> > >products?
> >> >
> >> > Hi,
> >> >
> >> > Om wrote the code so he’d know for sure, but I think it just has to be
> >> > “high-res”.  I think the window it is displayed in is resizable.  The
> >> one
> >> > for Ardisia doesn’t appear to be perfectly 600x400 but that would be a
> >> > good size.  If you supply a link to an image, we can update the xml
> file
> >> > and you can try it in a nightly build in a few hours after we check it
> >> in.
> >> >
> >> > -Alex
> >> >
> >> >
> >> Yes, a 600x400 image like this one [1] would work.  A label 'Click to
> >> Open'
> >> shown prominently in the image would be nice as well.
> >>
> >> Thanks,
> >> Om
> >>
> >> [1] http://www.ardisialabs.com/tourDeFlex/tour-de-flex.jpg
> >>
> >
> >
>
>
> --
> Ix Multimedia Software
>
> Jan Luykenstraat 27
> 3521 VB Utrecht
>
> T. 06-51952295
> I. www.ixsoftware.nl
>


Re: [DISCUSSION] TourDeFlex 1.2 RC 0

2014-11-21 Thread Flexicious.com
Allrighty then,

flexicious.com/classic.jpg
flexicious.com/ultimate.jpg
flexicious.com/dashboard.jpg


On Fri, Nov 21, 2014 at 4:59 PM, OmPrakash Muppirala 
wrote:

> Did not show up this time as well.  Best would be to upload the images to
> your server and give us the urls.  We will link to those image urls
> directly from the TDF app.
>
> Thanks,
> Om
>
> On Fri, Nov 21, 2014 at 1:52 PM, Flexicious.com 
> wrote:
>
> > Sorry about that - images attached.
> >
> > On Fri, Nov 21, 2014 at 8:35 AM, Erik de Bruin 
> wrote:
> >
> >> This list doesn't take inline or attached binaries, I'm afraid.
> >>
> >> EdB
> >>
> >>
> >>
> >> On Fri, Nov 21, 2014 at 2:29 PM, Flexicious.com 
> >> wrote:
> >>
> >> > Thanks All, we have the images. I asked my graphics guy to make it
> look
> >> > like ardisia so it looks consistent. I hope thats ok, Let me know if
> it
> >> > looks too similar and I will have him get more creative with it :-)
> >> >
> >> > [image: Inline image 1]
> >> >
> >> > [image: Inline image 2]
> >> >
> >> > [image: Inline image 3]
> >> >
> >> > On Mon, Nov 17, 2014 at 6:16 PM, OmPrakash Muppirala <
> >> bigosma...@gmail.com
> >> > > wrote:
> >> >
> >> >> On Mon, Nov 17, 2014 at 3:05 PM, Alex Harui 
> wrote:
> >> >>
> >> >> > On 11/17/14, 3:02 AM, "Flexicious.com" 
> wrote:
> >> >> >
> >> >> > >​​
> >> >> > >Sorry team for being late to the topic, but having read through
> the
> >> >> > >thread,
> >> >> > >am I correct in assuming that we need to provide a 600X400 image
> for
> >> >> our
> >> >> > >products?
> >> >> >
> >> >> > Hi,
> >> >> >
> >> >> > Om wrote the code so he’d know for sure, but I think it just has to
> >> be
> >> >> > “high-res”.  I think the window it is displayed in is resizable.
> The
> >> >> one
> >> >> > for Ardisia doesn’t appear to be perfectly 600x400 but that would
> be
> >> a
> >> >> > good size.  If you supply a link to an image, we can update the xml
> >> file
> >> >> > and you can try it in a nightly build in a few hours after we check
> >> it
> >> >> in.
> >> >> >
> >> >> > -Alex
> >> >> >
> >> >> >
> >> >> Yes, a 600x400 image like this one [1] would work.  A label 'Click to
> >> >> Open'
> >> >> shown prominently in the image would be nice as well.
> >> >>
> >> >> Thanks,
> >> >> Om
> >> >>
> >> >> [1] http://www.ardisialabs.com/tourDeFlex/tour-de-flex.jpg
> >> >>
> >> >
> >> >
> >>
> >>
> >> --
> >> Ix Multimedia Software
> >>
> >> Jan Luykenstraat 27
> >> 3521 VB Utrecht
> >>
> >> T. 06-51952295
> >> I. www.ixsoftware.nl
> >>
> >
> >
>