Flash Paper as individual page swfs

I'm trying to turn a large pdf (~400 pages) into individual
Flashpaper pages. Is it possible to have Flashpaper spit them out
as individual pages or alternatively use Flash to pull each page
out of the FlashPaper interface. I want to be able to manipulate
each page individually and build my own user interface so the
standard FP controls are in the way.
Any thoughts?

http://www.google.co.uk/search?source=ig&hl=en&rlz=1G1GGLQ_ENUK327&q=flash+paper+%2B+mac&b tnG=Google+Search&meta=lr%3D
iPaper: http://www.scribd.com/ipaper?gclid=CPrIje6Wp5oCFRSRZgodYnwQ1w

Similar Messages

  • Flash Paper Problem

    What is Adobe thinking -- have they lost all tract of
    educational needs?????
    I bought Macromedia Studio just for Flash Paper and now it
    doesn't yet work with MS Vista. It HAS TO Work. I have no intention
    of ever using the Contribute as I don't need it -- but I (I should
    say all math/science online teachers using equations) need Flash
    Paper.
    Our online mathematics courses REQUIRE Flash Paper for
    equation pages to open properly in Blackboard Vista!!!!!!!!!!
    I am not downgrading a new computer to XP and not have the
    right drivers because of such a anti-educational decision.
    Can anyone help? Is the management listening?
    Mary Dwyer Wolfe, Ph.D.
    Macon State College
    University System of Georgia

    hi mary,
    i think the reason why its not supported in vista is that
    when flash paper 2 was released vista is not yet in the market so
    they had no way to check its compatibility with anyways maybe we
    can suggest this as a feature request on their wishform.
    I pasted the link below for flash paper feature request.
    http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform&product=18
    I have already written a request = ) lets just hope they do
    upgrade flash paper so it will work on vista.
    -jay

  • Linking to individual flash paper pages

    I need to display a flash paper doc on a webpage that opens
    on specific pages, any ideas.
    Thanks.

    Hi,
    I dont think what you want is possible, the whole idea of a portlet is that its part (building block) of a page and not being a webpage by itself.
    There are perhaps some workarounds
    - try displaying the portlet in detail modus
    - perhaps create a hybrid portlet, that is a servlet & portlet at the same time
    In one of my portlets im also linking to a portlet on another page. I keep the durable link of the page where the second portlet resides as a setting in my database

  • Does Flash Paper support the PDF Bookmark functionality inside SWF?

       Does Flash Paper support the PDF Bookmark functionality inside SWF?

    I don't think you will be to happy with this, but I think it
    does not come with the Web Premium CS3 for the Mac:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_16582#flashpaper

  • Loading Flash Paper swf causes all other button events to fail

    Hi Everyone,
    I have created a project with Flash which I am using Zinc to publish as a projector for both Macs and Pcs. Now, in this app I am loading a pdf document converted to a Flash Paper swf. The moment I load this swf file into my project, it appears as though all other button events fail. If I remove the code which loads in the flash paper swf, all buttons function as expected.
    Can anyone please help me with a reason / solution for this?
    Any help is greatly appreciated!
    Cheers!

    Did that and there were no errors shown at any point, such as when publishing the .apk file.
    I found a solution. I was under the impression I needed to use touch events for it to work on a tablet, and changing those to normal mouse events solved the problem. Still not sure why it wouldn't work the other way, but for now it works as needed.
    Thanks!

  • SEGURIDAD EN SWF GENERADO CON FLASH PAPER

    Hola foro, he generado un swf de un documento de word con
    Flash Paper. Hasta aquí todo va bien, cuando lo llamo desde
    Flash me funciona sin problema, sin embargo las opciones de
    seguridad como no permitir impresión, no permitir copiado y
    demás no aplican. Me permite hacerle de todo. Como puedo
    restringir dichos permisos.
    Gracias,
    JULIAN CASTIBLANCO P.
    BOGOTA, COLOMBIA

    I think the commands "getURL" are fine, as I tried to send myself the SWF file by mail and from my home computer could browse the web perfectly. So, if from my work computer and from my house file works perfectly the problem must be on the other computers in the office.
    I used the flasdrive to check with other projects I had at home if those office computers could reproduce well other projects made with "getURL" and through that I found not.
    These computers have the latest flash player version.

  • Dimensiones de SWF usando Flash Paper

    Hola amigos, soy nuevo en este foro y quisiera que me
    ayudaran a resolver un problemita que tengo. Estoy implementando
    una aplicación flash para un cd card el cual contendrá la
    memoria anual de una institución. He usado el Flash Paper 2
    para convertir mi archivo PDF a SWF. Dentro de mi aplicación
    flash cargo el archivo SWF externamente, pero al momento de
    ejecutar la pelicula me muestra el archivo SWF en dimensiones
    pequeñas, el cual no es muy claro para poder leer. ¿
    Cómo podria hacer para asiganarle las dimensiones de este
    archivo SWF que cargo externamente?
    Espero que me puedan ayudar, ps lo necesito con suma
    urgencia.
    Gracias de antemano
    Atte
    Jonhwww

    Cuando hago CDs con muuuucha documentación, lo cual es
    bastante a menudo
    para la web de e-learning que llevamos, o para los balances
    de gestión
    anuales de algunos ayuntamientos, personalmente utilizo mucho
    Flash Paper 2.
    Tengo algunas funciones ya preparadas en AS que cargan los
    documentos swf de
    Flash paper en un mc contenedor de mi película flash
    principal, adaptándolos a un tamaño
    específico. Después o bien utilizar
    botones o componentes combo que carguen los diferentes swf
    externos.
    Se puede cargar un swf generado de Flash Paper en el
    tamaño que quieras,
    siempre que le des al movieclip de destino el tamaño que
    necesites. Como
    adelanto, mediante esta función, se carga el swf ya
    convertido de flash
    paper y se adapta al tamaño del contenedor (estoooo, con
    flamx2004, que
    conste que no lo he programado yo...) :
    function loadFlashPaper (
    path_s, // path of SWF to load
    dest_mc, // MC which we should replace with the SWF
    width_i, // new size of the dest MC
    height_i ) // new size of the dest MC
    var intervalID = 0;
    var loadFunc = function()
    dest_mc._visible = false;
    var fp = dest_mc.getIFlashPaper();
    if (!fp)
    return;
    if (fp.setSize(width_i, height_i) == false)
    return;
    dest_mc._visible = true;
    clearInterval(intervalID);
    loaded_o.onLoaded(fp);
    intervalID = setInterval(loadFunc, 100);
    dest_mc.loadMovie(path_s);
    Y la orden de carga:
    on (press) {
    _root.recomienda.gotoAndStop(1);
    unloadMovie(contenedor2);
    loadFlashPaper("swfs/tu_documento.swf", contenedor, 719,
    701);
    Salu2
    "Jonhwww" <[email protected]> escribió
    en el mensaje
    news:[email protected]...
    > Hola amigos, soy nuevo en este foro y quisiera que me
    ayudaran a resolver
    > un
    > problemita que tengo. Estoy implementando una aplicaci?n
    flash para un cd
    > card
    > el cual contendr? la memoria anual de una instituci?n.
    He usado el Flash
    > Paper
    > 2 para convertir mi archivo PDF a SWF. Dentro de mi
    aplicaci?n flash cargo
    > el
    > archivo SWF externamente, pero al momento de ejecutar la
    pelicula me
    > muestra el
    > archivo SWF en dimensiones peque?as, el cual no es muy
    claro para poder
    > leer. ?
    > C?mo podria hacer para asiganarle las dimensiones de
    este archivo SWF que
    > cargo
    > externamente?
    > Espero que me puedan ayudar, ps lo necesito con suma
    urgencia.
    >
    > Gracias de antemano
    >
    > Atte
    > Jonhwww
    >
    >

  • Installing Studio 8, I could convert web pages/pdfs/.docs to flash paper CS3 I can't?

    If so, we need to bring it back, I used it as part of my
    workflow for clients. Some clients give me articles they've
    appeared in in the newspaper. Flashpaper was a great way to post
    the article in a printable format that wasn't pdf which I feel is a
    lot better/faster loading.
    Also, taking a .doc file into flash paper was awesome as
    well! please help me! somebody help me! I'll even pay for
    flashpaper functionality/exportability!
    -Line

    Although I don't think there was anything
    “official” it seems clear to most that Adobe no longer
    has any plans for Flash Paper.
    I believe you can still buy Flash Paper 2 as a standalone app
    however.
    I went with Print2Flash which has a tad more flexibility than
    Flash Paper 2 for about the same price.
    It is a great tool and maybe Adobe will release something
    better but if that's the plan they are keeping it very close to the
    vest.

  • Can't See Flash Paper Document

    First, my appologies if this has been mentioned before. I couldn't find it so I posting it.
    I just installed Flash Paper2. Converted a Word document to PDF and draged it to Flash Paper2's window. It loaded fine. I then saved it as a SWF.
    It looks great. The load it into a page via Dreamweaver. The preview test looks winderful.
    I Upload all the required files online for the public to view it. But nothing comes up. Instead it says I need a new version of Flash Player (which I already have. That was Friday. Today, I have a white box in FireFox. And in IE, it's the same white box, but now the original (non-Flash Paper) Flash at the top is missing as well.
    To make matters use, a very simple Flash SWF I've made dozens of times is now not loading. It also says I need to update. But I Already Did! This simple flash is just three flyers that swap places every 100 frames. No reason for it to need updateing. The Flash I created (in the exact same program) still works on the page, but not the new one.
    What's going on?! I can see Flash Paper SWFs and normal SWFs just fine on other sites. Just not the one I'm working on.
    Here the link to the Flash Paper page:
    http://www.dlhenry.com/MediaKit.html
    Please help.

    Windows has a few graphics formats not supported by Mac OSX, such as .emf, probably the graphs are in an unsupported format.
    OpenOffice is very compatible with MsOffice, if it opens the files correctly you might be able to copy and paste the graphs over. They will probably turn into .pdf graphics in the process.
    Failing that make a screen snap of them using +command shift 4+ drag around the image and look for the subsequent file on your desktop.
    Peter

  • Flash Paper Toolbar Buttons

    I use Flash Paper 2 regularly to print documents from
    Microsoft Access. In Word and Excel there is a toolbar button for
    Flash Paper but none in Access, and there is nothing available in
    the list of tools to add to a custom Access toolbar.
    Is there any way to get a toolbar button for Flash Paper in
    other applications such as Access?
    Thanks

    Thanks Urami! This worked. However, there is still one set of
    buttons that still don’t work. These buttons are programmed
    to open a new window that is a specific size and has all the
    toolbars and menu bars turned off. The html page that opens in the
    window contains an swf file that runs a video.
    Again, it works perfectly over the Internet or when I test
    the html page from Dreamweaver on my PC, but the window will not
    open when the button is pressed if the program is running from a
    CD.
    This program was originally created with Studio MX 2004 with
    Flash Professional. With that version, the CD worked on Windows
    2000 PCs but not Windows XP. We re-published the entire program
    with Flash Professional 8. Once I fixed the file names as you
    suggested, everything works except the buttons that open a child
    window. Now these buttons in the Version 8 program don’t work
    on a CD running on Windows 2000 either.
    Here is the code that I have in Flash movie for the button:
    on (release) {
    getURL("javascript:newWindow('videowin_turnassist.html')");
    Here is the code that I have in the html document:
    function newWindow(bookgif) {
    bookWindow = window.open(bookgif, 'bookWin',
    'toolbar=no,location=no,menubar=no,scrollbars=no,resizable=no,width=400,height=425')
    bookWindow.focus()
    I got this html code out of a reference book several years
    ago and we use it all the time to open child windows from parent
    windows.
    I tried other code that I got out of an ActionScript book and
    from the Help files, but I can’t get any of it to work at all
    (not even from Dreamweaver).
    Do you have any other suggestions for opening a specifically
    sized child window that will run a Flash movie?
    TIA
    Diane

  • Output individual pages?

    Is it possible to output individual pages with Flashpaper
    from MS Word and still preserve text hyperlinks?
    I find that you can use Print to output individual pages when
    you select Flashpaper as the "printer" but it loses the links.
    My objective is to create pages in MS Word and output
    separate SWF files to be loaded into another FLash movie.

    P Spier wrote:
    InDesign certainly has much better typography than Photoshop, and better control over placing and cropping/scaling multiple images, in my opinion, because that's what it is designed to do. Are you certain the RIP won't accept PDF data? I didn't see anything on the website that discussed file formats
    I really appreciate your thoughts on this thought -- I want to do it the best way possible -- though it seems like there is no best way given the issues.
    There is one line of type, so this is not about the typography -- though in the past I have done similar projects with more type which has been fine with the files created in PS and print with this RIP and printer. It's much more about the photography. I appreciate InDesign may be better for placing multiple images that is why I have been thinking about buying it to do this. I used to do this work with another page layout program and to get the output ripped those files with PS to create a TIF I could print. Ugh! I saw the type was degraded too, though ok for that, and that is partly why I switched to doing this in PS.
    ImagePrint, per my post above, will not print PDF files unless I add the optional print through application (additional cost) and then border less printing is not supported (want borderless).
    Are all of the images in the same color space? If not it might make more sense to composite the pages in the RIP itself, if you can. The problem with using a raster format, even converting a high quality PDF exported from ID, is that you degrade the type.
    Peter
    Most of the images are in Adobe 1998 but some are in ProPhoto RGB (coming from Lightroom) and in any case will convert them all to Adobe 1998 when placing them in PS files. I don't think the layout tools in the RIP, while quite good, are nearly as good as what I can do with PS.
    Thanks! Any more thoughts greatly appreciated.

  • Flash Paper dans un document flash

    Allo tout le monde,
    J'ai converti mes fichiers pdf en flash paper 2 format swf :
    ça au moins c'est très facile !
    Méthode: - Ouvrir un fichier pdf
    - Aller à la fonction imprimer
    - Choisir l'imprimante qui est Flash Paper 2 et pouf !, tout
    ce fait automatiquement.
    - On choisit le format de fichier, .swf ou pdf. que l'on
    désire.
    Bon tout est beau jusqu'à ce point mais là...
    J'ai un document flash déjà créer avec un
    menu déroulant et des clips divers associés aux
    différents boutons du menu déroulant. J'ai besoin
    d'importer un de ces fichiers converti en flash paper dans mon
    application flash et je n'y arrive pas.
    Dans aide Flash paper 2, il y a une page de code à ce
    qu'il faut faire pour arriver à importer un fichier flash
    paper dans flash. J'avoue que je n'y comprend pas grand chose. Je
    ne suis pas vraiment une programmeuse. Voici le code, si quelqu'un
    pourrait m'expliquer ce que ça veut dire et à quel
    endroit l'appliquer. Je marque des notes à ce que je ne
    comprend pas. Alors voici:
    Texte intégrale du flash paper 2 dans aide
    Utilisation de FlashPaper avec Macromedia Flash
    Vous pouvez insérer un fichier SWF FlashPaper dans un
    fichier FLA Flash. Lorsque vous exportez le fichier FLA dans SWF,
    le fichier SWF FlashPaper est incorporé comme partie du
    fichier SWF Flash exporté.
    Le code suivant indique comment charger un fichier SWF
    FlashPaper dans un fichier FLA normal à l'aide de la fonction
    loadFlashPaper() : ( à quel endroit inscrit-on ce code? au
    frame 1 du document flash ou au frame 1 d'un clip vide ou ???)
    function loadFlashPaper(
    path_s, // path of SWF to load
    dest_mc, // MC which we should replace with the SWF (est-ce
    que je dois créer un clip ? )
    width_i, // new size of the dest MC
    height_i, // new size of the dest MC
    loaded_o) // optional: object to be notified that loading is
    complete
    var intervalID = 0;
    var loadFunc = function()
    dest_mc._visible = false; ( est-ce que dest_mc est le nom
    que je dois donner à un clip?)
    var fp = dest_mc.getIFlashPaper(); ( fp ( est-ce le nom de
    mon document flash paper ?)
    if (!fp) (getFlashPaper ( est-ce le nom de mon document
    flash paper? )
    return;
    if (fp.setSize(width_i, height_i) == false) ( est-ce que je
    dois donner une grandeur, largeur ?)
    return;
    dest_mc._visible = true;
    clearInterval(intervalID);
    loaded_o.onLoaded(fp);
    intervalID = setInterval(loadFunc, 100);
    dest_mc.loadMovie(path_s);
    Le code suivant indique comment vous pouvez utiliser la
    fonction loadFlashPaper() après avoir incorporé un
    fichier SWF FlashPaper : ( à quel endroit on indique ce code?
    Dans le clip lui-même sur une frame 1 ou sur le frame 1 du
    document flash? )
    function onLoaded(fp)
    // loading is complete, so we can now adjust the current
    page, zoom, etc.
    // go to page 50.
    fp.setCurrentPage(50);
    // change magnification to 33%
    fp.setCurrentZoom(33);
    loadFlashPaper("FlashPaper.swf", theDocMC, theDocMC._width,
    theDocMC._height, this);
    La valeur fp.setCurrentPage a été définie sur
    50 et la valeur fp.setCurrentZoom sur 33. Lorsque vous exportez le
    fichier FLA, la page 50 du fichier SWF FlashPaper incorporé
    apparaît à l'intérieur du fichier SWF exporté
    avec un agrandissement de 33 %.
    Donc à l'aide de ces codes, il serait bon de faire un
    exemple pas à pas concret comment on intégre cela dans un
    document flash.
    Alors j'attendrai la réponse de celui ou celle qui veut
    bien relever le défi que de répondre à cette
    question un peu compliquée.
    Un Gros Merci d'avance !
    Nurse 1

    J'ai trouvé la solution dans la documentation en
    englais. Après l'avoir essayer, ça fonctionne.
    Alors voici je joins le code: attach code à ce document.
    C'est un pas à pas. En espérant que cela peut
    aider d'autres personnes.
    À une prochaine !
    Nurse 1

  • Major Questions about Flash Paper 2.0

    Ok, I've been fiddling around with flash paper 2 over the
    last few days. Like it a lot for my non-technical users..however, I
    have a few questions. Hopefully someone can answer soon. Ok, I have
    a main swf and in there I'm using a script I found (person who
    wrote it, last name: Whitehouse) on the Net which allows me to load
    a flash paper file from within that main swf along with some
    control on some interface features. Here it is:
    onClipEvent (load) {
    // function: loadFlashPaper
    // Parameters:
    // path_s: path of SWF to load
    // dest_mc: Movie clip to hold the imported SWF
    // width_i: New size of the dest movie clip
    // height_i: New size of the dest movie clip
    // loaded_o: (optional) Object to be notified that loading is
    complete
    function loadFlashPaper(path_s, dest_mc, width_i, height_i,
    loaded_o) {
    var intervalID = 0;
    var loadFunc = function(){
    dest_mc._visible = false;
    var fp = dest_mc.getIFlashPaper();
    if (!fp) {
    return;
    } else if (fp.setSize(width_i, height_i) == false) {
    return;
    } else {
    clearInterval(intervalID);
    dest_mc._visible = true; // Now show the document
    loaded_o.onLoaded(fp);
    intervalID = setInterval(loadFunc, 100);
    dest_mc.loadMovie(path_s);
    // Function called once the FlashPaper SWF is embedded:
    function onLoaded(fp) {
    // We can now call the FlashPaper API functions.
    // Remove the standard user interface features:
    fp.showUIElement("PrevNext", false);
    fp.showUIElement("Print", false);
    fp.showUIElement("Find", false);
    fp.showUIElement("Tool", false);
    fp.showUIElement("Pop", false);
    fp.showUIElement("Zoom", false);
    fp.showUIElement("Page", false);
    fp.showUIElement("Overflow", false);
    fp.showUIElement("useHandCursor", false);
    fp.enableScrolling(true);
    // Some additional API features (here commented out):
    // Go to page:
    // fp.setCurrentPage(3);
    // Change the magnification to 50%:
    // fp.setCurrentZoom(50);
    // Now we're ready to start
    // Create the destination movie clip to hold the SWF:
    var theDocMC_mc = _root.labserviceworkclip;
    // Position it on the stage:
    theDocMC_mc._x = 15.4;
    theDocMC_mc._y = 211.8;
    //theDocMC_mc.useHandCursor = false;
    // Load the FlashPaper SWF into the clip,
    // size it, and trigger the onLoaded() function:
    loadFlashPaper("labservicework.swf", theDocMC_mc, 730, 510,
    this);
    //_root.miningprojectspopup.hidecontainer.loadMovie("19a.swf");
    Now, is it possible to:
    1.) Remove the hand curser?
    2.) Remove the Flash Paper splash that appears before the swf
    is loaded? Maybe replace it with loader bar?
    3.) Control color of scrollbar (like you can on flash
    components)
    4.) The main swf is set to transparency, but if make
    background color in Word doc a color, that color does not show up.
    Why?
    4.) In Word, I want to create multiple pages that appear
    seamless when scrolling down in the swf file. however, can't to get
    that to work. Has anyone tried this? I'm open to any option such as
    using tables inside my Word docs (am trying that now but still not
    working).
    5.) I created an 8 page document in Word 2003 and saved it as
    swf BUT am getting this "Printer Failed.." response. If I do pages
    smaller in number, works fine. What's going on with that. I also
    have installed CutePDF installed..could that be screwing it up?
    6.) I want to include anchors inside the swf file so that at
    the click of a button, I can automatically move the scroll up or
    down. Any idea how to do that?
    7.) I want to inlude links inside the swf file to navigate to
    different frames inside main swf. Is that possible?
    8.) When creating hyperlinks in Word to swf file, (yes, I
    chose correct target frame), the page doesn't appear to open into a
    new window. What's up with that?

    First off I would recommend buying the non academic full version for $20 more because its worth it. So when Aperture 2.5 or 3 comes out, you do not have to pay the full price for it.
    As for your library, make a backup if you want, but all you need to do after installing a licensed version of Aperture 2 is go to your previous library and then select "open with..." then chose Aperture 2 (default)
    Once you do that you will receive a message stating that "once your library has been updated, it will not open in previous versions of Aperture, do you wish to continue?"
    After you do that your library will be fully imported into Aperture 2 exactly as it was in the previous versions of the program.
    Hope that helps.

  • Insert as flash paper

    Hi. I am looking for a way to convert pdf files to swf. I saw
    in an Adobe tutorial on Contribute that this can be done by first
    inserting document as flash paper. I do not have this "insert as
    flashpaper" option. Does anyone else have this option missing from
    their insert dropdown menu? I am working on a Mac 10.411,
    Contribute CS3 (from the web premium suite). I have written to
    Adobe about this missing feature last week but have not heard back
    from them. Is there something else I need to install besides the
    default install? My ultimate goal is to get the pdf pages into a
    flash movie, so if anyone has another idea how to do this, please
    let me know. Thanks!

    I don't think you will be to happy with this, but I think it
    does not come with the Web Premium CS3 for the Mac:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_16582#flashpaper

  • [FLA] Visor  Similar  a Flash Paper

    Buen dia amigos, resulta que ando en la busqeda de un
    componente o
    visor que permita tener las mismas opciones de flash paper,
    pues
    lastimosamente no he logrado de ninguna forma enviar mensajes
    de flash
    paper a lingo para controlar unos elementos desde director.
    agradeceria
    cualquier link que me sirviera de ayuda para solucionar mi
    problema. un
    saludo!!

    Existen algunas alternativas a Flash Paper. Una de ellas es
    SWFTools:
    http://www.swftools.org/, que
    es un conjunto de aplicaciones que, entre
    otras cosas muy útiles, tiene una utilidad que te
    convierte de PDF a SWF.
    También hay un par de aplicaciones que te convierten de
    PDF a SWF
    http://myvirtualpaper.com/?gclid=CL365b6Kv4sCFQ3dlAodomIHxA
    http://www.pagegangster.com/
    Son aplicaciones que te convierten tus docuemntos PDF en una
    presentación
    Paginada de Flash, rollo Flip page.
    Pero no se si nada de esto te puede servir para conectar con
    lingo...
    Salu2
    "mutantexx" <[email protected]> escribió en el
    mensaje
    news:evmpau$pb1$[email protected]..
    > Buen dia amigos, resulta que ando en la busqeda de un
    componente o
    > visor que permita tener las mismas opciones de flash
    paper, pues
    > lastimosamente no he logrado de ninguna forma enviar
    mensajes de flash
    > paper a lingo para controlar unos elementos desde
    director.
    > agradeceria cualquier link que me sirviera de ayuda para
    solucionar mi
    > problema. un
    saludo!!
    >
    >

Maybe you are looking for

  • Trying to log on sap biw 3.0 from sap r/3

    Dear sap professionals, this is suresh, i am trying to logon to sap BIW 3.0 from sap r/3, to do this i used the proper Tcode. but the issue is i am getting the error message "name or password incorrect please reenter". any body knows how to make the

  • Not able to connect with Ethernet, new Pavilion dv5-4122ca​, realtek pci-e gbe ethernet controller

    When cable is plugged in, Network device still shows as that Network cable is unplugged. Driver was installed and reinstalled, cable was tested and all settings were checked and work with other laptops. Exception is that it can connect when directly

  • Serial Key not working for Adobe Creative Suite 5 Design Premium

    I have the serial key for my Adobe Creative Suite 5 Design Premium that I bought in 2011 on my account page. However, when I put the serial number in the installer, it says "This serial number is not valid for this product." I just want access to the

  • Radio button in module pool

    In ordinary report programs, if we want to change screen value according to the selection of radion button, we use user command and at user command options. But how do i do it in module pool programming. Like in module pool if i select one radio butt

  • FRM-92101: Failure in the Forms during Startup

    I have Forms 10g version 9.0.4.0.19 The runtime is running locally on my machine. I have a form containing a tabbed canvas. I had a problem with one of the data blocks on one of the tab pages. That has been fixed but I still receive the FRM-92101 err