Basic tutorial shows a logo in the image of the lighthouse can be easily, folder + place. I don't have 'Place' in my drop-down list. I have 'Embeded Place' and 'bound place '. What I am doing wrong?

Basic tutorial shows a logo in the image of the lighthouse can be easily, folder + place. I don't have 'Place' in my drop-down list. I have 'Embeded Place' and 'bound place '. What I am doing wrong?

You do not have something wrong. January 2014 Photoshop CC update has added the ability to incorporate link GOLD Smart Objects. Before this update Photoshop CC, smart objects are always embedded in the Photoshop document. Although he made the biggest file size, it was as a backup plan because all placed files have been included in the document. Now you have the ability to embed or link the smart object. Link refers to the file instead of actually copying in your current file. Regarding your little tutorial, choose Embed.

Tags: Photoshop

Similar Questions

  • I bought Acrobat Pro DC after a trial and when I go to the to use it says that I need to buy it.  I downloaded and executed.  What I am doing wrong?

    I bought Acrobat Pro DC after a trial and when I go to the to use it says that I need to buy it.  I downloaded and executed.  What I am doing wrong?

    Hey nicolettemunozconsulting,

    Please post on the Adobe forums.

    Once you have downloaded Acrobat Pro DC, begin the 'demo' and provide the Adobe ID (if it is a subscription) or the (if allowed) serial key to activate the software through the Activation dialog box that appears.

    Please see the below link mentioned the same thing:

    Installation and activation of a product to try to buy &

    Let me know if this helps.

    We hope to get your reply.

    Kind regards

    Ana Maria

  • set and get variables - what am I doing wrong?

    I have a relatively small membership and I have almost everything included except a big problem - I need to set a variable and then to retrieve the results. I watched the video of Paul Trani on it and read the docs, and it does everything just for me.

    I have a symbol on the stage with the following code:

    ***************************

    Insert the code for the mouse, click here

    set the answer selected for later correct/incorrect omparison

    var current_selection = sym.setVariable ("CURRENT_SELECTED_EQUATION", "1");

    Alert (sym.getVariable (current_selection));

    ****************************

    When the composition is previewed I simply get "" in the alert.

    What I am doing wrong?

    No, it does not work like that, you should use the key while defining and get as below:

    sym.setVariable var current_selection = ("CURRENT_SELECTED_EQUATION", "1");

    Alert (sym.getVariable ("CURRENT_SELECTED_EQUATION"));

    HTH,

    Vivekuma

  • I try to install CS6 on a particular drive (drive f) but partially, it is installed on the drive c and f.  What I am doing wrong?

    Why the software partially installs on drive c so much f even if I put specific installation on the f drive?

    You can move some of them being installed on the C drive.  It is necessary to do so.

  • I have the pro first, but video effects, popup; I don't have four, eight and sixteen points cache transparency. How can I get these?

    Please, I need help

    Why did cache left in 2015 CC?

  • Can someone tell me what I'm doing wrong when you create a native extension for iPad? (Very detailed)

    My company is developing a game for iPhone and iPad using Flash cs5.5 and Air3.0

    The customer requires that certain features be supported - these things as GameCenter, rating, etc... which none are currently supported by flash for the iOS.

    However, they provide us with a bunch of xCode example files on how they want things to work.

    My idea was to bridge the gap in functionality by creating a native extension using the xcode source that was given to me, giving me the required functionality.

    But first, I need to truly CREATE a native extension, even just a base echo/hello everyone... I followed all the steps of various guides and tutorials and I have managed to create an ipa and put it on my iPad 2 to test, but when the program starts, nothing happens, I find myself with a black screen. When I comment on the lines of code that initialize the extension, it fires just fine.

    (and Yes, I even tried to put things in try blocks where there was a mistake - no luck)

    So I hope that someone can read through the process of what I do below and point out what I am doing wrong, or what Miss me.

    What I use:

    Mini Mac running OS x 10.7.2 - this is used to run xCode 4.1 build 4B 110

    PC - Windows 7 home 64 bit - running Flash CS5.5 (version 11.5.1.3469) with the 3.0 SDK inside AIR. I also have the sdk 3.0 air in a separate file for the command-line running. (This is my primary development platform)

    The PC has flash builder installed, but I've never really used it, and I don't know how to use it... everything that has been built to date has been done using Flash CS5.5

    So, here's what I did.

    The first thing we do is to create a library static .a on mac.

    I open xcode and create a new project.

    • Select iOS framework and library, then select "Cocoa touch static library.
    • Give it a name, in this case "EchoExtension" and put it in a folder.
    • I then delete the file EchoExtension.h as all the samples I've seen so far do not use.
    • I then add 'FlashRuntimeExtension.h' to the project of the AIR3.0 sdk frameworks folder on my PC
    • I remove everything in my folder ".m", and then, next to several different examples and tutorials, type the following code:

    //

    EchoExtension.m

    EchoExtension

    //

    #include "FlashRuntimeExtensions.h".

    Echo FREObject (FREContext ctx, void * funcData, uint32_t argc, {FREObject argv)

    return argv [0];

    }

    //----------- Extention intializer and finalizer ----------------------------------------------------------------------------------------- ------------------------------------------------------------------------------------------ -

    A native context instance is created

    void ContextInitializer (void * extData, const uint8_t * ctxType, FREContext ctx, uint32_t * numFunctionsToTest, const FRENamedFunction * functionsToSet) {}

    Configure the number of functions in this extention

    for ease of reference, set the number of function that will use this extension.

    int FunctionCount = 1;

    set the number of function pointer reference that will use this extention.

    * numFunctionsToTest = FunctionCount;

    create an array to store all the functions that we will use.

    FRENamedFunction * func = (FRENamedFunction *) malloc (sizeof (FRENamedFunction) * FunctionCount);

    create a table for each function entry

    Func [0] .name = (const uint8_t *) "echo"; the name of the function

    Func [0] .functionData = NULL;                    the data type

    Func [0] .function = & echo;             the reference to the real function

    Save the array to a pointer.

    * functionsToSet = func;

    }

    A native context instance is deleted

    void ContextFinalizer (FREContext ctx) {}

    return;

    }

    Initialization of each extension function

    void ExtInitializer (void * extDataToSet, ctxInitializerToSet FREContextInitializer *, FREContextFinalizer * ctxFinalizerToSet) {}

    * extDataToSet = NULL;

    * ctxInitializerToSet = & ContextInitializer;

    * ctxFinalizerToSet = & ContextFinalizer;

    }

    Called when the extension is unloaded

    void ExtFinalizer (void * extData) {}

    return;

    }

    • I'll then 'product', 'building' and it creates libEchoExtension.a
    • I'm copying this .to file on my PC.

    I am now finished with this abandoned mac of God (* shudder *)
    Back on my PC, I create a folder for my test project. For all the intentions a purposes, we will call this "D:\src\EchoExtension" then I create 2 folders, one called "lib" and one called "app". Lib, it's where I'm going to create the actionscript source for my extension.

    • In my lib folder, I create a new fla in flash cs5.5, called "EchoExtension.fla".
    • I create my lib folder, the following:
      • com\extensions\EchoExtension\EchoExtension.as
      • a folder named 'Build' in which I place my libEchoExtension.a file.
    • I have in my EchoExtension.as file, place the following code:

    package com.extensions.EchoExtension

    {

    import flash.events.EventDispatcher;

    import flash.events.IEventDispatcher;

    import flash.external.ExtensionContext;

    SerializableAttribute public class EchoExtension extends EventDispatcher

    {

    protected var _extensionContext:ExtensionContext;

    /**

    * Constructor.

    */

    public void EchoExtension()

    {

    Super();

    Initialize the extension.

    _extensionContext = ExtensionContext.createExtensionContext ("com.extensions.EchoExtension", "main");

    }

    public void echo(Prompt:String):String

    {

    Return _extensionContext.call ("echo") as String;

    }

    }

    }

    • In my main fla, on the first layer of the time line, I put just the following code to make sure that did get file included when I publish the swc.

    import com.extensions.EchoExtension.EchoExtension;

    var ext:EchoExtension = new EchoExtension();

    Stop();

    • I then opened upwards from my fla publication settings, disable the swf - which I don't need, and check the swc and ensure it generates in my generation folder.  «. "/ Build/EchoExtension.swc.
    • I also updated the player Air 3.0 (which I can do because I managed integrated AIR 3.0 along side my AIR 2.6 and can build both without any problem)
    • I then publish the swc. So far so good. No problems.
    • I then made a copy of the CFC and rename it to EchoExtension.swc.zip, how I extracted the library.swf file and place it in the folder of my generation.
    • I then create extension.xml in case of generation that contains the following code:

    " < extension xmlns =" http://ns.Adobe.com/air/extension/2.5 ">

    com.extensions.EchoExtension < id > < /ID >

    < versionNumber > 1 < / versionNumber >

    <>platforms

    < platform name 'iPhone-ARMS' = >

    < applicationDeployment >

    < nativeLibrary > libEchoExtension.a < / nativeLibrary >

    < initializer > ExtInitializer < / initializer >

    < finalizer > ExtFinalizer < / finalizer >

    < / applicationDeployment >

    < / platform >

    < / platforms >

    < / extension >

    • Now, at this point, I'm a little suspicious, because I build for the iPad2... the platform is iPhone... I thought that may be a problem and at some point I have tested the same build on the iPhone4 and had the same results. I also tested using the name of the platform of the iPad-ARM and got the same results... So I don't think that's the problem, but I'm not sure.
    • Now, to make things easier, I created a batch file called "buildane.bat" in my file generation. That's what I use to create my .ane file and it contains the following command line:

    D:\SDKs\AirSDK30\bin\adt-Paquet - target ane EchoExtension.ane extension.xml - CFC EchoExtension.swc - iPhone-ARM library.swf libEchoExtension.a platform

    • I then open a command prompt and run buildane.bat and Ottoman. My donkey is created. My generation file now has the following files in it:
        • buildane.bat
        • EchoExtension.ane
        • EchoExtension.swc
        • EchoExtension.swc.zip
        • extension. XML
        • libEchoExtension.a
        • Library.swf

    Now that I have my swc, donkey and it's time to create my sample application that will be used to test my new extension.

    • I go back to my D:\src\EchoExtension folder and go to the folder app ealier, I created.
    • I then create a new flash project called EchoExtensionTester.fla
    • I open the action script settings, paths to library and add the CFC I created in my D:\src\EchoExtension\lib\build file to my project.
    • On my stage, I create a field called text txtInput, a field of dynamic text named txtEcho, and a couple of buttons called btnClear, btnRuntime and btnEcho
    • I open the first layer of the timeline, and place the following code:

    imports of base.

    import flash.desktop.NativeApplication;

    import flash.events.MouseEvent;

    import flash.text.TextField;

    import the extension of our swc.

    import com.extensions.EchoExtension.EchoExtension;

    the value of our input text to the need the softkeyboard field

    txtInput.needsSoftKeyboard = true;

    Add event handlers to our buttons.

    btnEcho.addEventListener (MouseEvent.CLICK, btnEcho_Click);

    btnClear.addEventListener (MouseEvent.CLICK, btnClear_Click);

    btnRunTime.addEventListener (MouseEvent.CLICK, btnRunTime_Click);

    create our variable expansion.

    var ext:EchoExtension;

    Try

    {

    initialize our extension of echo.

    Ext = new EchoExtension();

    } catch (error) {}

    txtEcho.text = 'Error when trying to create new EchoExtension:\n\n' + e;

    }

    Stop();

    Delete the text echo field

    function btnClear_Click(e:MouseEvent):void

    {

    txtEcho.text = "";

    }

    just to test, put the latest version of the air runtime in our text field, so we can make sure we run air 3.0

    function btnRunTime_Click(e:MouseEvent):void

    {

    txtEcho.text += "\nRuntime version =" + NativeApplication.nativeApplication.runtimeVersion; ".

    }

    call the extension, passing all that is in the text input field and get back and place it in our text echo field

    function btnEcho_Click(e:MouseEvent):void

    {

    txtEcho.text += "\n";

    Try

    {

    txtEcho.text += ext.echo (txtInput.text);

    } catch (error) {}

    txtEcho.text += "\nError call ext.echo:"+ e;»

    }

    }

    • I save the project, Open Air for the parameters of the iOS, then perform the following settings: (Yes, I know... I'll have to use adt to perform the build, but I need to first create the swf file)
      • File: EchoExtensionTester.ipa
      • AppName: EchoExtensionTester
      • Version 1.0
      • Landscape
      • Full screen on
      • Auto orientation is disabled
      • GPU rendering
      • device: iPad and iPhone
      • RES: high
      • Deployment: I use my certificate and profile provisionging that I use for my main project (that works) and defined for the test of the device.
    • I close the window and save again... but before I publish, I opened newly created "EchoExtensionTester - app.xml" which is located in my app folder.
    • I add the extensions <>< extensionID > com.extensions.EchoExtension < / extensionID > < / extensions > to the XML in the file so now it looks like this:

    <? XML version = "1.0" encoding = "UTF-8" standalone = 'no '? >

    " < application xmlns =" http://ns.Adobe.com/air/application/3.0 ">

    <>Extensions

    < extensionID > com.extensions.EchoExtension < / extensionID >

    < / extensions >

    < id > EchoExtensionTester < /ID >

    < versionNumber > 1.0 < / versionNumber >

    < file_name > EchoExtensionTester < / name of the file >

    < description / >

    <!-to locate the description, use the following format for the description element. < description > < text XML: lang = "fr" > App English description goes here < / text > < text XML: lang = "fr" > French App description goes here < / text > < XML text: lang = "ja" > Japanese App description goes here < / text > < / description >->

    < name > EchoExtensionTester < / name >

    <!-to locate the name, use the following format for the name element. < name > < text XML: lang = "fr" > insert here the name App English < / text > < text XML: lang = "fr" > insert here the French App name < / text > < XML text: lang = "ja" > insert here the Japanese App name < / text > < / name >->

    < copyright / >

    < initialWindow >

    < content > EchoExtensionTester.swf < / content >

    standard < systemChrome > < / systemChrome >

    < clear > false < / transparent >

    < visible > true < / visible >

    true < fullscreen > < / full screen >

    landscape of < aspectRatio > < / aspectRatio >

    GPU < renderMode > < / renderMode >

    < maximizable > true < / maximizable >

    < minimizable > true < / minimizable >

    < resizable > true < / resizable >

    < autoOrients > false < / autoOrients >

    < / initialWindow >

    < icon / >

    < customUpdateUI > false < / customUpdateUI >

    < allowBrowserInvocation > false < / allowBrowserInvocation >

    < iPhone >

    < InfoAdditions >

    <! [CDATA [< key > UIDeviceFamily < / key > < table > < String > 1 < / string > < string > 2 < / string > < / array >]] >

    < / InfoAdditions >

    < requestedDisplayResolution > top < / requestedDisplayResolution >

    < / iPhone >

    < / application >

    • I save the changes to the xml file and return to Flash. I then publish.
    • The swf file is created as it should be, but then I get the error message:

    Error creating files.

    A native implementation extension 'com.extensions.EchoExtension' required by the application is not found for the target platform.

    • Now, while it is a pain in the rear, I again, this was going to happen because in my reading tutorials and samples, they have all said that you use adt to build the ipa... but that is fine... all I wanted anyway, was the swf, which I now have in my app folder.
    • I close flash because I no longer need and I create a new batch file: (Note: I have change the name of the cert, profile and password for this post)

    CLS

    "D:\SDKs\AirSDK30\bin\adt" - package - target the ipa-ad-hoc - stores pkcs12 - keystore "D:\src\mycert.p12" - storepass MYPASSWORD-putting into service-profile "D:\src\myprovfile.mobileprovision" "EchoExtensionTester.ipa" "EchoExtensionTester - app.xml" "EchoExtensionTester.swf" - extdir... / lib/Build

    Set dummy = p

    ECHO done

    • I then open a command window in my app folder and run build.bat.
    • I wait about 2 minutes...
    • ...
    • ...
    • YAY! My ipa file was created without error reported so far... Time to copy this bad boy to the iPad and see what happens.
    • I opened iTunes, drag "EchoExtensionTester.ipa" to the applications, then synchronize my device...
    • ...
    • YAY! iTunes installed ipa on the device... and there is a white icon bright and shiney for Echo Extension tester...
    • I open the app... and...
    • nothing.
    • I'm waiting for
    • still nothing.
    • I go to the bathroom.
    • I'll be back... still nothing... just a black screen.
    • I press the home button on the iPad, the app minimized, I restore it... nothing... black screen.

    management of human resources. Time to do some trial and error to see if I can figure out what the distribution.

    • As a test, I opened my fla and I comment out the following lines:
      • Ext = new EchoExtension();
      • txtEcho.text += ext.echo (txtInput.text);
    • I then rebuild the swf... get the same error (don't care)... I then rebuild the ipa using the batch file... and reinstall it on the device when it is made.
    • Exactly the same thing...
    • I opened the xml file... and remove the < extensionID > com.extensions.EchoExtension < / extensionID > line, save and re - run the batch file again... Wait for the ipa ends, then run it on the device.
    • I start the program on the iPad and it starts perfectly... with the exception of the commented line of code actually create and call the extension, everything works as it should. The runtime on the device reports as 3.0.0.4080
    • A test, I opened the .fla save and uncomment the 2 lines, I commented out above... keep the xml file extensionID, I re - publish the ipa... of course, this time, it actually creates the flash API, because the id of the extension is not in the xml file.
    • I put the file API with the extension in place on the ipad code... The fire and make the txtInput text and press the button of the echo. I get the following error:
      • Error calling ext.echo: TypeError: Error #1009
    • I suspect it's because I failed to include the extension in the descriptor... but when I build it with the extensionid in the xml file, I just get a black screen. I'm 99% sure that the context of the extension in the ext object is null (because that's what happens when I run Flash debug without extension lines in the xml)

    And here I am stuck.

    Can someone tell me what I am doing wrong or what I forgot to do?

    Thank you.

    Hi can check you if the CFC of the native extension is linked as external?

    Next image can help locate and change the link type of CFC.

    The issue that many people face here (i.e. extension works fast/interpreter mode and only when they are packed in standard mode) occurs only when the SWC of the NE is not linked externally.

    I hope this helps.

    Kind regards

    Mathyas blabla

    IOS of the AIR

  • Downloaded brushes do not showing on right click in the drop-down list

    I recently reinstalled Photoshop cs5.1 and ran into a problem. My brushes installed is not appear on my right click in the drop-down list. I took old brooms and copied the folder to the new location. When I use these brushes there was once a large drop-down list when I right click anywhere on the canvas. It shows now that the brushes from base, but here's the thing that I can load and see them through the screening Manager, but they are not on my drop-down list, like they were before I reinstalled it.

    I noticed something weird, so this can help the solution I've noticed that some Photoshop files are saved on my second hard drive, but I don't know if this is the cause.

    The reason why I have reinstalled my acceleration is GPU did not work and had to reinstall to fix this. If any other information is needed, I'd be happy to share. It's just a hack my workflow time as I have to load my own brush singlely and if I load them all that I have to go through every single brush to find what I need.

    Thank you!

    I found a solution to my problem, it can help others! I run Windows 7 64-bit has two separate applications files when it is installed. I did a search of windows to one of the names of the available brushes on my right click list. The research showed me where were the brushes. (Example: I searched in windows: DP brushes) Aparently photoshop normally installs like a "32-bit" program at this location, C:\Program Files\Adobe\Adobe PhotoShop CS5.1\Adobe Photoshop CS5.1 (64 Bit) \Presets\Brushes that's where I copied my new brushes to and it showed again. Hope this helps someone who was in my situation!

  • Different calculation based on the drop-down list

    I'm trying to figure out how to change the formula of a derived field in the selection in an adjacent drop-down list.

    For a simple example, trying to find the total amount paid on a loan, would you go Total paid = capital + (main * Int * time). But you may pay more depending on if you pay a fee.

    So what I have works when I enter the formula in the field "Total paid", but trying to integrate the list drop-down for the fees (which is either "Yes" (value = 1) or "No" (value = 2)), I can't figure out how to add the tax, which is $ 50.

    In the drop-down menu, I like an output event:

    Switch (this.rawValue)
    {
    case '1 ':
    totalPaid.rawValue = capital + (Principal * (rate / 100) * time) + 50;
    break;

    case '2 ':
    totalPaid.rawValue = capital + (Principal * (rate / 100) * time);
    break;

    }

    Could someone take a look at this and tell me what I'm doing wrong? I'll post a link to the form that you can see the details (if I do this right!)

    https://Acrobat.com/#d=L7YF3np55Dc7aBOM46qITw

    Thank you!

    Hello

    You just need to use .rawValue to access the value of each object.

    Here is the form to the you: https://acrobat.com/#d=7J3ho * YeHyJzQLK1AEFtWw

    Good luck

    Niall

  • change the width of drop-down list

    I put a list on the form and have a link to the dynamic recordset.

    I want to change the width and height to the smallest, but it seems that it does not change when I change the value of the control.

    I can easily to change the width and height of the text box, but it does not work for drop-down list.

    What size I can change to change the width and the height of the drop-down list?

    Your information and help is much appreciated,

    Kind regards

    Iccsi,

    There is no ownership for this.

    http://www.w3schools.com/tags/tag_select.asp

    Use CSS, instead.

  • update of a drop-down list of QML from C++ fails the first time

    Hey gang,

    I have a function in my C++ class that seeks a couple of drop downs by ObjectName and their Options adds.

    the feature works well - except that when the application first starts, the function cannot find the menu drop-down, then the drop-down list is empty.  At various times during the execution of the application, it refreshes the drop-down list and those all great works.  It is only on the first attempt when the application first starts it fails.

    Here's the function:

    void WorkManager::updateDropDown() {
    //  qWarning() << "WorkManager::updateDropDown(), running..";
    /*
     * this function updates the two drop down lists in the UI
     * it updates them dynamically with the taskName() ('label') of the job.
     * NOTE: for some reason, this doesn't find the dropdown's by name on first start.  however subsequent runs work fine.
     */
        int i = 0;
        QList  myObjects = m_model->toListOfObjects();
        DropDown * dpList = bb::cascades::Application::instance()->scene()->findChild("scriptListDropDown");
        DropDown * logDpList = bb::cascades::Application::instance()->scene()->findChild("logDropDown");
        if (dpList != 0 && logDpList !=0 ) {
            dpList->removeAll();
            logDpList->removeAll();
            for (i = 0; i < myObjects.size(); i++) {
                Task * myTask = static_cast (myObjects[i]);
                myTask->setParent(this);
                dpList->add(Option::create().text(myTask->taskLabel()).value(myTask->command()));
                logDpList->add(Option::create().text(myTask->taskLabel()).value(myTask->taskName() + ".log"));
            }
        } else  {
    //      qWarning() << "WorkManager::updateDropDown(), ---> dpList was 0, try again";
        }
    }
    

    so when the application starts, I get this message of qWarning() and dpList (and logDpList) are both 0.

    I tried the dissemination of calls to this function in various places at the same time the C++ class, so in onCreationCompleted() different signals in the QML IU - as for the homepage, TabbedPane, drop-down menus.

    No matter where and when I call, I can't get the drop-down list to provide information on the first try.

    is there a way to find a way to make this work?  It's (quite) a little annoying.  I wish that the onCreationCompleted() for the drop-down list would work, but alas, no joy.

    Help?

    Thank you!

    J

    Quite simply, if the object is not in the scene tree, you will get a result of findChild. It has not been created or added to the scene.

    You say that you did above in onCreationCompleted of a drop-down list, but this would only guarantee that one of your drop-down menus has been created and your conditional statement requires that both happening simultaneously be non-null. You must run the above, when the two objects are created.

    It seems that you can split the above function to manage separately, the dpList and logDpList after the onCreationCompleted of signals for each drop-down list.

    Note: If you run findChild on the user interface of your entire application, your application has a serious design flaw.

  • Police found during the opening of file and not able to solve, but drop-down list fonts?

    Hi, I just downloaded some files from a friend and he sent me a link to download the fonts. I have done so and 98% of the book of fonts, but there are two fonts, with that I fight.

    When I open the file I get the police lack of attention and it asks me to set the fonts. I can't find the police appropriate in the drop-down list if I click "solve" and begin editing the file. Then I met a text which lack of fonts and I'm able to highlight text and change the text for the police appropriate using the text tool and the font you are looking for is in the drop-down list.

    The fonts that are not working are:

    Franchise "BOLD" and BebasNeue

    The problem is there are several separate incidents where occur these fonts, and passing through each change manually would take a lot of time.

    Is there something I can do to fix all at once?


    Thank you

    Harry

    d9c317be81edbaf79cf4e5225a6f2ca8.png83f707320ba36bdec7b840e37c302791.png

    I don't see the two fonts in the list that show you.  I see Bebas Neue xxx but no Bebas Neue without any additional style. Try Bebas Neue Download Bebas Neue police - thousands of fonts for free download

  • Export the value of the drop-down list of failure

    Hello colleagues!

    I created a simple form using LiveCycle Designer, which consist of two elements of text and drop-down list box:

    The drop-down list is filled with XML data:

    <MyData>
    <country/>
    <countries>
    <item uiname="United States" token="US"/>
    <item uiname="Vietnam" token="SRV"/>
    </countries>
    <state/>
    <US>
    <item>California</item>
    <item>New York</item>
    <item>Texas</item>
    </US>
    <SRV>
    <item>An Giang</item>
    <item>Bac Giang</item>
    <item>Bac Kan</item>
    </SRV>
    </MyData>
    

    Then, I handed the form, received a response and he added in the base file of responses:

    Later, I tried to export the responses, but it freezes. I think that the loop is executed, because I can move the progreess window, I can close the wndow to Adobe Acrobat, but when I try to cancel the export process nothing happens:

    So I discovered that the problem is in the drop-down list populated from XML data and list which is binding against XSD or XML elements.

    I don't know what I should do next.

    Links:

    Simple form. XML data.

    Adobe support confirmed that the problem with dropdown lists bug. Will be fixed in future version.

  • Back in the drop-down list

    Does anyone know if it is possible to wrap a drop down list?  I create a list containing the selections that are terrible for a long time and he would like to return to the line so it displays the entire string instead of starting...

    Hello

    No, a drop-down list can only display each item on one line.

    Niall

  • Print from the drop-down list control

    I have a drop down box with a default value of empty / none.

    If the user has not changed the default, I'd like to drop-down list excluded from printing on.

    Also, as you can see, the box is initially highlighted with a light shade of gray, unless the user changes the value.

    However, the gray shading covers the entire area, including the legend.

    Is it possible to exclude the legend of shading?

    Finally, I wonder if it is possible to limit shading, such that it does not cover beyond the arrow to drop down in the horizontal direction.

    The actual form, drop-down lists will be directly adjacent, and I'd rather than highlighting overlap to the adjacent area.

    Thank you

    Hello

    The pre-press and postPrint are the way to go, I just changed "" with a null value. Also you could apply the shading of the object / field, custom appearance tab.

    Enter the event access to the user interface of the object and change the shade in white:

    VNAME var = this.somExpression; Gets the whole expression of SOM of the object...
    var fieldObj = xfa.resolveNode (vName);

    fld var = fieldObj.ui.resolveNode ("#choiceList"); See the UI below codes
    FLD. Border.Fill.Color.Value = "255,255,255";

    / * Check the type of object and change the .ui reference:

    Field date = #dateTimeEdit
    DropDown = #choiceList
    CheckBox = #checkButton
    Text field = #textEdit
    Digital field = #numericEdit

    */

    A script similar to the output it changes in light gray. You can change the RGB values.

    Finally, I don't think you need the initialization scripts or change.

    Good luck

    N.

  • How to restore the search bar drop-down list and the search engine icon today as it was in version FF 33?

    Some ealier time, I managed to go back to the drop down list via editing about: config and setting browser.search.showOneOffButtons to false.

    But yesterday firefox asked me to improve my search and I agreed. After that, I see ugly new tile instead of the drop-down list.

    How can I go back to find it is old menu drop-down appearance?

    "browser.search.showOneOffButtons" was a temporary pref which lasted from Firefox 34 upward through 42 of Firefox. The underlying code that have supported this preference is gone like Firefox 43.

    https://addons.Mozilla.org/en-us/Firefox/addon/classicthemerestorer/ has an option for old search (experimental) in Options of CTR > UI (1)

Maybe you are looking for

  • reopen the closed windows

    After closing a window, I'll more later to open a new window, but it opens again the window I initially closed before, including the history of the page.Why my windows do not open to my home page?It's new. I have not changed the settings and I can't

  • Essential Apple apps are no longer free?

    I bought an iPhone in December of 2014 5s and an iPad 2 Air last week. I just noticed that Garageband, iMovie, Keynote, and Numbers were no longer free. I have Pages (a currently $9.99 app) that I got for free because of my iPhone 5s, and I know the

  • Qosmio F50 - cannot turn off microphone on Windows 7

    Since installing windows 7, the microphone on my laptop seems to be permanently. Which is really bloody annoying when you go to your music and you get a very high feedback sound height. If anyone has had this problem or can anyone help? also the Fn k

  • Blu ray software

    I bought a computer laptop dv6-3013nr with HD dvd player. Is it possible to rank up to system software for a blu ray dvd player player? How can I do this if possible Thank you.

  • Almost all cases no matter what programs run almost 100% of the CPU running.

    Hey guys I have a problem I could use some help with. I have a Dell Studio 1555 laptop Windows Vista Edition Home Premium 64-bit 4 GB of Ram Intel Duo Core T6500 @ 2.1 GHZ I've had this laptop over a year now and it works perfectly but around a week