Re: [flexcoders] Re: separate flex apps in same webroot folder

2010-08-31 Thread Pr@vin Uttarwar
Its working now.


Thanks & Regards,

Pravin Uttarwar | Perennial Systems
pravin.uttar...@perennialsys.com | Cell: +91 9371288080 | Tel: +91 (020)
2421 1286 Ext:2007


On 1 September 2010 12:13, p...@vin Uttarwar  wrote:

> :(
> is it working on locally?
>
> Thanks & Regards,
>
> Pravin Uttarwar | Perennial Systems
> pravin.uttar...@perennialsys.com | Cell: +91 9371288080 | Tel: +91 (020)
> 2421 1286 Ext:2007
>
>
> On 1 September 2010 12:11, ZIONIST  wrote:
>
>>
>>
>> when i put the afriquesuitesAdmin.swf and afriquesuitesAdmin.html in the
>> main folder, it still doesn't work.
>>
>>  
>>
>
>


Re: [flexcoders] Re: separate flex apps in same webroot folder

2010-08-31 Thread Pr@vin Uttarwar
:(
is it working on locally?

Thanks & Regards,

Pravin Uttarwar | Perennial Systems
pravin.uttar...@perennialsys.com | Cell: +91 9371288080 | Tel: +91 (020)
2421 1286 Ext:2007


On 1 September 2010 12:11, ZIONIST  wrote:

>
>
> when i put the afriquesuitesAdmin.swf and afriquesuitesAdmin.html in the
> main folder, it still doesn't work.
>
>  
>


Re: [flexcoders] Re: separate flex apps in same webroot folder

2010-08-31 Thread Pr@vin Uttarwar
ok
As i have seen your main site i saw firebug that it is loading framework swf
of 500+ kb.

So i thought it is might not loading the same for admin.
Also is it working if putted in main folder?


Thanks & Regards,

Pravin Uttarwar | Perennial Systems
pravin.uttar...@perennialsys.com | Cell: +91 9371288080 | Tel: +91 (020)
2421 1286 Ext:2007


On 1 September 2010 12:04, ZIONIST  wrote:

>
>
> i already have framework_.xx in the admin folder.
>
>  
>


Re: [flexcoders] Re: separate flex apps in same webroot folder

2010-08-31 Thread Pr@vin Uttarwar
As I have seen your swf it is not loading completely and its size is less
than 200 kb,
so it must be loading framework as RSL.
Also it might load if you out it in same folder ,if it is so,then problem is
that the framework setting is wrong,

try putting framework_.xx in admin folder and try again.

Thanks & Regards,

Pravin Uttarwar | Perennial Systems
pravin.uttar...@perennialsys.com | Cell: +91 9371288080 | Tel: +91 (020)
2421 1286 Ext:2007


On 1 September 2010 11:57, ZIONIST  wrote:

>
>
> am not sure i understand your question... all i did is develop the two apps
> separately and deployed the release build version of the site to the wwwroot
> folder on the host server and the release build version of the admin site to
> the admin folder in the wwwroot folder.
>
>  
>


Re: [flexcoders] separate flex apps in same webroot folder

2010-08-31 Thread Pr@vin Uttarwar
Hi ,
Is there any RSL setting for this app?
if yes what is it?

Thanks & Regards,

Pravin Uttarwar | Perennial Systems
pravin.uttar...@perennialsys.com | Cell: +91 9371288080 | Tel: +91 (020)
2421 1286 Ext:2007


On 1 September 2010 11:31, ZIONIST  wrote:

>
>
> Hi guys i recently developed a website flex for a client and was asked to
> make it editable. so i developed a content management system in flex so that
> my client could be able to edit the content on the site. i uploaded the main
> site onto a shared server of my hosting company in the wwwroot folder and i
> created another folder within the wwwroot folder called admin where i put
> the administrative site. here is the problem, the main site can be accessed
> using this url http://www.afriquesuites.com and when i try accessing the
> admin site i use
> http://www.afriquesuites.com/admin/afriquesuitesAdmin.html which does not
> load the page. My question is how to access the admin site.
>
>  
>


Re: [flexcoders] SWF size and Framework swf/swz

2010-08-25 Thread Pr@vin Uttarwar
I think you have not downloaded Release Build of Flex SDK.
Please make sure that you have downloaded release version and not nighty
Build.

Thanks & Regards,

Pravin Uttarwar | Perennial Systems
pravin.uttar...@perennialsys.com | Cell: +91 9371288080 | Tel: +91 (020)
2421 1286 Ext:2007


On 25 August 2010 17:07, jimmy5804  wrote:

>
>
>
> I have a relatively small swf (~60k) that uses a few Flex 4 classes.
>
> Even though the linkage type on the app is set to RSLs, and the linkage
> URLs of the major .swz files is set to the default Adobe URLs, the app is
> still loading the 600k framework swz (on every app load) from my server. If
> I delete the swz from my content directory, the app refuses to load. This
> means I'm taking a 600k hit on top of my 60k swf which makes the app
> completely undeployable.
>
> Can anyone offer suggestions on why I might be seeing this behavior? Is it
> something potentially related to the crossdomain.xml file?
>
> TIA
>
>  
>


Re: [flexcoders] SWFLoader - Loading swf files that have sound

2010-06-13 Thread Pr@vin Uttarwar
Hi,
if you are using same SwfLoader then try,
swfloader.load(null);
   and/or
swfloader.unloadAndStop(true);

Hope this will help.

Thanks & Regards,

Pravin Uttarwar | Perennial Systems
pravin.uttar...@perennialsys.com | Cell: +91 9371288080 | Tel: +91 (020)
2421 1286 Ext:2007


On 14 June 2010 12:00, chandruflex  wrote:

>
>
> Hi,
>
> I am using Flex sdk 3.0. In an example I am trying out, I have a SWFLoader
> and 2 Buttons. When the first Button is clicked, I am loading the SWFLoader
> with a swf file (that has sound). When the second Button is clicked, I am
> loading the SWFLoader with a different swf file (that has sound too).
>
> The issue I am facing is - when the second swf file is playing, I am
> hearing sounds from both the swf files.
>
> I am just using the SWFLoader's load() method in each of the Button's
> click-event-handlers.
>
> Could anybody help me how I could solve this issue?
>
> Thank you.
>
> - Kumar
>
>  
>