AS3 :: Flex : Automatically Arranging A Set Of Objects (furniture) In A Virtual Room?
Jun 2, 2010
I don't want to visually arrange 3D models dragging them with the mouse, all I want is: Given a room of certain dimensions (L,W,H) and given a set of elements like beds, chairs, etc (with L,W,H dimensions, of course) I want to automatically arrange those elements to take advantage of the space as much as I can. So I want to be able to put as much furniture as I can in a given room. At the end I need to represent the arranged items visually, inside the room.
My first thought was to use an array of items and sorting it with array.sortOn(["l","w","h"] Array.NUMERIC) and then define a gap between the objects and make the maths to put the objects one next to another, etc. but that isn't a good approach because some items may be placed on top of another ones (boxes of the same size, boxes on top of tables, etc).
View 1 Replies
Similar Posts:
Sep 10, 2010
I want to make a virtual tour of a room in Flash / Flex. How can this be achieved? Firstly, is it enough to have pictures taken from a still point? If yes, how can I turn them into a real tour? Also, is there a library for this kind of thing for AS3?
View 1 Replies
Jan 21, 2012
I want to arrange certain objects from a vector/array into a gird
Currently, I know how to do this during the creation of the objects.
Here's the grid function I've created:
function ArrangeInGrid(uiRow:uint, uiCol:uint, iOffsetX:int, iOffsetY:int):void
{
for(var i:uint = 0; i < uiRow; ++i)
{
[Code].....
Now I want to be able to apply the same logic of arranging objects in an array/vector in to a grid, how do I do it?
Or suggest a more efficient way to do so (if you have).
Notes:
I want it to be flexible in how many rows and columns the grid can have. The vector I'm using already has the cards in it. I can't just push the cards into the vector cuz of the way I manually created my cards.
View 2 Replies
Nov 30, 2009
I have an array with names of people randomly selected varying from 10-1000 names into a single array. I was wondering if anyone can point in the right direction on making the array alphabetical order so when I create a drop down box they come out alphabetize
View 2 Replies
Nov 27, 2009
i am starting a project for our church that it will look like a game, each logged in users will be able to attend different types of the room such as prayer room, visitors room etc and will be able to interact each other.
with having a just brief rough idea, i figured that i need to have a socket server and socket class for it. (i tried to make a chatting room with just urlvariable and php mysql but it seems its more appropriate to use the socket server.
well the site will be more focused on the CONNECTION between the logged users and they will need to be able to interact each other when they are viewing photos, videos, sharing thoughts, prayers, etc, and for that matter socket server seems must.
but i do not have any knowledge on the server socket, how to make em and how to set up them. can someone please give me a insight or direction where i should start and look for ?
i figured php isnt suitable for a socket server(which is the only language that i know of) so i m lookin into java or python but i have no idea what to do.
View 6 Replies
Jun 20, 2011
I was thinking about Flash GC the other day and came up with a question about how reference counting would work in the following 4 class scenario (assume GuiMain is the movie's document class):
[Code]...
View 4 Replies
Jul 17, 2011
Suppose you have a view, which contains three control A, B and C. The control A and B are in a HGroup, which itself is inside a VGroup with C.
Based on user interaction, I'd like to re-arrange the controls to new layouts. For example all three inside a VGroup. Or for example a layout, which hides A and B and maximizes C in size.
While I could hand-write the code, I'd like to use something like a layout template. A template, which contains placeholders for A, B and C. Give the current view, I'd like to pass the new template and the view should rearrange.
View 1 Replies
Apr 13, 2010
I want to implement a Chat room in Flex 3.
View 1 Replies
Oct 27, 2011
I have to develop an application like these sites in flex 4[url]...
Which are the main flex components used to build these type of application?
How the conversion from 2D to 3D ?
How to generate dynamic 3D from the 2D resizable objects?
How to show measurement on resizing the objects?
View 1 Replies
Jun 7, 2011
I have created a video chat room by FMS/Flex. what I need to do is:
If everybody in one chat room can use rtmfp, we go with rtmfp if anybody in the chat room disabled his rtmfp, we go with rtmp.
Now I need to create a logic to decide if everybody can use rtmfp between each other, Is there a good way to do so?
View 1 Replies
Oct 7, 2006
I need to develop a Build-Your-Own cabinet configuration application for a cabinet company. I need it to be a drag n drop application. there is a grid system involved, where you can fit 3 large cabs in a grid, or 6 small ones, and so fourth...so there is logic involved. Anyone ever build something similar? a drag n drop application with logic?
View 8 Replies
Apr 9, 2011
I am creating an EDM (Electronic document Management) system which will use Flex for front-end, PHP at server side and Mysql as database. Since its an EDM a single file will have many versions old copies will be stored hence one to one files mapping is not a choice. Wondering whats the best way to do so.
View 1 Replies
Oct 3, 2011
I am working in a project which uses the Facebook graph-api to log in. I have the requirement of only using a virtual keyboard (no hardware will be present). I have looked everywhere, but can't find a solution for adding a virtual qwerty keyboard to the popUp. I can put the keyboard into a popup, or I could add the qwerty keyboard into the screen with the addChild() method, but I still have one problem: the virtual keyboard does not focus to the textInputs of the popup and when i press a key, everything "explooota".
I mean... when i prees the virtual key, i call a java function wich simulate a physical keyboard, but i lose the focus into the facebook input text and the letter is not in the textinput. and i dont know how to recover the focus.
View 1 Replies
Apr 6, 2010
I am making some animations with shape tweening. I actually need it for my presentation.There are five layers of almost same shape of objects. The first two layers and shape tweening works as I expected.But from third layer, something weird happening. As I do shape tween, the layer becomes two moving objects: one is acting as I wish, but the other same object rotaing in x-direction.
View 1 Replies
Aug 8, 2011
I was wondering if anyone could help me achieve an outcome for a soccer game penalty shoot out. I have to put the two defenders and the goalie in an Array. they need to move at a set speed automatically to the left and right side of the goal.
View 1 Replies
Dec 21, 2009
How can i create a virtual(on screen) keyboard in flex?
View 1 Replies
Jul 4, 2009
Why and when? Because I addChild to the stage 1000 times but only removeChild 800 times, and even so, stage.numChildren returns to 0 after all my objects have exceeded the stage boundary. I have to mention that I am moving objects from left to right (it's a game) and the object's X and Y properties eventually exceed the stage boundaries. Does something happen automatically then??? Like... events removed or something like that? This is a continuation of this thread of mine, where I initially thought addChildren has issues: [URL].
View 5 Replies
Oct 30, 2011
I need to dinamically load some texts and gaps (input texts) from an XML file and show them in a panel. I found the documentation of panel on Adobe, how I can to automatically wrap the list of objects if the line is longer.
View 1 Replies
May 12, 2010
Does anyone know if it's possible to integrate the ToushSmart's virtual keyboard with an Adobe AIR application? In most programs (Internet Explorer, Firefox, etc), when a user touches a text field a little keyboard icon automatically pops up which, when pressed, will bring up the virtual keyboard. However, this doesn't happen when clicking on text input fields in Adobe AIR applications.
Has anyone had any experience working with AIR/Flash and touchscreens? Is there any API that can tell Windows (or the HP virtual keyboard specifically) that the user has clicked in a text field and that the virtual keyboard should be shown? The text fields are the standard kind (fl.controls.TextInput).
View 1 Replies
Apr 12, 2010
I have:
an ArrayCollection of Numbers;
a List using the above ArrayCollection as it's dataprovider, and virtualLayout=true;
a custom ItemRenderer that shows a label with:
a) the number
b) an y position depending on the number AND the highest number visible
In another words, if I have 10 numbers in the AC, and only 5 appear on the screen, the y position of those 5 will depend on the value of the maximum number for those 5. When the user scrolls, of course those 5 elements change so the position of the label in item renderers will change.
1) How can I get the list of items that are "currently" visible?
2) Which event/method to override will help me know that the List was scrolled/the visible items changed?
View 3 Replies
Oct 11, 2011
i'm a newbie in Flex/Air. I'm developing an AIR web browser and i want to use a virtual keyboard to write in the HTML pages.it works well when i try to write in a text area, but i don't know how to write in the html page.EXAMPLE:To write in textarea, i just have to call this:textarea.text = event.keyLabel;
View 1 Replies
Dec 12, 2009
Is there a way I can arrange instances in a circle by their registration points?
View 6 Replies
Dec 8, 2005
PHP Code:
var i:Number = 0;
function goMe(){
if (i >= myArray.length){
[Code]....
i'm using this code to cycle through an array and move the movie clips to x:0, and y:height of clip, times whatever number it is.... if there are 4 objects in the array, object 1 would be 1 times it's own height.... etc... so they're spaced out.
however, when i resize my stage, i'd like to have them arrange differently... into columns... but i'm not sure how to specify breaking them off into columns. i tried something like this:
[Code].....
View 1 Replies
Mar 24, 2010
I'm loading my MC from XML backwards, and its separated by 10 per pages. When it's loaded to the stage it could not be arrange accordingly to grids. And when I click at other pages to let it run another 10 before the previous loaded XML object, it does not add in to the Array(I've clear off the array before reload the XML)[code]my guess on the problem might be the 2 loop which 1 is using ++ and the other -- ?
View 1 Replies
Mar 3, 2008
I have 5 images in the middle of the stage with a rollover code that enlarges as you mouse over, and the images are overlapping each other.What I am stuck with is if there is any code or way of making the rolled over images below arrange to the front so the images that were back go to a front state, during the rollover.
View 1 Replies
Jul 12, 2008
I have created four menus and have placed in cascading style (ie. overlaping one after another, showing partially the below one), Now I want each menu come above (front)when I click it, (ie, when I click the second, third or the fourth menu, it should come above in 1st place and the 1st menu should get below it). Please let me know how to do this in using actionscript 2.0.
View 1 Replies
Mar 28, 2009
I know it's something to do with addChild() and addChildAt() but I don't understand how to get it working as the overlay mc is in the library and the slideshow is dynamically generated ..
Code:
package {
import flash.display.Sprite;
import flash.events.*;
[Code]......
View 1 Replies
Jan 23, 2010
I have loaded a bunch of thumbnails into my movie and have the script so that they arrange themselves into a grid.
My question: Within the grid, how can I make their positions slightly irregular, i.e. not all straight!? I'd like to use the Math.random function to change their _x and _y positions, but within the limits of the grid...
Here's the code for the grid (it divides the total number of images from an xml file between 3 rows):
Code:
for(i=0;i<total;i++) {
num = 0;
thmbw = thmb_mc._width;
[Code]....
View 10 Replies
May 24, 2011
I would like to RUN/LOAD my loaded SWF or Movie Clips BEHIND some existing Masks already designed in a scene or simply arrange theirvisibility position in ActionScript 3 while loading them with CODING only
View 1 Replies
Nov 3, 2009
I had been trying to output the result of the following code in a predictable sequence of my choice:
Code:
var arrAnimal1: Object = new Object();
var arrAnimal2: Object = new Object();
var arrAnimal3: Object = new Object();
[Code].....
View 2 Replies