document or video tutorial for setting up LiveCycle Collaboration Service in Flash Professional CS5

Hello

I want to use that adobe LiveCycle Collaboration Service for my business, but the problem is, I'm working on Flash Professional and I don't have taken to Flex, the documentation that is provided with the Flex sdk

so I want 2 types of assistance,

(1) if I want to configure LiveCycle Collaboration Service, will I get the document for this

If it is not available please provide me with assistance for customization of skin of toolbar in the companies SharedWhiteboard low-cost,

Thank you

Rajiv

(another potential double post, don't know why my mails on the forum are ignored...)

Hi Rajiv

For Flash projects only, see 3 examples of applications that start
with 'Flash' - FlashUserList, FlashWebCamExample and FlashSimpleChat. These
You should get running with CS5.

Unfortunately, if you do not use Flex, you will see that the
SharedWhiteBoard isn't going to work - it is completely based Flex. You could
use the SharedWhiteBoardModel and write your own, but unfortunately
whiteboards are quite complicated and require a bit of work (which is
why we don't have the port of Flex for Flash - no one asked for it up to the
now and it is a ton of work).

hope that helps
Nigel

Tags: Adobe LiveCycle

Similar Questions

  • slide show by using the keys on the keyboard for nav in flash professional CS5 with animated images

    recently, I discovered how to create a slideshow using the keys on the keyboard for the market front and rear in flash professional CS5 thanks entirely to kglad of this forum. I used still images for each slide, since, then with one of the slides, I added a slight undulation of water in one of the images in a separate document. is it possible to include this file in my slideshow now?

    original questions and answers using still pictures below

    I'm a graphic designer who has a presentation of my portfolio. I'm not too experienced in flash and do not use it much, but he needs to do this on the thing. I can do a fade in and out slide show, but I want to create a slide show where the screen remains out of the blade and does ' t until what I press the next or previous button. I don't want these keys on the screen, I want to be able to press a key on the keyboard as F1. is this possible and do you know in adobe flash Professional (or other adobe products) where I could get resources/tutorials to do. Any help so what would never be great.

    response

    create tweens to fade for each slide.  You'll probably want to fade out the image on image 1 (from frames 1 to 11).  Bland-in the image of frame 11 frame 1 to 11.  fade the image frame 11 11 to 21 etc.

    You can then use:

    var image: int = 1;

    var dir:uint;

    stage.addEventListener (KeyboardEvent.KEY_DOWN, downF);

    function downF(e:KeyboardEvent):void {}

    {if(e.keycode==Keyboard.Left)}

    dir = Keyboard.LEFT

    Frame = Math.Max (Frame-10, 1);

    this.addEventListener (Event.ENTER_FRAME, nextF);

    } else {if(e.keyCode==Keyboard.RIGHT)

    dir = Keyboard.RIGHT;

    Frame = Math.min (this.totalFrames, Frame + 10);

    this.addEventListener (Event.ENTER_FRAME, nextF);

    }

    }

    function nextF(e:Event):void {}

    {if(dir==Keyboard.Left)}

    prevFrame();

    } else {}

    nextFrame();

    }

    {if(this.currentFrame==Frame)}

    this.removeEventListener (Event.ENTER_FRAME, nextF);

    }

    }

    you have the fla that created the swf file?

    If so, just copy images from this fla and paste into a new movieclip in your fla slideshow.  Add this movieclip to your timeline.

  • Is there a good video tutorial for how to work with templates?

    I have created a template for the page that I made using the tutorial called"how to make and style of a sensitive web page. "I found the instructions to open Active and click on modify.  When I do this I get the message: "cannot find the Publisher valid for this file extension."  I went to the help titled creating a Dreamweaver template page https://helpx.adobe.com/dreamweaver/using/creating-dreamweaver-template.html.  It provides two links to video tutorials, but they don't take me to the tutorials.  They're media main page of Adobe, and when I search, no tutorials arrive.  As the instructions on the help pages do not work, I'm stuck.  Is there a good video tutorial for how to work with templates?

    Menus grayed implies that you're working in Live View mode.  You cannot change the models in Live View mode.

    Switch to Design view.  See screenshot.

    Nancy O.

  • Where can I find a video tutorial for 5.5?

    Where can I find a video tutorial for 5.5?

    I am a user of Soudbooth in CS4. When I upgraded to the master suite 5.5 soundbooth was not in the package, but hearing was.

    There is a new webinar that is coming soon (2012-01-18) by Larry Jordan: http://www.larryjordan.biz/webinars/#0118

    We have several on Adobe TV: http://tv.adobe.com/product/audition/

    There are a few tutorials on Lynda.com, although they are for older versions of the hearing, they must remain for the most part there is: http://www.lynda.com/Audition-training-tutorials/159-0.html

  • We bought Adobe Flash Professional CS5.5 Education Edition, and there is no file set - up.exe to install it. Anyone else having this problem? It will not install automatically.

    We bought Adobe Flash Professional CS5.5 Education Edition, and it will not be installed automatically.

    We followed the directions to open the folder "at the root" to open the file set - up.exe, but there was no file set - up.exe after we did it.

    We looked for the drive. Open all the files. Could not find the file anywhere.

    Hi breth96064862,

    Were you able to get installed CS5.5? If not, what is your operating system? If you are under Windows, it can help in this discussion: where can I find the file .exe Photoshop CS6/Windows 7 please?

    You can also download the files from the link provided by Thomas and install Adobe Creative Suite 5.5 or 5.

    Best,

    Del

  • slide show by using the keys on the keyboard for before back in flash professional CS5

    I'm a graphic designer who has a presentation of my portfolio. I'm not too experienced in flash and do not use it much, but he needs to do this on the thing. I can do a fade in and out slide show, but I want to create a slide show where the screen remains out of the blade and does ' t until what I press the next or previous button. I don't want these keys on the screen, I want to be able to press a key on the keyboard as F1. is this possible and do you know in adobe flash Professional (or other adobe products) where I could get resources/tutorials to do. Any help so what would never be great.

    the best way to do what you want (but not the most flexible/changeable) would be to add each slide a key frame to its own layer.  It is a design decision, but start with keyframes at 1, 11, 21 etc.

    create tweens to fade for each slide.  You'll probably want to fade out the image on image 1 (from frames 1 to 11).  Bland-in the image of frame 11 frame 1 to 11.  fade the image frame 11 11 to 21 etc.

    You can then use:

    var image: int = 1;

    var dir:uint;

    stage.addEventListener (KeyboardEvent.KEY_DOWN, downF);

    function downF(e:KeyboardEvent):void {}

    {if(e.keycode==Keyboard.Left)}

    dir = Keyboard.LEFT

    Frame = Math.Max (Frame-10, 1);

    this.addEventListener (Event.ENTER_FRAME, nextF);

    } else {if(e.keyCode==Keyboard.RIGHT)

    dir = Keyboard.RIGHT;

    Frame = Math.min (this.totalFrames, Frame + 10);

    this.addEventListener (Event.ENTER_FRAME, nextF);

    }

    }

    function nextF(e:Event):void {}

    {if(dir==Keyboard.Left)}

    prevFrame();

    } else {}

    nextFrame();

    }

    {if(this.currentFrame==Frame)}

    this.removeEventListener (Event.ENTER_FRAME, nextF);

    }

    }

  • Good video tutorial for speed category?

    I'm looking for professionals pages tutorial that teach the basics of the CC and advanced techniques and working with lut in SG.

    In addition to what Stefan has suggested, there are very good courses to lynda-dot-com, a service subscription, but for me worth. Search for especially Sg made by Robbie Carman, Patrick Inhofer, Joost Van Der Hoeven or Max Jago.

    Neil

  • Air for Android model missing in Flash Professional CS5

    I'm starting to develop android in flash applications.  Most of the tutorials begin with my selection of Air for Android model in Flash CS5 Pro.  This option is not available for me.  When I try to install the extension I get this: http://labs.adobe.com/technologies/flashpro_extensionforair/

    I'm under the last update for CS5.

    Any suggestions?

    Thank you!

    John

    I was in a similar situation. I think that you must update now to 5.5 to get air for android extension. I have it on my system and with 5.5 works perfectly, I couldn't upgrade without having to pay for the extension of my cs5

  • Flash Professional cs6 for mobile applications

    Hello

    I hope I am in the right place!

    I am a student and I want to start to develop mobile applications, but I have no programming experience! I came across professional cs6 Flash and flash builder 4.7 and I really want to learn how to work with them to develop mobile applications, pouvez please let me know where can I find a tutorial for beginners to develop mobile applications with Flash Professional cs6 ? What is the difference between professional cs6 Flash and flash builder 4.7? Which of them forge you advice me use to start developing mobile applications?

    Thanks in advance!

    Best regards

    Flash pro allows more flexibility.

    Flash builder allows more performance tests.

    Tutorials Google.

  • I want to create a video tutorial

    Hi all

    I want to create a video tutorial for our newly created software. \

    I want to say so much as same as http://www.oracle.com/webfolder/technetwork/tutorials/tutorial/hyp/SmartView_11.1.2.1.102/ SmartView_NF.htm

    Please suggest how do. I'm new to Captivate. I know that Sophie record of things only. But when published, I want to show the slide titles in the left pane as shown above tutorial.

    Thanks in advance.

    Yogesh G Poirier

    Hello

    The left pane is the table of contents. You can activate it using project, Table of contents. First label your slides in the properties panel, because these slide labels will display.

    Lilybiri

  • Can't import video into Flash Pro CS5

    I can't import video in Flash Professional CS5.  I tried all sorts of things for days without success. I used Adobe Media Encoder to convert a video into a format that can be imported into Flash. My source was a VOB (it's a Pal Source) I have been using game source presets and tried others too.  I think I've managed to convert the video for both FLV and F4V formats.  They play well with Adobe Media Player.  However, when I try to import (file-import-open external library (get the screen of the Wizard), click Browse on the option of your computer, select the file, exit load video with playback component, then continue hit and continue to hit on the screen following after select the default skin and pressing on continue on the next page and finish on the next page) , I get the error tab out Flash that says: "NetStream.Play.StreamNotFound: Adobe Flash tried to read a live feed or recorded, that does not exist." Source was not found. "No matter what I try, I get the same message.  Any help would be greatly appreciated.   I have searched all over the web for a solution to this problem with nothing doesn't.

    Thank you

    Kirk

    Open the file browser > navigate to the directory that contains your flv/f4v > right click > click Properties > confirm that she has more than 0 bytes.

    If it does create a new directory and move your flv/f4v to the new directory.  create a new fla and save it to the newly created the directory that contains your flv/f4v and repeat your import steps.

    any problem?

  • Cannot type the complete serial number for Flash Pro CS5.5 STUDENTS

    Flash Professional CS5.5 STUDENTS & teachers Edition has several letters at the beginning of the serial number in contrast to the standard versions.  I bought my copy from Amazon.com and I installed my copy once fine before but my computer crashed recently and now I can't reinstall Flash Pro, because it won't let me type in the form of paper letters, only numbers.  I tried typing normally, using shift, by copying and pasting the... nothing.  Is there another way that I can enter the serial number or fix anything that is not letting me type some letters?

    Thank you

    Z

    There are two numbers "serial" (product number) who came on the packaging of the product.

    The software is Adobe Flash Professional CS5.5 Student and Teacher Edition, purchased from Amazon.com and verification of the required student to get the license.

    ---

    ^ [I found what was wrong, but I'll just leave the information here for anyone in the future that may have short term memory as well]

    ---

    I just went through my files that I've recovered from my laptop and it seems that the serial number on the packaging of the product has IN FACT of letters in there.  But I think that I had to register with Adobe and verify that I was a student before Adobe give me my legitimate serial number that contains only numbers.  It's so why there are tons of these discussions about this who aren't ever answered because the people demand and people who help are good and evil at the same time.  Students are trying to use the only series that has been provided, but it isn't the real serial number.  Adobe could perhaps more clear that this is not a serial number of the product below?   "Product code" stands for "Serial number" to most people.

    You use this code (code with letters inside; the "product code") to contact Adobe and check your status of teacher/studen and then they give you the true serial number which is all numbers.  Search your email for mail from Adobe to find your serial number if you have already done this.  I had completely forgotten how the process worked as it was some time ago.

    Thanks for the help Mylenium, I hope this helps those who comes across it in the future.

  • Looking for a particular video tutorial

    Hello

    A month or two ago I briefly watched a video tutorial online that showed the presenter using the chromatic aberration removal tools to help the fringe a selection mask / tree. I forgot to bookmark the video and now I can't find - and since I cleared my browsing history.

    I don't remember if it was a Lightroom or Photoshop tutorial - it could even be for a program or a third-party add-on. I don't remember even what was the main purpose of this tutorial, but I think it was a male host. I searched YouTube, Adobe and elsewhere. Anyone remember what he or she know?

    Tony

    He had to be a PS tutorial as LR is not a selection mask system.

  • You can make a video of your desktop? I have to make a tutorial for my work, and I need to record how a program works

    You can make a video of your desktop? I have to make a tutorial for my work, and I need to record how a program works

    Thanks guys,.

    I have a PC, so I'll try Camstudio.

    Thank you!!!

  • Is there a video tutorial Business Catalyst

    I am looking for a business catalyst tutorial site set up.  I'm having difficulties updating the site.

    You can also check out the documentation below link:

    Videos

    Kind regards
    Radi amin

Maybe you are looking for

  • Problem Bluetooth on the Satellite L750D - 12KO

    Hello I have a problem with my laptop Toshiba Satellite L750 - 12 k. I installed the new Windows 7 Professional x 32 system and installed the drivers. I think the drivers are ok, but my Bluetooth cannot make new connection and research equipment. Inf

  • Nighthawk R7000 does not connect

    I bought this router on July 7, 2015. I was able to set up fine, and it worked perfectly. All of a sudden, it stopped work. It won't send a signal wifi on any of my devices. I run on Windows 8.1. I could connect my old router netgear very well, but I

  • NET Framework 3.5

    Does anyone else have a problem with the NET Framework 3.5 Service Pack 1 and 3.5 Family Update for NET versions 2.0 to 3.5.  It happens on my daily updates, but it won't install... It downloads, but after a while a message saying that it was not ins

  • BlackBerry Smartphones BB guard reboot

    My second torch and it has a problem where it starts and when it restarts continuously its done.  I had flashed once, but he did the thing again.  does anyone have a solution to this.  also I saw how memory cards are in need of repair too. I'll try t

  • No video in wake up

    Twice in the last 2 days, my HP Win7 Pro laptop comes from hibernation with no video.  Drive hard activity stops and I have to turn off to start.  He never did in the first nine months, I've owned it. I did not change any hardware or software, other