How Do Flex Developers Coordinate With Designers

Oct 18, 2010

I've usually designed Flex applications myself but this time I'll need a designer to assist with skinning the application. I've worked with this designer for a while, and we could work well on an HTML/CSS environment. He can't code, he sends me sliced PSDs which I could convert to clean code. But I'm not sure how to have him assist me with Flex UI as he's not familiar with the components.How do you guys interface with designers for your applications?

View 2 Replies


Similar Posts:


Actionscript 3 :: Find Coordinate Of Child In Its Parent's Coordinate System?

Mar 31, 2010

I have 3 square. smallest square s3 is inside s2. s2 is in side s1. each is 10px larger [code]how can I find the coordinate of child in its parent's coordinate system?

View 1 Replies

ActionScript 2.0 :: Sent To One Of Our Motion Designers?

Aug 14, 2007

I have an .flv that has cue points sent to me by one of our motion designers. What I need to do here is be able to detect this cue points in actionscript so i can stop them at certain point and so on. I found something on flash help but i'm kind of confused.

[Code]...

View 1 Replies

Professional :: 6rounds: Developers API Launched?

Jun 23, 2010

We just launched our developers API and I'd like to give the official Flash community a small update about the API because it's hopefully interesting for you as professional Flash developers
 
6rounds is a flash based social entertainment platform which mixes webcam chats and interactive features with fun multi-player games and applications.  At the moment we are running the destination site 6rounds.com and providing the only Google Wave video chat extension. Furthermore, you will soon have the opportunity to embed your apps in a stand-alone widget, anywhere across the web, which will allow even faster distribution of your application. Besides that, we are going to release a Facebook application really soon!
 
Using our API, you can quickly and easily transform your existing applications into the video chat experience, or create new applications, both of which can leverage the platform's inherent ability to deploy gifts, effects, and background themes into the video chat environment.

[Code]...

View 2 Replies

Flash :: Default Variables With Multiple Developers

Feb 4, 2010

This may be a weird question, but I'm wondering if there's any way to efficiently (perhaps using namespaces?) have different default variables in a class per developer in an actionscript project. I ask because we're currently working on a series of Flash games: 24 in total. Each is loaded by a shell container. The shell receives a flash var for which game to load. In our development environment (Flash/FlashDevelop), there are no flashvars, so a constant in the AS defines which game to load when there's no flashvar:

[Code]...

View 5 Replies

Actionscript :: Programming Tests For Flash Developers?

Feb 19, 2010

What programming tests do company's give Flash developers?

I would like to level the playing field for developers and recruiters.

I've heard companies give debugging tests with broken documents you have to fix. Flash developers could include Flash IDE users and actionscript programmers.

Everyone would like to know what to expect and understand some of the blind spots we face. A rundown on "what to be prepared for" may be a right answer. Best anecdote or inside scoop on major companies is good too (don't have to use real names, it's up to you). Perhaps you have an opinion of what is fair or reasonable, I'd like to know.

View 6 Replies

ActionScript 3.0 :: Class Theory From A Designers Point Of View?

Aug 20, 2009

I have been using flash since version 3 as a designer.I want to know how to make an object that I have manually placed on the stage from the library with a Class attached to it, interact with the Document Class? So I am basically dragging the item onto the stage and this item has a class attached and the Document Class with all of its SubClasses needs to know this exists.

Now I was dabbling with making geometry wars to learn AS3 Classes and it was great fun, I set up the Document Class, my enemies and Player 1 Spaceship. I worked out my different SubClasses, and everything was added to the stage by AddChild() along with all SubClasses being created through the Document Class....Every Class Object was linked to the Document Class as everything was created either by it or through SubClasses under it. So I had full control to do what I wanted. However, all I ever see are elements generated dynamically to the stage. As a designer I want to animate things here and there and then at specific times possibly gain control of this item with it's Class attached, but I want the Document to have a link to this Item.

Also can everybody please stop generating text boxes dynamically all of the time. just create a MovieClip with the form elements on it if it's a form that isnt going to change in layout at all. But this leads onto the same sort of questions, the items arent being created and added to the stage as objects so you still have to make the MovieClip Class understand the items under it exist, I would do it by the Instance Name but is this dirty these days in AS3..

View 16 Replies

Flash :: Company Require Designers To Deliver Their Assets To Coders?

Aug 26, 2011

How do you or your company require designers to deliver their assets to coders? Do they deliver a PSD? A series of 24-bit PNGs?

If you are a coder, what would you include in a best-practice guideline to designers? If you are a designer, what questions would you like to see answered in such a document?

[Code]...

View 1 Replies

Copy X And Y Coordinate From One Flex Component To Another?

Mar 17, 2010

I would like to base one component's x and y cooridnates according to another, I tried using the binding notation but it doesn't seem to work

[Code]...

View 1 Replies

Flex :: Mystery Coordinate Offset On GetCharBoundaries?

Jun 19, 2009

I've ran into a weird problem with getCharBoundaries, I could not figure out what coordinate space the coordinates returned from the function was in. What ever I tried I could not get it to match up with what I expected. So I made a new project and and added simple code to highlight the last charater in a textfield, and all of a sudden it worked fine. I then tried to copy over the TextField that had been causing me problems, into the new project. And now the same weird offset appeared 50px on the x axis.Everything else was spot on. So after some headscracthing comparing the two TextFields, I simply can not see a difference in their properties or transformation.

So I was hoping that someone might now what property might affect the coordinates returned by getCharBoundaries.

View 4 Replies

Flex :: Get Global Coordinate Position Of A Component?

Aug 9, 2010

In flex, how to get global coordinate position of a component?

View 1 Replies

Flex :: Get Global Y Coordinate Of Datagrid Selecteditem?

Aug 5, 2011

Here's the situation: I have a populated datagrid and I want to move a form to be inline (same y position) with the datagrid's selectedItem. I cannot rely on a mouseClick event because the selected item may change with a keyboard event. The datagrid does not have an itemRenderer, just plain old dataField.Anyone done this before?

Here's some stubbed out example code for all those interested based on Jacob's answer.

[Code]...

View 3 Replies

Flex :: Onmouseclick - Global Coordinate Value On Mouse Click

Jul 22, 2010

I am using event.event.localX to get the x-axis but it is with reference to local coordinates. How can I get or pass the value of the HBox's xAxis that is clicked by the user so that I can add it in the xAxis of the local coordinate. In other words, I need the global coordinate value? (i.e. x-axis & y-axis)

View 1 Replies

Flex :: Keep Track Of All The Changes Of Coordinate System Origin When Writing Components?

Dec 23, 2010

I am faced with a dilemma. I am writing components with nested components. What sort of coordinate system scheme should I implement? I want to be able to pass points to the components without having to worry about where the origin is in absolute terms. At the same time, I want to have some sort of encapsulation when it comes to origins and stuff. Is there any sort of guideline to follow when it comes to nested components and such?

View 1 Replies

Flex :: Move Coordinate Position Of Flash Download Progress Bar?

Oct 12, 2011

I am extending the Flash DownloadProgressBar component for use as a preloader with Flex. Is it possible to override the x and y coordinate position of the progress bar? (the default is to center the bar)

View 1 Replies

Flex :: Set Bottom-left Coordinate Of Component Instead Of The Top-left?

May 12, 2010

I've some components with dynamic heights. They have to be aligned with respect to the bottom of my canvas container, so I cannot set the same y for all components.

I could compute their heights and successively set the y but I was wondering if there was an easier way to do it.

View 2 Replies

ActionScript 2.0 :: CS3 Ease To A Set Coordinate

May 26, 2009

i have a mapMC on the stage and 6 buttons. i need to be able to make the buttons move the mapMC to specified coordinates. the coordinates are set and will never change. i also need an easing from one location to the next. i guess i'll go ahead and throw in a bonus question for any of you aces out there. lets say location "A" is at x=200, y=400. i would like the mapMC to get there and scale 120%. so a button that gets pressed will go to its coordinates and scale acordingly. i can see that this could be script heavy, but for some reason not too difficult.

View 1 Replies

ActionScript 3.0 :: Get The X Coordinate Of Movieclip?

Jul 13, 2011

I have a movieclip with a drag function, and after each drag I want it to trace the x position. I tried the following code but it always outputs 0.

ActionScript Code:
sliderMC.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToPosition);
function fl_ClickToPosition(event:MouseEvent):void

[Code].....

View 5 Replies

Actionscript 3.0 :: Position Of The X Coordinate?

Apr 20, 2009

to get the position of a movieClip in the x axis, we use: trace(movieClip.x);is there an alternative for ".x"???

View 3 Replies

ActionScript 2.0 :: SetProperty - Can See Only With One Coordinate

Oct 8, 2005

first have a look at this: [URL] It loads "auto" coordinates from php file, and makes the "auto" move after timeinterval. It is needed tht it could load infinate coordinates, but i fail to do it. If u change setProperty(auto, _x, kord ) to setProperty(auto, _x, x2 ) , it works, but as u can see only with one coordinate.

View 9 Replies

ActionScript 2.0 :: StartDrag Restrict X & Y Coordinate?

Jul 28, 2009

[URL]

If you drag the map, it moves even beyond the edge of the map so the map eventually gets dragged off the screen. Is there any possible way to stop the map moving any furthur than its boundry?

The source is here - [URL]

View 3 Replies

ActionScript 3.0 :: Track Y Coordinate, Then DoSomething?

Nov 12, 2009

I am trying track to see if mouse is between 0 and 200 pix in the Y coordinate, then do an if statement.

stage.addEventListener(MouseEvent.MOUSE_MOVE, mousePosition);
// I use this to track readings.
function mousePosition(event:MouseEvent) {

[code].....

View 3 Replies

ActionScript 3.0 :: 3D RotationX/Y/Z With Local Coordinate?

Jan 28, 2012

When I use 3D rotation tool, there is an option called global transform, if it turned off, the object would rotate by its own axes, this is exactly what I want. How can I do rotatation like that with AS3 code? Is there any property if changed then rotationX/Y/Z would rotate object by its axes?

View 4 Replies

Flash :: Prevent Showing MC When His _y Coordinate Becomes To The -100?

Nov 7, 2010

I have a problem when one B.swf file is loaded to another A.swf file.A.swf file size is 400x400.B.swf file size is 100x100.B file has a movie clip (MC) which is animated and position of this movie can be from Y:-100 to Y:200. B file is loaded into the center (X:150, Y:150) of the A file.When B file is loaded, then animation starts. I have a problem: I can see animated movie clip B out of B screen scope (for example: when B.swf file movie clip has _y = -100 I still can see that movie clip in A.swf). I am expecting that movie clip will not be shown if Y position becomes negative

View 1 Replies

Flash :: Papervision3D Coordinate Axes?

May 25, 2011

I have a flash application and I use papervision3d library. I put my objects to the scene, no problem but I also want to show the coordinate axes (x,y and z) to user. Is there any way to show these axes?

View 2 Replies

ActionScript 2.0 :: Absolute MC Coordinate Values?

Jan 6, 2009

our collaborators misposition the registration points of MCs.Here's the deal: we need to recover the REAL MC's coordinates (not the ones based on registration point). Is it possible? How? I've tried some code already (like getBounds and getRect functions) but all of 'em consider the registration point.

View 4 Replies

ActionScript 2.0 :: Putting A Bitmap Into A MC At A Certain Coordinate?

Jul 27, 2009

I'm trying to make a 2d birds eye map for my user to move around it, and the map moves around instead of the user MC because I always want the user to be in the middle.

Problem is I load the map into an instance of a blank movie clip on the stage from a jpeg on the server, but I want to be able to put items on the map that the user can interact with at certain coordinates, after the map has been loaded, from some gifs I imported into the library as bitmaps.

I can't seem to find a function that will let me load the bitmaps into the MC that already has the map in it though, is it possible to do it that way? If not then any recommendations?

View 1 Replies

ActionScript 3.0 :: Finding A Class' X Coordinate?

Nov 27, 2009

I have enemies being dynamically spawned from a Class. They are constantly moving but I need them to shoot at the player when their X is the same as the Players. I have the enemies being put into an array for collision detection

View 1 Replies

ActionScript 2.0 :: How To Prevent Showing MC When His _y Coordinate Becomes To The -100

Nov 7, 2010

I have a problem when one B.swf file is loaded to another A.swf file.

A.swf file size is 400x400.
B.swf file size is 100x100.
B file has a movie clip (MC) which is animated and position of this movie can be from Y:-100 to Y:200.
B file is loaded into the center (X:150, Y:150) of the A file.

When B file is loaded, then animation starts. I have a problem: I can see animated movie clip B out of B screen scope (for example: when B.swf file movie clip has _y = -100 I still can see that movie clip in A.swf). I am expecting that movie clip will not be shown if Y position becomes negative. how I could prevent B.swf files movie clip appearing on A.swf file?

View 2 Replies

ActionScript 2.0 :: Average X Coordinate With Arrays?

Jan 16, 2012

I am wanting to take the average x co-ordinate of several movieclips, mc_01, mc_02, etc. using arrays. That is, I would like to sum all the x co-ordinates and then divide by the number of movieclips.

View 1 Replies







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