[Flashcoders] Need resize option for video in webpage and fix some problems in code.

2007-08-27 Thread creativity
Hi,
I need little help to have some feature in http streamin of flv. I am using
swf file with netstream to stream video. I am not able to get metatada for
duration also i am not able to change video on completion using listener
object. Below is the code

Note: nsVideo is the video object, residing in a movieclip vFLV, instance
name of video object is video.

import mx.video.*;

//connection
var ncFLVConnection:NetConnection = new NetConnection();
ncFLVConnection.connect(null);
var nsVideo:NetStream = new NetStream(ncFLVConnection);
nsVideo.setBufferTime(1);
vFLV.video.attachVideo(nsVideo);
nsVideo.play(INA Montag.flv);
//listener
nsVideo.contentPath = INA Montag.flv;
var listenerObject:Object = new Object();
// listen for complete event; play new FLV
listenerObject.complete = function(eventObject:Object):Void {
if (nsVideo.contentPath == INA Montag.flv) {
   nsVideo.play(ina1.flv);
}
};
nsVideo.addEventListener(complete, listenerObject);

 //video controls

nsVideo.onStatus = function(oData:Object):Void  {
 trace(oData.code);
};
var nDuration:Number = 0;

nsVideo.onMetaData = function(oMetaData:Object):Void  {
 nDuration = oMetaData.duration;
 trace(nDuration);
};
vFLV.mPlay.onPress = function():Void  {
 nsVideo.pause(false);
};
vFLV.mPause.onPress = function():Void  {
 nsVideo.pause(true);
};
vFLV.mStop.onPress = function():Void  {
 nsVideo.pause(true);
 nsVideo.seek(0);
};
bufferingBar = my_buffrgbar;
import mx.video.*;
//nsVideo.bufferTime = 15;
bufferingBarHidesAndDisablesOthers = true;
//vFLV.video.contentPath = INA Montag.flv;
setInterval(updateProgress, 100);
function updateProgress():Void {
 var nPercent:Number = 100*nsVideo.time/nDuration;
 mProgress.mPercent._xscale = nPercent;
 percentage.text = nsVideo.time;
}
nsVideo.onMetaData = function(oMetaData:Object):Void  {
 vFLV.video._width = oMetaData.width;
 vFLV.video._height = oMetaData.height;
};
vFLV.reSize.onPress = function():Void  {
 vFLV._width = vFLV._width*1.5;
 vFLV._height = vFLV._height*1.5;
};


i am able to play first video. i am not getting duration of the video. I am
not able to load video 2 all files reside in same folder. I am able to
resize video in flash, but i have to use the swf in a webpage there i need
the video resize on a liquid web page. so that when user screen res. are
differrent video also resizes along with other elements of webpage.

-- 
Abhishek Kumar
___
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] I have problem executing playlist streaming example macromedia

2007-08-20 Thread creativity
I have read these articles
http://www.adobe.com/devnet/flash/articles/video_player_03.html

downloaded sample files and placed files as directed. I have also installed
flash media server 2 trial. Play list is showing all videos. videoplayer
component is visible but no video is displayed in video player component.
i am using apache server on windows not IIS.

-- 
Abhishek Kumar
___
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] Pls suggest some good source for video streaming with media server

2007-08-14 Thread creativity
Hi,

I need some good book or online resource to utilize for dynamic online video
streaming live as well as from stored videos. I f somebody can help in this
regard it will be great. I need somme of these features

1. video uploads over hired media server through dynamic admin
2. Dynamic calling of videos
3. Bandwidth detection and streaming as per user bandwidth
4. automatic run of videos after on another as listed by dynamic admin
panel.

I have idea of streaming, xml, php etc. But i need some insight to use them
together effectively for this

-- 
Abhishek Kumar
___
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] need some clarifications on Video streaming

2007-07-29 Thread creativity
Hi,

i have some queries regarding video streaming.

1. If we use flash media server to deliver streaming as per user bandwidth,
do we need to keep separate flv files for each kind of bandwidth.
2. Is any third party tool available which can be put on server to convert
different video formats to flv
My requirement is that video uploaded by user in any format is converted
to flv and stored on  media server, like u can see in youtube.
3. What can be the best way to upload and download high quality video via
internet, where bandwidth can vary from palce to place.
thanks
-- 
Abhishek Kumar
___
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] How to use media server alongwith webserver for video streaming

2007-07-25 Thread creativity

Hi,
thanks for the tips. You have made my certain doubts clear about the
subject, rest i will explore. if u find any further such inputs let me know.
As i understood requests are directly handled by FMS on request from swf
files.
I was just trying to work out on a news based site kind of scenario where a
.net application is used to dynamically display the content i mean upload on
server and streaming of a video dynamically as per request by a user. In
this case then

  1. Http request is made to load a  SWF
  2. now on a user click on video icon in webpage request will be passed
  to residing SWF,  SWF contains logic for RTMP call to FMS
  3.  SWF requests FLV stream from FMS
  4. SWF receives FLV stream and displays it

I mean request first pass to SWF and from there to FMS. I that case where
the FLV database will be stored. Bacauz FMS and web server are separate. I
am still a bit confused.



thanks
Abhi


On 7/24/07, greg h [EMAIL PROTECTED] wrote:


Hi Abhishek,

Bob's summary is 100% correct.

For more detail, you might want to check out the heading About streaming
video here on the Delivery options for Flash video page of the Flash
video learning guide:
http://www.adobe.com/devnet/flash/articles/video_guide_02.html

Also this page may help too:
Streaming Video (FLV) -- Delivering Flash Video: Understanding the
Difference Between Progressive Download and Streaming Video
http://www.adobe.com/devnet/flash/articles/flv_download_04.html

Following is a basic sequence of events at runtime:
1) browser requests a SWF from the web server via HTTP
2) browser receives SWF, SWF contains logic for RTMP call to FMS
3) SWF requests FLV stream from FMS
4) FMS starts stream to the SWF
5) SWF receives FLV stream and displays it.

So, basically, there is no direct interaction between the FMS and web
server.

Please post back if you have any further questions.

hth,

g

On 7/23/07, creativity [EMAIL PROTECTED] wrote:

 Hi,

 Can anyone guide me on how to use flash media server with a web server
for
 streaming media asses like videos and audios.
 I wish to know how to set up this service and how web application
running
 on
 webserver handles media related requests using flash media server.
 --
 Abhishek Kumar

___
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





--
Abhishek Kumar
___
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] video streaming help needed

2007-04-18 Thread creativity

Hi,

i m looking forward to built a simple site on lines of youtube.com I have
never used flash communication server extensively.  the site will have audio
and video streaming. which will be for most of the news item. We need video
streaming to be smooth and hassle free, which icludes identification of
bandwith and playing video quality accordingly. Web site will be dyanmic and
on .net platform. if some one can also guide me through for webserver
requirements for this it will be gr8 help.

thanks
Abhi

On 4/12/07, Doug Coning [EMAIL PROTECTED] wrote:


Good Morning,

I have a sample SWF file that I've been provided by a client that when
opened, connects to a data source via XML Socket.  I have created a
similar SWF file that communicates with their data source via XML
Socket, however when my SWF file is opened, it shows the Macromedia
Flash Player has stopped a potentially unsafe operation error and
requires that the file be set in the global settings as a trusted site.
Their file does not trigger this error.  I have looked at the original
ActionScript code and can't see the difference.

Could the error be triggered by the version that the swf is compiled at?
Why would one swf file trigger the error and another not, even though
they are calling the same data source and are in the same directory?

Any feedback is much appreciated!!!

Doug Coning
Senior Web Development Programmer
FORUM Solutions
[EMAIL PROTECTED]

This e-mail and any attachment(s) are intended for the specified
recipient(s) only and are legally protected.  If you have received this
communication in error, please reply to sender's e-mail address with
notification of the error and then destroy this message in all electronic
and physical forms.
___
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





--
Abhishek Kumar
___
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] component learning interactions multiple choice problem

2007-03-28 Thread creativity

I am using learning interactions multiple choice componet. When
putting different answers for multiple choice, sometimes the text
length is greater than check box component label for answer. so, part
of answer does not show. How can i make change in check box label
component for multiline text or to autosize if text is longer than
space provided.

--
Abhishek Kumar
___
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] erratic behaviour on coversion of flash mx 2004 pro file to flash 8 pro

2007-03-27 Thread creativity

Hi,
I had developed e-learning content for cd in mx2004 pro but due to
better video possiblities i converted it flash8 pro format. but when i
chnage and fublish in flash 8 animations behave erratically.
converting back to mx 2004 rectifies the problem . my whole project is
stuck up for this problem. if anybody can help.

thanks

--
Abhishek Kumar
___
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] Poor video quality problem

2007-03-20 Thread creativity

Hi,

I have tried to make and place flv file. I have used sorenson squeeze
for compression. But i have a problem the native dvd format is vob.
when i open it in sorenson it has voice but when i export it as flv it
comes without voice. Same thing if i do after converting it to mpeg
theough some encoding software, audio works fine after export form
sorenson squeeze compression in flv format.

what can be the reason.

thanks
Abhi

On 3/20/07, Fredrik Delin [EMAIL PROTECTED] wrote:

Hi Abhi,
Even if the flash presentation is on a dvd or cd-rom I would suggest
placing the video file externally and stream it in (progressive
download) using the flvplayback component in the presentation.

Open the video in quicktime pro if you have that or any other video
editor and export it to a .flv file. When size is not an issue I
usually have the following settings:

Codec: On2 VP6
Data rate: 7000kb/s
Audio as MP3 192kb/s

/Fred


On Mar 19, 2007, at 15:24, creativity wrote:

 Hi,

 I have dvd video and want to put it in flash. videos are long in
 duration, Embeding it is resulting in very poor quality and long time
 to load the output is to on cd-rom. if any one can help me getting
 good quality video in flash.

 thanks
 Abhi

___
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




--
Abhishek Kumar
___
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] Poor video quality problem

2007-03-19 Thread creativity

Hi,

I have dvd video and want to put it in flash. videos are long in
duration, Embeding it is resulting in very poor quality and long time
to load the output is to on cd-rom. if any one can help me getting
good quality video in flash.

thanks
Abhi

On 3/19/07, Dennis - I Sioux [EMAIL PROTECTED] wrote:

Hey guys,

We would like to send a video(stream) in a news e-mail to affiliates.
Does anybody know if this is possible in mail?
As far as i could see there weren't any active-x possibilities.. so FMS is 
probably not done?

With kind regards,


Dennis
I Sioux B.V.
___
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




--
Abhishek Kumar
___
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] Need help problem with sound object

2007-03-08 Thread creativity

Hi,
thanks for help, i will try that. But right now my sound is at level 0
and video is at level 3. I stop sound object at level 0 i find sound
of video is also lost.
thanks
Abhi

On 3/8/07, Jiri Heitlager [EMAIL PROTECTED] wrote:

When creating a sound object, you should give a movieclip as it parameter
var snd:Sound = new Sound(movieclipReference)

By not assigning a movieclip, you acces the global sound.

Jiri












creativity wrote:
 Hi,

 i have used sound object at level 0 which is controlled by a button to
 stop and play.
 But when sound through sound object is stoped. The sound of video at
 other level also stops. on setting sound object play again the sound
 with sound object plays but video sound doesnot. Though on loading
 other movie again sound of vieo play perfectly.

 pls let me know if any boy has some solution.

 thanks

___
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




--
Abhishek Kumar
___
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] Need help problem with sound object

2007-03-07 Thread creativity

Hi,

i have used sound object at level 0 which is controlled by a button to
stop and play.
But when sound through sound object is stoped. The sound of video at
other level also stops. on setting sound object play again the sound
with sound object plays but video sound doesnot. Though on loading
other movie again sound of vieo play perfectly.

pls let me know if any boy has some solution.

thanks

--
Abhishek Kumar
___
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] setstyle for component

2007-02-27 Thread creativity

I need to setstyle for list component for various parameters. Do i
need to write setstyle separately for each parameter or how should i
write the code to set multiple properties in one setstyle statement.

thanks
Abhi

On 2/25/07, Robin Burrer [EMAIL PROTECTED] wrote:

Hi there,

I'm using swf studio as a swf wrapper. Unfortunately swf studio has not
been updated for vista yet. As a result you have to have administrator
rights to run the flash app.

Even more annoying is the fact that if you just run the application by
double-clicking the exe (or through an autorun file on a CD-ROM) the exe
won't start but will still be listed in the task manager. This means
that you manually have to quit the application in the task manager
before you can start the exe as an administrator.

The worst thing about this whole issue is that Microsoft didn't think it
was necessary to inform the user in any way when he tries to run a
legacy exe.
No error message - nothing. The app just won't start.

So my question is: Are there any workarounds yet? Do other swf wrapper
tools already work with vista?

I came up with this idea of creating a vista compatible windows form
application. This application would then open an alert popup window,
which informs the user that the application which is about to be
launched (my flash exe) requires administrator rights. It would then
prompt the user to
Run the application as an administrator, start the flash exe and quit.

Not sure if this is possible though ...


Any thoughts?


Robin

___
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




--
Abhishek Kumar
___
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] Need help

2007-02-08 Thread creativity

i have online records of students. and i have some contents on cd-rom.
i need user to authenticate online when he starts browsing cd. also i
need to pass his status to online record once he has gone througha
particular portion of cd-rom.

I simply need to track how much content user has read from cd-rom data
and to be updated online in his records.

--
Abhishek Kumar
___
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] Need help

2007-02-08 Thread creativity

I need few things

1. A user databse has been put on web server
2. he gets a content CD-ROM
3. He first needs to be validated online to use the cd-rom and then
create his user id and pwd
4. now when he reads a particular module from cd-rom and does some
questionaire his data should be updated online for this, to confirm
that he has gone through particular section.
5 if there is an option that after creating user id password he can
read content offline also with same user id and pwd and his status
gets updated when he gets online.

I need to know how this solution can be achieved. Basically updating
user interaction with cd-rom , online.

thanks
Abhi

On 2/8/07, Hans Wichman [EMAIL PROTECTED] wrote:

Hi,
so what is your question?

greetz
JC


On 2/8/07, creativity [EMAIL PROTECTED] wrote:

 i have online records of students. and i have some contents on cd-rom.
 i need user to authenticate online when he starts browsing cd. also i
 need to pass his status to online record once he has gone througha
 particular portion of cd-rom.

 I simply need to track how much content user has read from cd-rom data
 and to be updated online in his records.

 --
 Abhishek Kumar
 ___
 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




--
Abhishek Kumar
___
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] Need help

2007-02-08 Thread creativity

I have heard of some LMS systems where to keep track of the students
are provided with CD_ROM content apart from online content. To keep
track that student has really gone through particular lessons and
assessment on cd-rom his status is updated as he progresses thorugh
content on CD-ROM. since e-learning flash based study material is
heavy cd-rom serves a better purpose for playing such content.

I need synchronization of offline data on cd-rom with online data. Is
there some way out. purposes are two 1. to validate the user 2. to
update his status of progress through the content.

thanks
Abhi


On 2/8/07, Hans Wichman [EMAIL PROTECTED] wrote:

Hi,
well it's not going to work with a flash only solution, you probably need to
wrap your flash (assuming it has to be flash) with an exe, such as Zinc or
Director, which allows you to have both local and network access.

greetz
JC


On 2/8/07, creativity [EMAIL PROTECTED] wrote:

 I need few things

 1. A user databse has been put on web server
 2. he gets a content CD-ROM
 3. He first needs to be validated online to use the cd-rom and then
 create his user id and pwd
 4. now when he reads a particular module from cd-rom and does some
 questionaire his data should be updated online for this, to confirm
 that he has gone through particular section.
 5 if there is an option that after creating user id password he can
 read content offline also with same user id and pwd and his status
 gets updated when he gets online.

 I need to know how this solution can be achieved. Basically updating
 user interaction with cd-rom , online.

 thanks
 Abhi

 On 2/8/07, Hans Wichman [EMAIL PROTECTED] wrote:
  Hi,
  so what is your question?
 
  greetz
  JC
 
 
  On 2/8/07, creativity [EMAIL PROTECTED] wrote:
  
   i have online records of students. and i have some contents on cd-rom.
   i need user to authenticate online when he starts browsing cd. also i
   need to pass his status to online record once he has gone througha
   particular portion of cd-rom.
  
   I simply need to track how much content user has read from cd-rom data
   and to be updated online in his records.
  
   --
   Abhishek Kumar
   ___
   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
 


 --
 Abhishek Kumar
 ___
 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




--
Abhishek Kumar
___
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] Need help

2007-02-08 Thread creativity

Hi,
thanks for the help as we have researched a bit we think that we will
be able to do this using xml as bridge between online database and
cd-rom content. And if we are able to use sharedobject to save the
user id and pwd offline the user has created online. he will be able
to log in offline also on same pc, in case he uses different pc he
will be told to login online again and the same will be saved on the
other pc using shared object. But the point is how his status will be
updated for activities he takes offline on cd after he becomes online.
thanks
Abhi

On 2/9/07, Darren Bowers [EMAIL PROTECTED] wrote:

Hi Abhi,

We have looked into PDF server and it is a nice solution for student forms,
assignments, worksheets, etc - if you are willing to pay the large amount
Adobe asks to buy it. Its not a trivial amount.

You will definitely need to wrap your SWF into Zinc to keep or update
persistent user data unless you use shared Objects to keep student state. If
the student works in different locations, then the shared object is not
available anymore.  Authentication is also not difficult, but you have to
find a suitable way to block the user from using the local content if that
is what you want to achieve.

We use Janison LMS and have any larger content on CDROM with the LMS menu
structure duplicated on the CDROM in case they are not able to use the
content online. We have some Javascript that detects if the student is
currently connected to the LMS and if they are, it looks for the current
CDROM path to display the larger content (Flash/Videos/etc).

HTH
Darren



On 09/02/07, creativity [EMAIL PROTECTED] wrote:

 i have read on adobe about some pdf server. where a form can be filled
 offline but submited when online
 thanks
 Abhi

 On 2/8/07, creativity [EMAIL PROTECTED] wrote:
  Is it possible if i use director alongwith flash.
 
  On 2/8/07, creativity [EMAIL PROTECTED] wrote:
   I have heard of some LMS systems where to keep track of the students
   are provided with CD_ROM content apart from online content. To keep
   track that student has really gone through particular lessons and
   assessment on cd-rom his status is updated as he progresses thorugh
   content on CD-ROM. since e-learning flash based study material is
   heavy cd-rom serves a better purpose for playing such content.
  
   I need synchronization of offline data on cd-rom with online data. Is
   there some way out. purposes are two 1. to validate the user 2. to
   update his status of progress through the content.
  
   thanks
   Abhi
  
  
   On 2/8/07, Hans Wichman [EMAIL PROTECTED] wrote:
Hi,
well it's not going to work with a flash only solution, you probably
 need to
wrap your flash (assuming it has to be flash) with an exe, such as
 Zinc or
Director, which allows you to have both local and network access.
   
greetz
JC
   
   
On 2/8/07, creativity [EMAIL PROTECTED] wrote:

 I need few things

 1. A user databse has been put on web server
 2. he gets a content CD-ROM
 3. He first needs to be validated online to use the cd-rom and
 then
 create his user id and pwd
 4. now when he reads a particular module from cd-rom and does some
 questionaire his data should be updated online for this, to
 confirm
 that he has gone through particular section.
 5 if there is an option that after creating user id password he
 can
 read content offline also with same user id and pwd and his status
 gets updated when he gets online.

 I need to know how this solution can be achieved. Basically
 updating
 user interaction with cd-rom , online.

 thanks
 Abhi

 On 2/8/07, Hans Wichman [EMAIL PROTECTED] wrote:
  Hi,
  so what is your question?
 
  greetz
  JC
 
 
  On 2/8/07, creativity [EMAIL PROTECTED] wrote:
  
   i have online records of students. and i have some contents on
 cd-rom.
   i need user to authenticate online when he starts browsing cd.
 also i
   need to pass his status to online record once he has gone
 througha
   particular portion of cd-rom.
  
   I simply need to track how much content user has read from
 cd-rom data
   and to be updated online in his records.
  
   --
   Abhishek Kumar
   ___
   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

Re: [Flashcoders] Need help

2007-02-08 Thread creativity

can u brief me a bit how u use javascript to check he is connected to
lms and to disply relevent content from cd-rom

thanks

On 2/9/07, creativity [EMAIL PROTECTED] wrote:

Hi,
thanks for the help as we have researched a bit we think that we will
be able to do this using xml as bridge between online database and
cd-rom content. And if we are able to use sharedobject to save the
user id and pwd offline the user has created online. he will be able
to log in offline also on same pc, in case he uses different pc he
will be told to login online again and the same will be saved on the
other pc using shared object. But the point is how his status will be
updated for activities he takes offline on cd after he becomes online.
thanks
Abhi

On 2/9/07, Darren Bowers [EMAIL PROTECTED] wrote:
 Hi Abhi,

 We have looked into PDF server and it is a nice solution for student forms,
 assignments, worksheets, etc - if you are willing to pay the large amount
 Adobe asks to buy it. Its not a trivial amount.

 You will definitely need to wrap your SWF into Zinc to keep or update
 persistent user data unless you use shared Objects to keep student state. If
 the student works in different locations, then the shared object is not
 available anymore.  Authentication is also not difficult, but you have to
 find a suitable way to block the user from using the local content if that
 is what you want to achieve.

 We use Janison LMS and have any larger content on CDROM with the LMS menu
 structure duplicated on the CDROM in case they are not able to use the
 content online. We have some Javascript that detects if the student is
 currently connected to the LMS and if they are, it looks for the current
 CDROM path to display the larger content (Flash/Videos/etc).

 HTH
 Darren



 On 09/02/07, creativity [EMAIL PROTECTED] wrote:
 
  i have read on adobe about some pdf server. where a form can be filled
  offline but submited when online
  thanks
  Abhi
 
  On 2/8/07, creativity [EMAIL PROTECTED] wrote:
   Is it possible if i use director alongwith flash.
  
   On 2/8/07, creativity [EMAIL PROTECTED] wrote:
I have heard of some LMS systems where to keep track of the students
are provided with CD_ROM content apart from online content. To keep
track that student has really gone through particular lessons and
assessment on cd-rom his status is updated as he progresses thorugh
content on CD-ROM. since e-learning flash based study material is
heavy cd-rom serves a better purpose for playing such content.
   
I need synchronization of offline data on cd-rom with online data. Is
there some way out. purposes are two 1. to validate the user 2. to
update his status of progress through the content.
   
thanks
Abhi
   
   
On 2/8/07, Hans Wichman [EMAIL PROTECTED] wrote:
 Hi,
 well it's not going to work with a flash only solution, you probably
  need to
 wrap your flash (assuming it has to be flash) with an exe, such as
  Zinc or
 Director, which allows you to have both local and network access.

 greetz
 JC


 On 2/8/07, creativity [EMAIL PROTECTED] wrote:
 
  I need few things
 
  1. A user databse has been put on web server
  2. he gets a content CD-ROM
  3. He first needs to be validated online to use the cd-rom and
  then
  create his user id and pwd
  4. now when he reads a particular module from cd-rom and does some
  questionaire his data should be updated online for this, to
  confirm
  that he has gone through particular section.
  5 if there is an option that after creating user id password he
  can
  read content offline also with same user id and pwd and his status
  gets updated when he gets online.
 
  I need to know how this solution can be achieved. Basically
  updating
  user interaction with cd-rom , online.
 
  thanks
  Abhi
 
  On 2/8/07, Hans Wichman [EMAIL PROTECTED] wrote:
   Hi,
   so what is your question?
  
   greetz
   JC
  
  
   On 2/8/07, creativity [EMAIL PROTECTED] wrote:
   
i have online records of students. and i have some contents on
  cd-rom.
i need user to authenticate online when he starts browsing cd.
  also i
need to pass his status to online record once he has gone
  througha
particular portion of cd-rom.
   
I simply need to track how much content user has read from
  cd-rom data
and to be updated online in his records.
   
--
Abhishek Kumar
___
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