.net :: Obtaining DataTable Names From Flex

Jan 20, 2010

I have a C# web service that returns a DataSet with multiple DataTables. It's easy enough to get at the data using this web service event handler in Flex:

static public function getData_Handler(event:ResultEvent):void {
for each(var table:Object in event.result.Tables) {
// ...
}}

How can I access the name of each DataTable from Flex? When debugging, it's clear that each DataTable's name gets mapped to a property on the event.result.Tables object, but I don't see a programmatic way to get a string representation of the name.

View 1 Replies


Similar Posts:


JavaScript :: Obtaining Functionality Of Flex Tile Container In HTML

Sep 15, 2009

The Flex tile containers will create and remove tiles as the data changes and seems good to use in areas where the content is dynamic. How to implement this functionality in HTML? I guess that we need to use some JS and/or CSS.

View 1 Replies

Actionscript 3 :: Obtaining A HGroup Subcomponent That It Is In View Of A Scroller Container Adobe Flex 4.5

Feb 1, 2012

I have setup a Scroller container around an HGroup of labels. The Scroller is setup to only display a single label at a time. What I am trying to do is determine which label is in view of the Scroller when a button is clicked. I have scoured the reference material on Scrollers and HGroups, but cannot formulate a programmatic strategy to determine what element of the group is in view.

[Code]...

View 2 Replies

ActionScript 2.0 :: Obtaining Instance Name Without _stage Location?

Aug 6, 2007

i'm generating a few movieclip functions from an array that relate to an mc that's on the stage. However, in the mc.onRelease function, i can't seem to get the _root.filename = *** .txt to match the name of said mc instance. Instead i get a really long location for the mc on the stage Any ideas how i can get round this?

Code:
var machines:Array = [unimatic,circularSaw,heatpress,embroidery,lineBender,laser,mugpress,vacuumF,linisher,profileCutter,pillarDrill,novamill,compactRouter];
for(var i:Number = 0; i < machines.length; i++)

[code]....

View 3 Replies

Actionscript 3 :: Giving / Obtaining Reference To (or Name Of) UIScrollBar In TextArea

Nov 16, 2010

I have a textArea. It has a UIScrollbar. I want to be able to reference that scrollbar. I heard there's an update() function, and that may be able to save me from the inexplicable things this damnable UIScrollbar is doing on its own.

View 2 Replies

ActionScript 3.0 :: Obtaining From FMS Actual Play Time Of Video

Jun 17, 2011

I have built a flash video player where-in the player is sending some data to the back-end at periodic intervals. Now I have been asked to send the actual amount of time the video was played. I cannot send netstream.time value in this case.Because the user may watch a video for first 5 mins and then seek to the say 30th minute and then close the video. So here the netstream.time value is 30 minutes whereas the actual playtime of the video is just over around 5 mins. I am not sure if the Flash media server maintains this actual playtime of a video. If it does how can I access this? And if it doesn't whats the best way to get the actual play-time?

View 0 Replies

ActionScript 3.0 :: Obtaining A File Name List Of A Directory's Contents Than GetDirectoryListing?

Jan 24, 2012

Just wondering if there is a faster way of obtaining a file name list of a directory's contents than getDirectoryListing? It seems to take FOREVER to load a dir list into an array. My end objective is to populate a .txt file with the names of files in a directory.

View 11 Replies

ActionScript 3.0 :: Buildin Class - DataTable Or Matrix - "xml Class" Cannot Store Objects?

Jan 5, 2010

I have some data (preferably objects, insteads of string) in the flash which I want to store as table format. So that I can query them. It is not datagrid as I do not have to show them. Currently, I am use "xml class" because of the query function. However, "xml class" cannot store objects.

View 1 Replies

Professional :: Importing AI Layer Names As Movie Clip Names?

Aug 26, 2010

We've got an Illustrator file with something over 1,000 layers. We're trying to import this into Flash and keep the layer names intact, such that they become the names of the movie clips that are imported for each layer and can be used programmatically. (It is a diagram and arrows, boxes, etc all have callout names that will eventually allow them to link to a database.)As near as I can tell, the Import dialog will NOT pass this info across between the two parts of the dialog.

View 1 Replies

ActionScript 3.0 :: Instance Names And Variable Names: It Goes Deeper

Mar 20, 2011

I started a thread about a reference to a symbol House, in the output window, which was: House_1. A lot of people said some useful things about that. All day I've been thinking about it, and I came to the conclusion that I don't understand things, at a very basic level.

Consider:I make a movieclip which I give the Symbol name Drawer. (I don't export it for AcitonScript.)On the stage I manually place two instances of this Symbol. The first one I give the Instance Name drawer (in the properties panel). The second one I leave nameless.Now if I trace the names of both these clips, by

trace(this.getChildAt(0).name);
trace(this.getChildAt(1).name);

the output window gives me

drawer
instance2

Now I know that the so-called "instance name" which I gave in the Properties Panel (drawer) is, in reality, a variable name which Flash gives my first instance behind the scenes. And instance2 is a name that Flash gives my second instance. What exactly the nature of that name is, I do not know.My point is: both names (drawer and instance2) are the .name property of these movieclips. Otherwise I could not have traced them through asking for the .name property, in the above. Yet only the first of these two can be manipulated:

drawer.x can be set;
instance2.x can (as we know) not be set.

But...why? What is the real difference between these two kinds of names? How can they both be the .name property of their underlying movieclip, yet be of such a different nature? What IS the nature of the instance2 name? If it's a String, how come the .name property of one movieclip can be a variable name, while the .name property of another (but identical) movieclip is a String?

I've searched every bit of web page on the net I could find. But it looks as if nobody addresses this issue. We all just work with it - but it makes no bloody sense. A name property = a name property, you'd think. Whether Flash set it or I set it should not make a difference. The x property of a clip, for example, does not change in nature according to who set it - me or Flash.So, again, just to emphasize the problem: how can a property (the name property) of a movieclip change in NATURE depending on who set it? After it's been set, shouldn't the name property of a clip be of exactly the same nature as the name property of another clip?

View 8 Replies

AS3 :: Flex - Get XML Tag Names?

Nov 10, 2009

I am trying to get the child XML tag names in my AS3 program. For example, I have a file with information like this:

<LocationInfo>
<City>New York City</City>
<State>NY</State>
<Zip>10098</Zip>
</LocationInfo>

I load the file into an ArrayCollection and can access each item I need by name such as

["City"] // Returns New York

Instead of getting the value, what I am trying to do is get the tag name such as State or Zip instead of NY or 10098.

View 3 Replies

ActionScript 2.0 :: Obtaining The Server Time, Not Client Time?

Sep 16, 2005

obtain the time (by functions similar to getSeconds) of the server the flash file is hosted on, instead of the client who is viewing the movie?

Thing is, I have a very simple clock that displays the time in New Zealand (where I will be going), but it only display the time correctly for GMT+1 right now. If a client from New Zealand or US connects, they will see the wrong time :/

So right now i use:

Code:
newtime = timedate.getSeconds() + 3600*11;
timedate.setSeconds(newtime);

View 4 Replies

Flex :: Get Hyphens In Attribute Names?

Mar 23, 2010

Flex has an issue with hyphens in xml. I need to generate an xml object with hyphens in the attribute for a Google Checkout implementation.

I can get away with:

var xml:XML = <item-description/>;

and

var xml:XML = <item-description the-name="foo"/>;

but what I need to do is set the value of an attribute like this:

var timestamp:String = methodToGetMyTimestampString();
var xml:XML = <item-desc/>;
xml@start-date = timestamp;

but I can't do that. Since flex doesn't like the hyphens, I don't know how to get or set attributes with hyphens in the name.

View 1 Replies

Flex :: Get All Attributes Names Of An Object

Jan 17, 2012

Let's say I have a class which looks like this :

public class MyClass
{
public var attribute1;
public var attribute2;
}

and I'd like to get attribute1 and attribute2 as strings. I tried this :

var test:MyClass = new MyClass();
for (var key:String in test)
{
trace(test[key]);
}

but it does not work, it never goes in the loop. How can I do what I want to do ?

View 2 Replies

ActionScript 3.0 :: Flex And Linkage Names?

Oct 19, 2009

If you try to add an object out of an linkagename in Flex you get errors. Like:1180: Call to a possibly undefined method [linkage name].If I don't want to create classes for every library symbol I'd like to add, is there any other way/praxis of doing this besides using 'getDefinitionByName', so that I won't get errors in Flex?

View 7 Replies

Flex :: Is There A List Of Reserved FlashVars Names?

Sep 3, 2009

Currently I work on localization for a Flex application. From an article I know that you can control the localization with the following FlashVars:

-resourceModuleURLs
-localeChain

Are there any other FlashVars reserved by Adobe that a Flash/Flex Developer should know about?

View 2 Replies

Flex :: Make Objects With Key Names From Variables?

Dec 26, 2009

I would like to make an Object that has key names taken from a variable. Probably this is not clear enough, so let me make an example.

I have two variables var str1:String = 'firstKey'; and str2:String = 'secondKey';

How can I make an object that would look like:

var obj:Object = {firstKey: 'some value', secondKey: 'some other value'}, note that firstKey and secondKey are values of variables str1 and str2.

Doing obj = {str1: 'some value', str2: 'some other value'} does not yield a result that I would like

View 3 Replies

Django :: Map Field Names Between PyAMF And Flex?

Jun 1, 2010

For example, using my UserProfile model:

class UserProfile(models.Model):
user = models.ForeignKey( User, unique=True )
blurb = models.CharField( max_length=200, null=True, blank=True )

[code].....

View 1 Replies

Actionscript 3 :: Flex - Use Variables For Object Attribute Names?

Mar 19, 2010

How do you use variables to access Object attributes? Suppose I have an Object declared as follows,

var obj:Object = new Object;
obj.Name = "MyName";
obj.Age = "10";

[code].....

View 1 Replies

Flex :: Looping Through Object Property Names In Actionscript?

Apr 22, 2010

I have a dynamic class that I have created

public dynamic class SiteZoneFileUploadVO
{
public var destination:String = "sitezone";[code]...........

when I try to iterate over this object's property names it only iterates the dynamically added properties.

parameters.dynVar= "value";
for(var name:String in parameters)
{

Even though the object has all the properties equal to a value (ive checked this in the debugger) the only property name that will be traced is dynVar.How can I iterate over all the property names and not just the dynamically added ones?

View 3 Replies

Flash :: Variable Object Property Names Flex?

Dec 3, 2010

I need to create variable object property names for use with the data grid component.

This works: data = new Object(); data.some_name = "the data";

But this does not: data = new Object(); colName = "some_name"; data[colName] = "the data";

View 3 Replies

Flex :: How To Assign Auto Incremented ID Names To Buttons

Mar 25, 2011

I am amateur in flex, and started my final year project in flex to learn it, I am stuck in place where I have to create rows of drop down lists when the user pressed add more, E.g.: like the ones in mail attachments. I think I have found a way to generate rows, I am not even sure whether it is a correct way, how I generate the rows:

<mx:states>
<mx:State name="newRow">
<mx:AddChild relativeTo="{cityDropdown}">
<s:DropDownList id="newbutton" creationComplete="hotelDropdown_creationCompleteHandler(event)" labelField="Name">
<s:AsyncListView list="{getAllHotelResult.lastResult}"/>
</s:DropDownList>
</mx:AddChild>
</mx:State>
</mx:states>

Now when I generate more rows the dropdownlist ids will conflict, so I want to know a way to generate ids, I think I cant even call a function in there.

View 2 Replies

Flex :: StyleSheet.parseCSS Converts Style-names To Lowercase In AIR

Nov 25, 2009

I am loading css file in Flex 3 AIR application. While reading the style name, I am lowercase version of it (i.e, .NewFontStyle is converted to .newfontstyle)how to get name as mentioned in css file.[code]by this iam getting all styleNames in lower case only.. i need to get the name as mentioned in css file.

View 1 Replies

Actionscript 3 :: Detecting The NAMES (not Values!) Of The Attributes Of A XML Node In Flex

Jan 5, 2010

var node:XML;

In flex/actionscript 3, I can call node.attribute("somename") and get the value of the "somename" atribute of the node. I can also call node.attributes() and get the VALUES of ALL the attributes. But how the heck do I know what attributes to look for?! The application I am creating does not know the format of the XML file in advance. I need a way to know the NAMES of the attributes of the nodes, before I can access them by name!

View 1 Replies

Actionscript 3 :: Flex Is Smaller Varialble Name Is Faster Then Longer Names?

May 21, 2010

We are in process of optimization of Flex AS3 Application.

One of my team member suggested us to make varible name length smaller to optimize the application performence.

i.e.var IsRegionSelected:Boolean = false; //Slower
var IsRS:Boolean = false; //faster

View 5 Replies

Flash :: Flex - Camera.names Not Working In Builder Burrito

May 11, 2011

Im using camera class in my mobile application and I used Camera.names to fill my list and i tried to pass the selected value to getcamera() method but its not working.Here s my code

[Code]...

View 2 Replies

Flex :: Exchange User Names And Peer IDs Between All Connected Users?

Feb 13, 2012

I'm building a chat using Flex. The problem is how to do that new user get the list off all users online and added to the lists of all users. I try to put this information in DataGrid through dataProvider "callerns"[code]...Exchange user names and peer IDs between all connected users

View 1 Replies

Flex :: Send The Names/labels Of Selected Items From A List To A Php File?

Oct 28, 2009

I know i can access multiply selected options of a list by

var selectedAlgos:Array = algosList.selectedItems;

where algosList is the name of my List.

How to i send this array via HTTPService to a phpfile and how can i then access the elements of this array from the php file?

View 1 Replies

Flex :: Computer Readable List Of Human Names / Phone Directory?

Nov 11, 2009

I'm trying to compile a decent .zwl file for squiggly spell checking in Flex; using British words, not American as supplied by default.

Ive managed to create a decent British list of words and ran them through the AdobeSpellingGen app to get a .zwl; great stuff.

However i need to add into this list a list of names, so they wont be flagged.

Does anyone know of a good source of either free, or paid for list of English Fore and surnames? Im trying BT as i type :)

View 4 Replies

Flex :: Stacked Bar Chart With Date As X-axis And Names As Y-axis?

Apr 13, 2012

I'm making a chart where the x-axis needs to have dates and y-axis names. The lenght of the bar is longer when the date is later. But I want to stack multiple bars on eachother. for example This is the code I have so far

<fx:Script>
<![CDATA[
import mx.collections.ArrayCollection;

[code].....

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved