Re: Re: [Flashcoders] Resizing sw, dependently on screen resolution

2007-03-18 Thread Nicola Alexander Schlup - LuniLogic

Thanks a lot Andy, that was exactly what I needed :-).
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Resizing sw, dependently on screen resolution

2007-03-14 Thread Nicola Alexander Schlup - LuniLogic

Hi,

I want to extend a gallery slideshow script 
(http://flash-creations.com/notes/dynamic_slidingviewer.php). It should 
just contain the slide thumbs, but bigger. This is not the problem. The 
problem is, that I want to have different swf width values, dependently 
on the users screen resolution.


The container for the images should change. For examples, with a screen 
resolution of 1024*768 Pixel, the container for the images should be 
900*300 Pixel. With a bigger resolution, the width value would increase. 
The images itself should not change in size. So with a bigger 
resolution, I see more images on screen. With a lower resolution, I have 
to scroll more as I seee just 2 or 3 images.


My problem: How can I change the swf width size dynamically? Of yourse I 
could set the object tag values dynamically, but this would just stretch 
it. I would like to avoid using a swf file for every screen resolution.


Do you know a smarter solution?

Kind regards,
Nicola
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Re: Array structure problem (Jason Boyd)

2007-02-13 Thread Nicola Alexander Schlup - LuniLogic
I didn't create the new array beforse using it ... arg. nd I'm still 
using get and set methods for the data. It's just to search the data in 
model to determine which data should be sent to the view. Not that works.


Thanks a lot :-)

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Array structure problem

2007-02-11 Thread Nicola Alexander Schlup - LuniLogic

Hi all

I want to save xml data in class instances which are in a multilevel 
array. The XML contains informations like chapter id, text, start time 
and so on. Now I want so save the data this way:

[1] => this is the chapter id
  [0] => this is i from the for() and contains the class instance with 
all data

  [1] => another class instance with all data
[2] => contains all data from chapter 2
  [0] => another class instance with all data
  [1] => another class instance with all data

But I got a problem to get this structure.

I thought it just work this way:
// resultTmp is the instance, chapterId the chapter id
allTextData[chapterId].push(resultTmp);

Or this way:
allTextData[chapterId].[] = resultTmp;

Or this way:
allTextData[chapterId].[i] = resultTmp;

But the result is a blank array without any error. Can you help me with 
this?


Kidn regards
Nicola
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com