Re: [flexcoders] Need ideas on how to load and save room descriptions in xml

2007-09-18 Thread Adam Dorritie
On 9/18/07, oneproofdk [EMAIL PROTECTED] wrote:
 I'm looking for help on how to describe a physical room in a xml
  file - so I can draw it in a flex container later.

  The task is to be able to describe any room for, where there can be x
  walls and x angles.

  One room can be very simple, has 4 walls, no funny angles etc.
  Se illustration here : http://koalit.dk/flex/room0.jpg
  So I need only to store 2 values (I guess)
  wall name=A length=5000/
  wall name=B length=6500/

  But what when the rooms suddenly has multiple walls and angles:
  http://koalit.dk/flex/room1.jpg - http://koalit.dk/flex/room2.jpg -
  http://koalit.dk/flex/room3.jpg

Perhaps I'm oversimplifying the problem, but I would think that you
could solve this by using pairs of x,y coordinates for each line
(wall), couldn't you?

For example, room 3 might look like

wall id=A x1=0 y1=0 x2=0 y2=5000
wall id=B x1=0 y1=5000 x2=4000 y2=5000
wall id=C x1=4000 y1=5000 x2=4000 y2=1500
wall id=D x1=0 y1=0 x2=3500 y2=0
wall id=E x1=3500 y1=0 x2=4000 y2=1500 (The angled wall)

Just a thought.

Adam


Re: [flexcoders] need Flash Player Standalone 9r28 Win/Mac NON-debug, cant find on adobegoogle

2007-09-04 Thread Adam Dorritie
On 9/3/07, tctommm [EMAIL PROTECTED] wrote:
 can someone please provide me the Flash Player Standalone 9r28 Win/Mac
  NON-debug version.

Is this what you're looking for?

http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14266sliceId=1


Re: [flexcoders] How to add a toolTip for each node of tree

2007-09-04 Thread Adam Dorritie
On 9/4/07, Baljeet singh [EMAIL PROTECTED] wrote:
  I am creating a tree with XmlListCollection as data provider to tree.
  I want show tooltip for each node of the tree based on name
  attribute of XML node in XML file. Below is my sample code:--

Have you tried using the dataTipFunction or dataTipField properties of
the Tree class?

Adam


Re: [flexcoders] Re: How to add a toolTip for each node of tree

2007-09-04 Thread Adam Dorritie
On 9/4/07, Baljeet singh [EMAIL PROTECTED] wrote:
 Thanks for suggestion. I have already tried with dataTipField
  property as mx:Tree dataTipField =@name/. but this didn't show any
  toolTip for tree nodes.

Baljeet,

I used the following arrangement to display tooltips:

mx:Tree ...dataTipFunction=getItemTip.../

private function getItemTip(item:Object):String {
  var node:XML = XML(item);
  return [EMAIL PROTECTED];
}

Perhaps this will be of some help.

Adam


Re: [flexcoders] Como pasar parametro XMLListCollection por HTTPService ?

2007-06-07 Thread Adam Dorritie

Can't answer the question, but can provide a poor translation with what
little Spanish I now remember:

Estimados Listeros:
Esteemed fellow listers:

Necesito pasar un parámetro XMLListCollection por HTTPService a una JSP o
Servlet.
I need to pass an XMLCollection as a parameter to a JSP servlet

He utilizado un DataGrid, para el manejo de la información, y luego necesito
pasar los nuevos datos (XMLListCollection id=XML_Grupos) del DataGrid a un
Servlet o JSP.
I have used a Datagrid to organize the information [tr:I think] and I need
to pass the new data in the DataGrid to a JSP servlet.

mx:XMLListCollection id=XML_Grupos ./ // Tiene los datos del
DataGrid.
Has the data from the
DataGrid

mx:HTTPService id=serviceJSP url=Diagrama.jsp resultFormat=e4x
showBusyCursor=true
   fault=Alert.show(event.fault.faultString), 'Error' result=Alert.show(
event.toString())
   mx:request
   quienflex/quien
   Grupos{XML_Grupos}/Grupos
   /mx:request
/mx:HTTPService

Por medio de un Button envío los datos serviceJSP.send()
A button which calls serviceJSP.send() is used to send the data

El parametro quien lo recibo sin ningún problema en la JSP,
JSP:...
request.getParameter(quien);
The parameter quien is received without any problem by the JSP

Pero el parametro Grupos{XML_Grupos}/Grupos, no lo puedo recibir, ni
trabajar con los datos.
JSP:
String[] Grupos=request.getParameterValues(Grupos);
But the parameter XML_Groups, I can't receive or work with the data.

La comunicacion con la JSP me da OK., pero el Array String[] Grupos en la
JSP no contiene la información enviada por Flex.
The communication with the JSP is working OK, but the Array String[]
Grupos in the JSP does not contain the information sent by Flex.

Necesito hacerlo por HTTPService, dado que no deseo utilizar FDS por motivos
de licencia, dado que el cliente tiene un Servidor con 2 Procesadores, y por
lo tanto debería de adquirir FDS.
I need to do this with HTTPService because I don't want to use FDS because
of the license (because the client has a 2-processor server), and because I
also don't want to buy FDS.

Recurro a Uds. dado que en la documentación de Adobe (devguide.PDF) no
encontre nada sobre esto.
I'm coming to you all because I couldn't find anything about this in the
Adobe docs.

Muchas Gracias por todo.
Thanks...


Re: [flexcoders] Charting Wildly Varying Numbers in Flex

2007-05-15 Thread Adam Dorritie

I find that charts aren't always the best way to express information.  Why
not provide a table with property values, at risk values, and percentage of
property values at risk instead?

Great site, btw.

On 5/14/07, charlie.szymanski [EMAIL PROTECTED] wrote:


  I have an interesting issue with a mini charting application I am
trying to create.

You can see my current attempt here:

http://ibiseye.com/?stormID=AT200403active=1season=2004wind=145name=Charleyzoom=5lat=26.3lng=-71.050001

and click Charley Synopsis

Basically, we are using hurricane wind-fields and a giant database of
all the property parcels in the state of Florida to calculate how much
property value was at risk during a given hurricane (this is live
during the season if a storm is forecasted or does go over Florida).

The problem is that the numbers are exceptionally varying in range. If
you look at the bars on that Flex Chart you'll notice we are using the
Logarithmic scale . The reason we had to do this is that the all
data (or even the data within the different categories if the 'all'
data is removed) is usually hugely different in value. This difference
is exasperated by differences in property types. What happens is you
end up with a chart where the bars are barely visible for a number of
the property types (which are even less visible if the chart is not
scaled logarithmically for the all category).

If you mouse over the current chart values, you'll get the actual
dollar value of each bar. It's easy to see (especially in the
Residential type) just how misleading the chart could be. They look
almost the same, but the blue bar is actually 5x greater than the red one.

Has anyone run into this issue before and do you all have any good
ideas of how to get around it? Right now I'm not really even looking
for code, but more of any creative solutions to displaying that
information in a way that isn't misleading (which the current scale
may be -- you have to remember how many old people live in Florida).

Thanks for any insight,

Charlie

 



Re: [flexcoders] Flex - ColdFusion data types

2007-01-24 Thread Adam Dorritie
On 1/23/07, Steve Milburn [EMAIL PROTECTED] wrote:
 In short, the article states You cannot pass ColdFusion variables to Flex 
 applications
 directly. You must encode them in XML first.  Anyway, I am working with 
 Remote
 Object (as you suggested), and I am having no problems doing what I need to 
 do.
  I just thought it was odd that I came across 2 conflicting articles like 
 that, and
 thought I was missing something.

I believe that the confusion is resulting from the fact that the
articles do not so much conflict as describe different approaches to
getting data from ColdFusion to Flex.  The reason that the article you
mention talks about [encoding the variables] in XML first is that
the data from ColdFusion is in this case being returned through the
equivalent of a screen scrape (go to the web page x and put the
displayed page into variable y).  The easiest way to handle data so
retrieved is to have page x simply be a page which displays XML.  The
ColdFusion variables in this case must be included in the XML
displayed because, as with your web browser, no internal CF variable
structure is returned when a page is displayed.  In this case there is
no ColdFusion-Flex connection, Flex is simply loading a web page
which happens to be created through ColdFusion.

Using remoting, on the other hand does allow ColdFusion and Flex to be
truly connected and aware of each other.  The remoting gateway
provides a Flex-aware connection for accessing data through ColdFusion
which allows for the conversion between types and a rich interaction
not allowed by the HTTPService access style.

Adam


Re: [flexcoders] Slightly OT - The Limitations of CFMX 7.02

2007-01-18 Thread Adam Dorritie
On 1/17/07, Battershall, Jeff [EMAIL PROTECTED] wrote:
 I've been using CFMX 7.02's ability translate CFCs to AS objects but
  have noticed the following limitation:

  If I have an array of objects (like CFCs) in my CFC/AS class def - these
  will not translate over the wire and I'm forced to pull over the array
  as a separate remoting request.

  Example:
  Catalog.cfc has an attribute products of type Product.cfc array.
  cfproperty name=Products type=Product[]/
  Catalog.as has an ArrayCollection of Product objects, i.e., public var
  Products:ArrayCollection.

I'm confused about the syntax of the cfproperty tag you used above.
I may be wrong, but my understanding is that you would specify that
Products is an array like this:
cfproperty name=Products type=array.  IIRC CF isn't concerned
about the type of an array's content.  I would also echo João's advice
to define Products as an Array in your AS class.


Re: [flexcoders] Re: 64-bit Integers

2007-01-10 Thread Adam Dorritie
On 1/9/07, michael_ramirez44 [EMAIL PROTECTED] wrote:
  The 64-bit integer limitation is an Actionscript 3 limit not Flex.
  The Number data type uses the 64-bit double-precision format as
  specified by the IEEE Standard for Binary Floating-Point Arithmetic
  (IEEE-754). This standard dictates how floating point numbers are
  stored using the 64 available bits. One bit is used to designate
  whether the number is positive or negative. Eleven bits are used for
  the exponent, which is stored as base 2. The remaining 52 bits are
  used to store the significand (also called the mantissa), which is
  the number that is raised to the power indicated by the exponent.

Michael,

Thank you for providing that section of the manual for me to read.
Although I had not read it before, I was familiar with the allocation
of bits in the Number data type.  My concern is that, in effect, what
the Number data type provides for integers is a assurance of precision
only up to the 52 bits provided for the significand (with a 53rd
holding the sign)..  As the manual states:

When you store integer values with the Number data type, only the 52
bits of the significand are used. The Number data type uses these 52
bits and a special hidden bit to represent integers from
-9,007,199,254,740,992 (-253) to 9,007,199,254,740,992 (253).

Unfortunately, that leaves me a few bits short.  It may be that
internally AS handles these values in a way which renders my concern
unnecessary, but I though I would ask.


Re: [flexcoders] Max OS X Flex Builder 2.01 License Issue

2007-01-08 Thread Adam Dorritie
On 1/7/07, Joost Nuijten [EMAIL PROTECTED] wrote:

 Yeah, I agree. It's a bit outdated. This is what I found on the Adobe site:


I'm wondering how many folks are in my position.  Adobe is kind enough
to permit me to install the Flex Builder 2 with Charting software on
my home computer as well as my work computer (thanks!).
Unfortunately, at work I develop on Windows and at home I use a Mac.
Will I need to purchase an additional copy of FB2 w/ charting in order
to run it on my Mac?  I'm still working on convincing my boss to get
me an MB Pro w/ Parallels:)


Re: [flexcoders] JUST SAY NO to creationPolicy=all !

2006-10-31 Thread Adam Dorritie
On 10/30/06, Gordon Smith [EMAIL PROTECTED] wrote:
 rant
 I've never seen a case where it is necessary to push data into the controls 
 before they exist. If you must put the data somewhere in the meantime, store 
 it in data vars, which have none of the startup cost of a visual component, 
 and then move it into the controls after they get created.

 /rant

I guess I'm wondering why, if there is apparently no use case for this
feature and deferrred instantiation is the way to go, it is
included in the language at all.  Is there never a case to use this
option?


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



Re: [flexcoders] Accordion initialization problem

2006-10-30 Thread Adam Dorritie
On 10/30/06, Rick Root [EMAIL PROTECTED] wrote:
 I'm building an application with an accordion pane, and I'm having
  problems accessing objects declared within a child panel.

  It's as if the children of the accordion pane aren't initialized until
  they are displayed.

You probably need to look at creationPolicy specifically all.

Adam


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



Re: [flexcoders] CFC to AS3 Class Mapping

2006-10-13 Thread Adam Dorritie
On 10/12/06, Derrick Grigg [EMAIL PROTECTED] wrote:
 I was having a great deal of difficultly getting my CFC classes to map
  properly to my AS3 classes. I found a few posts here that dealt with
  the issue but nothing seemed to work properly.

  I discovered one key thing that made it all work. In the AS3 class
  file I needed two Remote Class mappings and they had to be in the
  correct order.

  [RemoteClass(alias=cftest.com.uservo)]
  [RemoteClass(alias=cftest.com.UserVO)]

  The all lower case one had to be first, the camel case one second.
  Once I did that everything worked perfectly.

Hmmm.  I've never had a problem with matching them up, but maybe I'm
doing something differently.  Do you have the alias value declared in
your CFC as well as the AS class?

[RemoteClass(alias=discrepancyBean)]
+
cfcomponent name=discrepancyBean displayname=discrepancyBean
alias=discrepancyBean

Sorry, if that's no help, but it's the only think I can think of.

Adam


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



[flexcoders] Re: Flashvars using Application.application

2006-09-13 Thread Adam Dorritie
On 9/13/06, niuscha.massoudi [EMAIL PROTECTED] wrote:
 I had the same Problem like Kyle. It works with the solution from
 Adam. But only in Firefox and not in IE. What is the Problem?
 I tried also param name=FlashVars value=id=123456, it doesn't
 work.

I use IE when I develop here at work and my solution works fine for
me.  I've attached a simple wrapper file that works for my
application.  Search for 'flashVars' and you'll see my set
('formID=22userID=1userName=Frank').  Replace these with your own
and it should work fine.

Adam


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 







  	
			
			
			
			
  
			
	





Re: [flexcoders] EDI Applications - with Flex as the Front-End

2006-09-12 Thread Adam Dorritie
On 9/12/06, Mike Anderson [EMAIL PROTECTED] wrote:

  I am vaguely familiar with the EDI Standard (and there are many flavors
  out there), and I do also understand that there is much homework to be
  done on my end, before I can forge ahead with this project.

  With that said, I would love to get a jumpstart on this - so if anybody
  could chime in on this thread, and offer any experiences or resources
  they have on this topic, I would be eternally grateful.

Eternal gratitude is too good to pass up :)  Please note that it's
been 6 years since I did any EDI work, so company names may have
changed, etc.

Some suggestions:
1) See if Wal-Mart offers any kind of training for vendors on EDI.
Sometimes the larger operations have vendor eduction programs
available.

2) Get a good begginner's book for an EDI overview.  I used Electronic
commerce with EDI by Robert Sullivan, but I have no idea if the book
is still in print (got it 7-8 years ago).

3) Chances are WM only requires you to use one EDI standard, (ASC)
X12.  You probably don't have to worry about others like UN/EDIFACT -
Other places, or EIAJ - Japan unless you want to make a complete
solution.

4) I don't know what your volume is like, so I'm not sure about which
tools you might want.  My experience was in a high-volume environment
($billions, 1000's of partners) and we had a set of customized and
off-the-shelf solutions.  I'm not familiar with Wal-Mart's setup, but
I would expect that you will have to sign up with a VAN (Value Added
Network) which essentially gives you mailbox-style connectivity with
other VAN users.  GXS is the one that comes to mind first, although I
know we used another as well.  WM may have a VAN you are required to
join up with.  Direct transmission of EDI data is also possible, so
check with WM to be sure.

You may also need/want to look into some mapping software, depending
on your volume, source data formats, and desire to process incoming
EDI data into another format.  Mapping products basically provide
format translation of data to/from EDI formats.  I know that we used a
couple, AI (Application Integrator) from GXS and a product called
EDITRAN (which I would bet no longer sells).

Hope that a little of this rambling helps.

Adam


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [flexcoders] Re: Problems getting started with flashvars and Application.application.paramete

2006-09-09 Thread Adam Dorritie
On 9/8/06, yaagcur [EMAIL PROTECTED] wrote:
  Looking at the documentation it appears as though either Flex data
  services(which I was not planning to use) or HttpServletRequest( which
  i have no experience with) might be required. Is there another way via
  ColdFusion?


In my case, I'm just starting to incorporate Flex apps into a
ColdFusion-based intranet application portal environment.  Although we
don't use much in the way of URL query variables, we do have a great
deal of information (about users, what they're doing, portal features,
etc.) that we keep in ColdFusion session, client, and
application-scoped variables.

It made sense to me to move the default Flex HTML template into a
ColdFusion template and to modify it so that I can dynamically pass in
a variety of information from the portal to the Flex applcation.
Creating dynamic FlashVars seemed the easiest way to do this.  You
could easily pull in URL or Form variables the same way.  I would
assume it's just as easy to do this useing ASP or PHP to produce the
dynamic FlashVars list.

In any case, my CF template (which I haven't finished) looks like this:

!--- Create the FlashVars string.  createFlashVars() returns name/value
   pairs separated by  ---
cfset flashVarObject = createObject
(component,components.utilities.flashUtils)
cfset request.flashVars = flashVarObject.createFlashVars (foo)
...
} else if (hasRequestedVersion) {
   // if we've detected an acceptable version
   // embed the Flash Content SWF when all tests are passed
   AC_FL_RunContent(
 src, #myFlexAppSource#,
 width, 100%,
 height, 100%,
 align, middle,
 id, #myFlexAppID#,
 quality, high,
 bgcolor, ##ff,
 name, #myFlexAppName#,
 flashvars,'historyUrl=history.htm%3Flconid=' + lc_id + '',
 cfif isDefined
(request.flashVars)flashvars,'#request.flashVars#',/cfif
 allowScriptAccess,sameDomain,
 type, application/x-shockwave-flash,
 pluginspage, http://www.adobe.com/go/getflashplayer;
   );

createFlashVars() pulls an application-specific list of variable
values to include int he FlashVars list.  I also have logic that uses
request-scoped variables to determin which swf to load.  I haven't
finished this process yet, thus the lack of CF code.  I'm setting many
of the values manually in the template until I have time to autmoate
more of the process.

All that said, I'm new to Flex so I don't know if there is an easier
way to pull dynamically-selected environmental values form Flex.  This
way seemed easy to me.

Adam


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [flexcoders] Re: Problems getting started with flashvars and Application.application.paramete

2006-09-08 Thread Adam Dorritie
On 9/8/06, yaagcur [EMAIL PROTECTED] wrote:
  Thanks Adam - remarkably similar:) Not sure if that thread sorted Kyle
  out but I'm not quite clear how my HTML is falling short. How does the
  javascipt  AC_FL_RunContent section need amending? The src and
  flashvars are already included

Franck already provided the answer, but I'll say this much.  The HTML
object and embed are within the noscript portion of the page, in
other words the portion of the page which will be executed if
javascript is not available.  The normal path for processing is to run
the javascript
AC_FL_RunContent() function.

The reason you need to modify this is to include your own FlashVars,
in addition to the ones already passed by the default template.  In my
case I use ColdFusion to dynamically insert FlashVars based upon the
Flex application which is running, but all you really have to do is
add your own variables.  For example:

} else if (hasRequestedVersion) {
// if we've detected an acceptable version
// embed the Flash Content SWF when all tests are passed
AC_FL_RunContent(
src, myFlexAppName,
width, 100%,
height, 100%,
align, middle,
id, myFlexAppName,
quality, high,
bgcolor, #ff,
name, myFlexAppName,
flashvars,'historyUrl=history.htm%3Flconid=' + lc_id 
+ '',
- Add something like this...
flashvars,'myVar1=foomyVar2=bar',

allowScriptAccess,sameDomain,
type, application/x-shockwave-flash,
pluginspage, http://www.adobe.com/go/getflashplayer;


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [flexcoders] Re: Flashvars using Application.application

2006-09-05 Thread Adam Dorritie
On 9/5/06, Kyle [EMAIL PROTECTED] wrote:

  My html wrapper contains the normal scripts to check the flash
  version, etc.. And the embed code looks like this:

code snipped

Kyle,

It looks like what may be biting you is the same thing that bit me for
a while.  The code you posted looks like the code inside the
noscript tag in the template HTML.  You also need to look at the
javascript just above the noscript tag (expanding the comment
text).  There you'll find a call to AC_FL_RunContent () for your
application.  This is the path that the page normally takes.  I
appended what I needed to the existing flashvars parameter, but you
could easily just add another parameter line, I would expect.

Hope this helps.

Adam


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [flexcoders] Flex / Eclipse under Mac OS X

2006-08-15 Thread Adam Dorritie



On 8/15/06, Samuel D. Colak [EMAIL PROTECTED] wrote:







Matt,

Im actually surprised as this implies specific coding for the browser... I know IE doesn't have this effect and camino (under OSX) appears to run fine.
I think that you may be misunderstanding what Matt said. He said that, 
The browser
actually reduces the number of CPU cycles dedicated to plugins in a browser when
it doesn't have focus. I believe he is saying that this is a Safari behavior which is independent of the Flash player.Adam

__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



Re: [flexcoders] Re: Adding AS3 support to 3rd party editors - legal question

2006-08-03 Thread Adam Dorritie
On 8/3/06, ben.clinkinbeard [EMAIL PROTECTED] wrote:
 Thanks for the reply, Matt. If this is not ok, what would be
 acceptable methods for accomplishing things like code completion in
 third party editors? Obviously, doing this requires knowledge of the
 structure of all AS3 classes and Livedocs seems like the best/only
 'open' and free to the public source of this information. I really
 don't think any serious developer would consider an editor adequate
 without this functionality.

I think that you're confusing 2 separate issues.  The first is whether
you can configure an editor to recognize (highlight, complete,
whatever) ActionScript code using information obtained from publicly
available documentation.  The answer to this, as far as I know, is
absolutely.  The second issue, and the one which I believe that Matt
has concerns about, is whether or not you can obtain the data you need
to enable this feature by screen-scraping Adobe documentation.  I can
see potential issues with that.  Manually enter the AS3 information
into your editor and I would bet that you would be fine.

Adam


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/