Re: [flexcoders] scale9grid question

2011-08-12 Thread kris range
scale9grid only works in clips that only contain vector shapes...so
you can't have sub-movieclips or sprites. i don't really know your
requirements but one solution would be to create a container clip,
insert both clips as children of that one and manage both that way.

On Fri, Aug 12, 2011 at 12:57 AM, technusiast technusi...@yahoo.com wrote:
 I am working with Flex 3, and import a movieclip symbol from a SWF.  The 
 symbol is rectangular and has scale9 grid enabled because it has rounded 
 corners.  Inside the area of the grid where objects resize both horizontally 
 and vertically, I placed another symbol.  But I do not want this 2nd symbol 
 to resize.  I tried enabling scale9 on the 2nd symbol, and just reduce its 
 grid to a zero area (in the center) with the hope that the 2nd symbol does 
 not resize.  But the 2nd symbol still resizes when inside the first one.

 Any ideas how this can be done?



 

 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Alternative FAQ location: 
 https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
 Search Archives: 
 http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links






Re: [flexcoders] Re: Flash Debugger crashing in Firefox?

2010-07-13 Thread kris range
Something like this happens to me on Safari OS X. If an flash
application is loading or doing something and I go to another page,
I'll usually get an IOErrorEvent error with the error dialog popping
up, then it disappears and I can't click on anything in the browser
(Flash or not). Very annoying. I hope they fix this soon as this
didn't happen for me before 10.1


On Tue, Jul 13, 2010 at 7:12 PM, valdhor valdhorli...@embarqmail.com wrote:
 Yes. I am getting this a lot and not just my own code. The crash report 
 happens on pretty much any site that has flash content. I don't know if this 
 is a problem with the Flash debugger or Firefox but it did not happen before 
 the latest update to Firefox.

 --- In flexcoders@yahoogroups.com, Rick Schmitty flexc...@... wrote:

 Is anybody having an issue with Flash 10 debugger and Firefox's new
 anti crash feature?  Whenever I get a debug popup from flash Firefox
 thinks Flash crashed and locks up completely until the lil frowny lego
 with text that says The Adobe Flash plugin has crashed.  Send crash
 report

 The debugger works fine in IE or if no debug popups in FF it works fine

 Anyone else run into this?





 

 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Alternative FAQ location: 
 https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
 Search Archives: 
 http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links






Re: [flexcoders] Flex Builder won't use my changes

2010-03-21 Thread kris range
Check the date of the debug swf flex builder is building to make sure
they are the latest ones...if not that, I'm sure you've already tried
this but a browser cache clear is also something to try. I tend to
always use Firefox with web developer no-cache settings but whenever I
test in Safari or Chrome that stuff always happens to me.


On Sun, Mar 21, 2010 at 4:32 PM, Lee Jenkins l...@datatrakpos.com wrote:
 Rick Genter wrote:


 I've been building an app with Flex Builder 3. All of a sudden when I
 run my app using the debugger I no longer see my changes reflected. For
 example, I have a class where I deleted several trace() calls and added
 another trace() call, yet when I run the app I'm seeing the old trace()
 messages and not the new trace() message. Furthermore, when I put a
 breakpoint on the new trace() call, the debugger claims that there is no
 code at that breakpoint, indicating that the code has not been recompiled.

 I've tried cleaning the project, restarting Flex Builder and even
 deleting the project and re-importing it from CVS, but to no avail. Any
 suggestions?

 Are they any linked projects?  If so, try cleaning them as well or clean all
 when asked.  I had the same problem with a main project which referenced 
 custom
 library folders.  Seems FB has a problem keeping everything in sync.

 Not sure if that is your problem.

 --
 Warm Regards,

 Lee



 

 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Alternative FAQ location: 
 https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
 Search Archives: 
 http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links






Re: [flexcoders] Module's setup / ready event is not dispatched

2010-03-10 Thread kris range
You might want to look at this:

http://bugs.adobe.com/jira/browse/SDK-14021

Make sure your module variable isn't local and instead saved somewhere so it
isn't garbage collected!


On Wed, Mar 10, 2010 at 4:11 PM, Peeyush Tuli peeyus...@gmail.com wrote:



 have you added an error event listener to the IModuleInfo reference from
 getModule to see if there is an error in loading the complete module?


 On Wed, Mar 10, 2010 at 6:45 PM, Mayur ondemand_ma...@yahoo.com wrote:



 I am having a problem with Module - SETUP event is not dispatched.

 Though I am getting the mdoule's PROGRESS event fully - continuous until
 all the bytes of the specified module are loaded.

 That means, the required module has fully reached at client side but I
 still I am not getting module's READY event.

 I am using ModuleManager to load modules dynamically with RSLs.

 Thanking in Advance,

 Mayur




 


[flexcoders] Flash Builder 4 HTML wrapper issue

2010-01-08 Thread kris range
I just started to try out FB4 the other day. When I uncheck the
settings to Generate HTML Wrapper and place my own custom HTML in
there and publish, it deletes my HTML file. This wasn't the
functionality in FB3.

Has anyone experienced this issue? Any clue how I can create custom
HTML without it being deleted during project build?

Thanks
Kris


Re: [flexcoders] reading Xml excel files

2009-09-11 Thread kris range
It looks like it has to do with the fact that excel creates namespaces
for all your XML. If you don't need them, see if you can remove them
as it will save you time. If you can't, check out the Namespace class.
There is an XML example at the bottom of the link below that might
help you out.

http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/Namespace.html



On Thu, Sep 10, 2009 at 2:24 PM, charleswcng charlesw...@yahoo.com wrote:
 I'm writing a small app that can upload excel xml files and convert
 them into graphs. When I was using e4x to see how the data is shown,
 it didn't return anything.  It works fine if I simplified all the data
 with only
 Workbook,Row,Cell and Data.  Anyone have any idea why I
 couldn't use Worksheet.Row.Cell.Data in the complex example below?
 Also, when it is imported in flex, some of the tags are inserted with
 o:  in front like o:DocumentProperties.

 How can I read this file using e4x expression?  Please go easy on me,
 I'm pretty new to flex.

 Here is the sample data.xml:
 ?xml version=1.0?
 Workbook xmlns=urn:schemas-microsoft-com:office:spreadsheet
  xmlns:o=urn:schemas-microsoft-com:office:office
  xmlns:x=urn:schemas-microsoft-com:office:excel
  xmlns:ss=urn:schemas-microsoft-com:office:spreadsheet
  xmlns:html=http://www.w3.org/TR/REC-html40;
  DocumentProperties xmlns=urn:schemas-microsoft-com:office:office
  AuthorAuthor/Author
  LastAuthorAuthor/LastAuthor
  Created2009-09-08T11:52:44Z/Created
  LastSaved2009-09-10T19:52:04Z/LastSaved
  Version12.0/Version
  /DocumentProperties
  OfficeDocumentSettings xmlns=urn:schemas-microsoft-
 com:office:office
  AllowPNG/
  /OfficeDocumentSettings
  ExcelWorkbook xmlns=urn:schemas-microsoft-com:office:excel
  WindowHeight16280/WindowHeight
  WindowWidth24320/WindowWidth
  WindowTopX860/WindowTopX
  WindowTopY420/WindowTopY
  Date1904/
  ProtectStructureFalse/ProtectStructure
  ProtectWindowsFalse/ProtectWindows
  /ExcelWorkbook
  Styles
  Style ss:ID=Default ss:Name=Normal
  Alignment ss:Vertical=Bottom/
  Borders/
  Font ss:FontName=Verdana/
  Interior/
  NumberFormat/
  Protection/
  /Style
  Style ss:ID=s21
  NumberFormat ss:Format=Short Date/
  /Style
  /Styles
  Worksheet ss:Name=AllTransactions.csv
  Table ss:ExpandedColumnCount=13 ss:ExpandedRowCount=6
 x:FullColumns=1
  x:FullRows=1
  Column ss:Index=4 ss:Width=98.0/
  Column ss:Index=11 ss:Width=498.0/
  Row
   CellData ss:Type=StringSymbol/Data/Cell
   CellData ss:Type=StringQuantity/Data/Cell
   CellData ss:Type=StringPrice/Data/Cell
   CellData ss:Type=StringActionNameUS/Data/Cell
   CellData ss:Type=StringTradeDate/Data/Cell
   CellData ss:Type=StringSettledDate/Data/Cell
   CellData ss:Type=StringInterest/Data/Cell
   CellData ss:Type=StringAmount/Data/Cell
   CellData ss:Type=StringCommission/Data/Cell
   CellData ss:Type=StringFees/Data/Cell
   CellData ss:Type=StringDescription/Data/Cell
   CellData ss:Type=StringActionId/Data/Cell
   CellData ss:Type=StringRecordType/Data/Cell
  /Row
  Row
   CellData ss:Type=StringCash/Data/Cell
   CellData ss:Type=Number0.0/Data/Cell
   CellData ss:Type=Number0.0/Data/Cell
   CellData ss:Type=StringCredit Interest/Data/Cell
   Cell ss:StyleID=s21Data
 ss:Type=DateTime2009-08-31T00:00:00.000/Data/Cell
   Cell ss:Index=8Data ss:Type=Number0.11/Data/Cell
   CellData ss:Type=Number0.0/Data/Cell
   CellData ss:Type=Number0.0/Data/Cell
   CellData ss:Type=StringCREDIT  INTEREST 31 DAYS @ .05%
 AVERAGE CREDIT BALANCE  2537.05 APY EARNED .05%/Data/Cell
   CellData ss:Type=Number4.0/Data/Cell
   CellData ss:Type=StringFinancial/Data/Cell
  /Row
  Row
   CellData ss:Type=StringCash/Data/Cell
   CellData ss:Type=Number0.0/Data/Cell
   CellData ss:Type=Number0.0/Data/Cell
   CellData ss:Type=StringMargin Interest/Data/Cell
   Cell ss:StyleID=s21Data
 ss:Type=DateTime2009-08-31T00:00:00.000/Data/Cell
   Cell ss:Index=8Data ss:Type=Number-10.62/Data/Cell
   CellData ss:Type=Number0.0/Data/Cell
   CellData ss:Type=Number0.0/Data/Cell
   CellData ss:Type=StringMARGIN INTEREST 4 DAYS @ 7 1/2%
 AVERAGE DEBIT BALANCE  12739.40/Data/Cell
   CellData ss:Type=Number7.0/Data/Cell
   CellData ss:Type=StringFinancial/Data/Cell
  /Row
  Row
   CellData ss:Type=StringBAC/Data/Cell
   CellData ss:Type=Number150.0/Data/Cell
   CellData ss:Type=Number17.7/Data/Cell
   CellData ss:Type=StringBuy/Data/Cell
   Cell ss:StyleID=s21Data
 ss:Type=DateTime2009-08-25T00:00:00.000/Data/Cell
   Cell ss:StyleID=s21Data
 ss:Type=DateTime2009-08-28T00:00:00.000/Data/Cell
   Cell ss:Index=8Data ss:Type=Number-20355.0/Data/Cell
   CellData ss:Type=Number0.0/Data/Cell
   CellData ss:Type=Number0.0/Data/Cell
   CellData ss:Type=StringBOUGHT 150 SHARES OF BAC AT $17.70/
 Data/Cell
   CellData ss:Type=Number1.0/Data/Cell
   CellData ss:Type=StringTrade/Data/Cell
  /Row
  Row
   CellData ss:Type=StringBAC/Data/Cell
   CellData ss:Type=Number100.0/Data/Cell
   CellData ss:Type=Number17.7/Data/Cell
   CellData ss:Type=StringBuy/Data/Cell
   Cell ss:StyleID=s21Data
 

Re: [flexcoders] Re: Full flex site or not

2009-08-23 Thread kris range
Google doesn't index anything af the hash value (#) so this doesn't
work in a larger more dynamic websites since it looks like all content
is provided in the single HTML source. I'm also dubious of Google
indexing content inside of a SWF since I haven't seen any sites that
are full-flash enabled with this...though I would love to see some! :)

IMO for SEO, HTML is the easiest way to achieve it. Flash/Flex makes
things difficult but achievable. SWFAddress uses a nice technique but
I've also heard good things about the Gaia Framework. A site I am
working on currently uses the SWFAddress technique where you provide
an SEO friendly URL and then redirect to the hash value URL. For
example:

SEO URL: http://www.yourdomain.com/us/catalog/some-product/
SWFAddress URL: http://www.yourdomain.com/us/catalog/#/someproduct/

Kris

On Sun, Aug 23, 2009 at 10:57 AM, Carlos Roviracarlos.rov...@gmail.com wrote:


 You could go with a full flex site that support SEO. We did it with our site
 at Codeoscopic:

 http://www.codeoscopic.com

 but we as well use html to get the SEO capabilities, so you get the best of
 both worlds ;)

 for example try to search for codeoscopic avant and you get something like
 :

 http://www.google.es/search?q=codeoscopic+avantie=utf-8oe=utf-8aq=trls=org.mozilla:es-ES:officialclient=firefox-a

 you can see the web in other devices not flash enabled like iPhone

 C.



 2009/8/22 Jeffry Houser j...@dot-com-it.com



  But, it is largely believed that google does not yet offer a way to
 search the swf content it is indexing.

  Can you provide me one example that says otherwise?  Ryan Stewart had a
 contest, which just fizzled because no one could get their SWF to show up in
 a Google search.  Has that improved?

 Nate Beck wrote:



 Google already indexes SWF content, they talked about it at MAX last
 November.

 Here is a recording of the
 presentation: http://tv.adobe.com/#vi+f15384v1000

 On Fri, Aug 21, 2009 at 10:09 AM, toofah_gm ga...@byu.edu wrote:



 If you are a competitor of mine, build a full flex site, otherwise HTML
 is the way to go for SEO. ;)

 --- In flexcoders@yahoogroups.com, christophe_jacquelin
 christophe_jacque...@... wrote:
 
  Hello,
 
  Is it better to make a full flex site or is it better to add some html
  pages with flex to have a better position in Google ?
 
  Thank you,
  Christopher,
 




 --

 Cheers,
 Nate
 
 http://blog.natebeck.net



 --
 Jeffry Houser, Technical Entrepreneur
 Adobe Community Expert: http://tinyurl.com/684b5h
 http://www.twitter.com/reboog711  | Phone: 203-379-0773
 --
 Easy to use Interface Components for Flex Developers
 http://www.flextras.com?c=104
 --
 http://www.theflexshow.com
 http://www.jeffryhouser.com
 --
 Part of the DotComIt Brain Trust



 


[flexcoders] Firefox + BitmapData + wmode transparent = blah

2009-07-21 Thread kris range
I'm having issues with a bitmapdata artifact staying on screen partly
( in an area that is not re-drawn ) after it is removed. It is only
happening in Firefox using a Bitmap with wmode = transprent. When I
drag the browser off the computer screen, or when i drag another
browser window or anything on top, it goes away.

Anyone know how to get Firefox to remove this artifact?


Re: [flexcoders] CuePointEvent missing optional parameters

2009-06-04 Thread kris range
Yep, just seems odd that the VideoDisplay class dispatches only
CuePointEvents when a cue point is reached, in which that class
doesn't have that parameter. Maybe I will have to grab the metadata
property, search through that for the cuepoint with the same name (
barring all the names are unique ), and find it that way.

thanks for the response.
kris

On Thu, Jun 4, 2009 at 12:05 PM, Manish Jethani
manish.jeth...@gmail.com wrote:
 On Thu, Jun 4, 2009 at 5:33 AM, kris range krisra...@gmail.com wrote:
 I'm using the VideoDisplay class and listening for cue points. I can
 recieve the cue points, check out the name, time, type but cuePoints
 also have an optional parameter value, which doesn't seem to be
 included in this event class. Why this is missing from this event? Do
 I need to access it a different way?

 Have you looked at the metadata property and the metadataReceived event?

 Manish


 

 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Alternative FAQ location: 
 https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
 Search Archives: 
 http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links






[flexcoders] CuePointEvent missing optional parameters

2009-06-03 Thread kris range
I'm using the VideoDisplay class and listening for cue points. I can
recieve the cue points, check out the name, time, type but cuePoints
also have an optional parameter value, which doesn't seem to be
included in this event class. Why this is missing from this event? Do
I need to access it a different way?

Thanks,
Kris