Re: [Flashcoders] Re: flash applicatin and database

2006-12-09 Thread Nehal Gandhi

hey
thanks for the reply.

cant use flash remoting due to the cost factor. and..php.. i cant use as
never worked on it.

Valentina, i will look into it..how about Zinc? any idea? will it work for
MAC server or MAC standalone?

-Nehal



On 12/9/06, Roberto Scordino [EMAIL PROTECTED] wrote:


I own and use v12 and also Valentina (paradigma software).
have a look at Valentina is very performance impressive IMB but never
used online (only in multimedia dvd production)
Roberto
Director +v12 has performance issues. Has any one worked on such kind of
project? Can anyone guide?


___
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@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] flash applicatin and database

2006-12-08 Thread Nehal Gandhi

Hey,

I need help for deciding the architect  for project which is an application



Application would get installed on win/mac , standalone/network scenario.
Flash is fixed as front end, and need to decide middle tire +db.

Which db should I use which support all above mention platform and scenario?




Client wants freeware db. one option is Java web service + Firebird.
firebird has some problem while installing on Mac.



Director +v12 has performance issues. Has any one worked on such kind of
project? Can anyone guide?



Thanks

Nehal
___
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


Re: [Flashcoders] Open PDF in Acrobat

2006-11-29 Thread Nehal Gandhi

if its standalone application you r creating, have a look at local content
updater on adobe site. it worked for me...

-Nehal

On 11/30/06, Rákos Attila [EMAIL PROTECTED] wrote:



Are you talking about a projector application? In this case you can
create a simple batch file for opening PDF-s, that contains a simple
start foo.pdf line. Unfortunately fscommand cannot pass parameters
to the executable, so you have to make batch files for each PDF,
unless you use a third-party projector creator that allows more access
to local files.

  Attila



___
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@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] Save Bitmapdata as JPG with Java

2006-09-28 Thread Nehal Gandhi

hey,
I have read sometime back, some one saved Bitmapdata Image, to server using
java (not PHP). I am looking for the same, any pointer?

thanks in advance
-Nehal
___
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


Re: [Flashcoders] ColorTransform

2006-09-20 Thread Nehal Gandhi

Try this
---

import flash.geom.ColorTransform;
import flash.geom.Transform;

var colorTrans:ColorTransform = new ColorTransform();
var trans:Transform = new Transform(my_mc);

var restoreTrans:ColorTransform = new ColorTransform();

blue_btn.onRelease = function() {
  colorTrans.rgb = 0x99; // blue
  trans.colorTransform = colorTrans;
};

restore_btn.onRelease = function() {
 //??? How can I do restore the initial state ?
 trans.colorTransform = restoreTrans;
};

-

-Nehal

On 9/20/06, Laurent CUCHET [EMAIL PROTECTED] wrote:


There is an mc with mutltiple colors

I apply color change but I dont know how to restore original state

Have you got an Idea please

import flash.geom.ColorTransform;
import flash.geom.Transform;

var colorTrans:ColorTransform = new ColorTransform();
var trans:Transform = new Transform(my_mc);
trans.colorTransform = colorTrans;

blue_btn.onRelease = function() {
   colorTrans.rgb = 0x99; // blue
   trans.colorTransform = colorTrans;
};

restore_btn.onRelease = function() {
  //??? How can I do restore the initial state ?
   trans.colorTransform = colorTrans;
};

___
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@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


Re: [Flashcoders] Can't get rid of halo rectangle

2006-03-21 Thread Nehal Gandhi
try

Button.prototype.drawFocus = undefined;
-Nehal


On 3/22/06, Keith Takayesu [EMAIL PROTECTED] wrote:

 I'm trying to assign custom icons to a Button dynamically in a custom
 component. Here is my code snippet:

 mybutton = createClassObject ( Button, mybutton , this.startDepth++,
 {_x:myx ,_y:myy,_width:15.9,_height:14.7,
 falseOverIcon:btnCalendarViewFalseOverSkin,falseUpIcon:btnCalendarVie
 wFalseUpSkin,falseDownIcon:btnCalendarViewFalseDownSkin,
 falseDisabledIcon:btnCalendarViewFalseDisabledSkin} );

 However, when I compile the Component to a SWF and then instantiate it,
 the green halo rectangle still appears under all the icons. In fact, it
 is still active under all of that. This has me baffled, perhaps it's
 just too late in the day to figure it out.

 2nd problem:
 I have also tried to extend the Button class and apply the icons, as
 shown in the Advanced Actionscript Components book. Then, I don't have
 the rectangle problem, but the registration seems to be off, and height
 and width come back as zero!

 Blue Skies,
 Tak
 ___
 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@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