Widget will not insert

Working with Dreamweaver and Flash software.  Using a template, couldn't get flv videos to insert correctly, got a white blank box at the tested website.  Finally downloaded widget as a solution, now widget will not insert.  It appears on the insert menu, I put the cursor in the insertion point and click on widget, and nothing happens.  I don't get the pop up widget box, I get nothing.  At my wits end.  Please help.  Working on thesis project and deadline coming up soon.

After I posted, I noticed a similar post below.  Couldn't reinstall Dreamweaver as I have a thesis project I've been working on for awhile stored there.  Saw the fix to go to preferences and general and the problem was on the unchecked box to show dialog upon insertion.  Once I checked that box, the widget pop up worked.  Can't believe I have spent hours of wasted valuable time trying to figure this out.  Thanks!

Similar Messages

  • Brand new iMAC, Mountain Lion installed, dashboard widgets will not download. Webpage times out. Any suggestions?

    Just purchased a brand new iMAC and sucessfully performed download and install of Mountain Lion (free upgrade). Discovered that dashboard widgets will not download as webpage times_out in both Safari and Firefox. Already set security to allow downloads from 'anywhere' but with no change. Downloads from anywhere else works fine, just widgets won't work, and I've been trying for several days now. Any suggestions? (firewall is off).

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico, Spanish is my native tongue. I do not speak English very well, however, I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    1-800-MY-APPLE
    (1-800-692-7753)

  • I purchased the Logitech F310 game controller for my 2011 MacBook Pro. How do I get the driver installed for it. The Disk that came with the controller is a mini disk and will not insert into my laptop.

    I purchased the Logitech F310 game controller for my 2011 MacBook Pro. How do I get the driver installed for it. The Disk that came with the controller is a mini disk and will not insert into my laptop.

    May not make a difference anyway. The Logitech support site does not show drivers for Mac OS for the F310:
    http://www.logitech.com/en-us/support/gamepad-f310?crid=411
    I'd contact their support to find out if there is a Mac driver available, and if they can either give you a web link to get it, e-mail you the software, or snail-mail you a standard-size disk with the drivers.

  • SQLJ classes (Will not insert result into table)

    /*@lineinfo:filename=SqljCircle*//*@lineinfo:user-code*//*@lineinfo:1^1*/import java.sql.SQLException ;
    import oracle.sqlj.runtime.Oracle;
    // iterator for the select
    /*@lineinfo:generated-code*//*@lineinfo:5^1*/
    // SQLJ iterator declaration:
    class myIter
    extends sqlj.runtime.ref.ResultSetIterImpl
    implements sqlj.runtime.NamedIterator
    public myIter(sqlj.runtime.profile.RTResultSet resultSet)
    throws java.sql.SQLException
    super(resultSet);
    RadiusNdx = findColumn("Radius");
    public int Radius()
    throws java.sql.SQLException
    return resultSet.getIntNoNull(RadiusNdx);
    private int RadiusNdx;
    /*@lineinfo:user-code*//*@lineinfo:5^33*/
    class SqljCircle
    //Main method
    public static void main (String args[])
    try {
    // set the default connection to the URL, user, and password
    // specified in your connect.properties file
    Oracle.connect(SqljCircle.class, "connect.properties");
    SqljCircle ti = new SqljCircle();
    ti.runExample();
    } catch (SQLException e) {
    System.err.println("Error running the example: " + e);
    } //End of method main
    //Method that runs the example
    void runExample() throws SQLException
    myIter iter;
    /*@lineinfo:generated-code*//*@lineinfo:28^1*/
    // #sql iter = { select radius from RADIUS_VALS };
    sqlj.runtime.ConnectionContext __sJT_connCtx = sqlj.runtime.ref.DefaultContext.getDefaultContext();
    if (__sJT_connCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_CONN_CTX();
    sqlj.runtime.ExecutionContext __sJT_execCtx = __sJT_connCtx.getExecutionContext();
    if (__sJT_execCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_EXEC_CTX();
    synchronized (__sJT_execCtx) {
    sqlj.runtime.profile.RTStatement __sJT_stmt = __sJT_execCtx.registerStatement(__sJT_connCtx, SqljCircle_SJProfileKeys.getKey(0), 0);
    try
    sqlj.runtime.profile.RTResultSet __sJT_result = __sJT_execCtx.executeQuery();
    iter = new myIter(__sJT_result);
    finally
    __sJT_execCtx.releaseStatement();
    /*@lineinfo:user-code*//*@lineinfo:28^45*/
    while (iter.next()) {
    // To see the radius values:
    System.out.println(iter.Radius());
    int radInput = iter.Radius();
    double result=area(radInput);
    // To see the result values:
    System.out.println(result);
    /*@lineinfo:generated-code*//*@lineinfo:38^1*/
    //#sql { insert into RADIUS_VALS values(:radInput,:result) };
    sqlj.runtime.ConnectionContext __sJT_connCtx = sqlj.runtime.ref.DefaultContext.getDefaultContext();
    if (__sJT_connCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_CONN_CTX();
    sqlj.runtime.ExecutionContext __sJT_execCtx = __sJT_connCtx.getExecutionContext();
    if (__sJT_execCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_EXEC_CTX();
    int __sJT_1 = radInput;
    double __sJT_2 = result;
    synchronized (__sJT_execCtx) {
    sqlj.runtime.profile.RTStatement __sJT_stmt = __sJT_execCtx.registerStatement(__sJT_connCtx, SqljCircle_SJProfileKeys.getKey(0), 1);
    try
    __sJT_stmt.setInt(1, __sJT_1);
    __sJT_stmt.setDouble(2, __sJT_2);
    __sJT_execCtx.executeUpdate();
    finally
    __sJT_execCtx.releaseStatement();
    /*@lineinfo:user-code*//*@lineinfo:38^51*/
    /*@lineinfo:generated-code*//*@lineinfo:39^1*/
    //#sql { commit };
    sqlj.runtime.ConnectionContext __sJT_connCtx = sqlj.runtime.ref.DefaultContext.getDefaultContext();
    if (__sJT_connCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_CONN_CTX();
    sqlj.runtime.ExecutionContext __sJT_execCtx = __sJT_connCtx.getExecutionContext();
    if (__sJT_execCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_EXEC_CTX();
    synchronized (__sJT_execCtx) {
    sqlj.runtime.profile.RTStatement __sJT_stmt = __sJT_execCtx.registerStatement(__sJT_connCtx, SqljCircle_SJProfileKeys.getKey(0), 2);
    try
    __sJT_execCtx.executeUpdate();
    finally
    __sJT_execCtx.releaseStatement();
    /*@lineinfo:user-code*//*@lineinfo:39^13*/
    iter.close();
    // Utility function to calculate the area
    public static double area (int rad) {
    double pi=3.1415926;
    double areacircle=pi*rad*rad;
    return areacircle;
    }/*@lineinfo:generated-code*/class SqljCircle_SJProfileKeys
    private static SqljCircle_SJProfileKeys inst = null;
    public static java.lang.Object getKey(int keyNum)
    throws java.sql.SQLException
    if (inst == null)
    inst = new SqljCircle_SJProfileKeys();
    return inst.keys[keyNum];
    private final sqlj.runtime.profile.Loader loader = sqlj.runtime.RuntimeContext.getRuntime().getLoaderForClassT(getClass());
    private java.lang.Object[] keys;
    private SqljCircle_SJProfileKeys()
    throws java.sql.SQLException
    keys = new java.lang.Object[1];
    keys[0] = sqlj.runtime.ref.DefaultContext.getProfileKey(loader, "SqljCircle_SJProfile0");
    This SQLJ class compiles and runs ok, it retrieves a number from a table in my database, computes the result and prints them both out but it will not insert the result back into a table in my database, WHY????
    Philip.

    Thanks a million to all of you, the final working code;
    Zed
    <%
              String name = request.getParameter("name");
              String connectionURL = "jdbc:mysql://localhost:3306/";
              String dbName = "test";
              String userName = "root";
              String password = "";
         Connection connection = null;
         PreparedStatement pstatement = null;
         Class.forName("com.mysql.jdbc.Driver").newInstance();
    try {
         connection = DriverManager.getConnection(connectionURL+dbName,userName,password);
         String queryString = "INSERT INTO employees(id, name) VALUES (id, " + "'" + name + "'" + ")";
         pstatement = connection.prepareStatement(queryString);
         pstatement.executeUpdate(queryString);
         catch (Exception ex) {
         out.println("Error = " + ex.toString());
         pstatement.close();
         connection.close();
    %>

  • Please Help.  Lightbox Gallery Widget will not work

    When I put it into Dreamweaver and then go preview it in browser there are just a bunch of empty boxes where the images should be.  The images actually show up in dreamweaver but not as a functioning widget, but the images will not show up when I preview them in browsers... any help will be appreciated.
    Avery

    So I think I figured it out... I guess it didnt transfer all the files needed when I brought it from the widget browser... so i downloaded it from adove exchange I think... and then I went to insert and went to the bottom to tcn widgets and then it worked....

  • Interactions will not insert in Captivate 6

    I am running a trial version of Captivate 6. When I try to insert interactions a screen of all available interactions appear but I cannot select any of them. If I try they disappear from the screen. Any thoughts.

    Thanks Anjaneai,
    Not all the present static widgets work fine in HTML5 output...
    Do you mean that all widgets will be in the Interaction dialog box? I would prefer not, because even for the moment there are so many different objects there:
    customizable interactions (accordion, tabs, ....) where you can adapt a lot, like colors, cnntent (audio, text, images); only one per slide can be inserted; not 'interactive' in the sense of interactive widgets (another confusion) since no reporting is possible
    game-like interactions that have only limited customization (mostly only text - no colors, background...) like hangman, jigsaw.. same limitation: one per slide; maybe those are fun, but prettty useless (no variables, no possibility to include them in an assessment, and most important not customisable nor localisable)
    static widgets mostly with variables (checkboxes, radiobuttons, countdown, hourglass...); more than one can be inserted, variables have to be created separately, some have limited customization, others have almost none but they give you some control (due to variables), not enough IMO (see extended widgets by Jim Leichliter that were based on textarea, checkboxes, radiobuttons); by using advanced actions those widgets, although static, can be used in custom questions because of those variables.
    Lieve

  • DocProperty will not insert correctly

    I am using Word 2010 Autofill option. I have a few document property fields set up for a document. There is one field that will not set. I set the property in the advanced properties-custom box along with the other properties that I have specified. In the
    template I have inserted all of the properties in several places into the template from "quick parts"-"field"-"docproperty". There is one field "ProjectNum" with value "Project_Number" that will not stay. After
    I insert it I can click outside it, then go back and right click it, and in the pop up it has a edit-field option which will display the property. Then I go work on another part of the doc and come back to  the "Project_Number", right click
    and the edit-field option will not be shown! At this point the "Project_Number" field is plain text! The other property fields work fine. I've also saved it as a new document template as well and have same problem. I tried renaming the field and
    it's value as well.
    Thanks

    I'm not completely sure what you are doing or what is happening, but
     a. if you click Alt-F9, does your property field show up looking something like this:
    { DOCPROPERTY ProjectNum \*Mergeformat }
    ? (that's the "field code" view of the field).
     b. if you right-click on the result of a document property field, the right-click menu will display different options depending on whether Word has detected a spelling/grammar error in the result (which it probably will, if the "proofing language"
    is set to English and the result is "Project_Number"). Even in that case, if you click Alt-F9 to show the "field code" view, right-clicking should reveal the "field code" context menu.
    If that is what is happening and you want to avoid that problem, select the field result and go to Review->Language->Set Proofing Language..., and check "Do Not Check Spelling or Grammar"
    Peter Jamieson

  • CS4 When default transition will not insert with Ctrl-d

    I've hit a snag today I hadn't seen before.
    With two clips on the timeline, clip1 has the end trimed back 1 second, clip 2 has the beginning trimmed forward 1 second, so there is plenty of 'fat'.
    Now with time head on the joint of those two clips, Ctrl-d will simply not insert a default transition.
    In the past when this has happened its [b] ALWAYS [/b] been because 1 or the other side was not trimmed enough to accomodate the transition.
    None of that is true this time. Default trans is set to 47 frames  and I have 60 frames trimed (in all), and it is evenly trimmed.
    What else might cause inserting the default trans to fail?
    Oh, by the way the default audio transition inserts as expected with C-Shift-d.
    I thought to check the short-cuts and make sure I hadn't set Ctrl-d to something else but since we do NOT have any way to quickly search with that dialog, I gave up after a few minutes... it would take 3 days of 12 hrs shifts to find it.   But I'm nearly certain I haven't done that.

    It sounds like you do have adequate Handles (that's the "fat"), and Jeff has probably nailed the issue - Track not Targeted, but another little glitch can be if the two Clips to not quite butt up to each other, i.e. a tiny gap between them. If, when you do Target that Track, you still cannot do Ctrl+D, check for a gap between the two Clips.
    Good luck,
    Hunt

  • Is it still the case that the Muse CC Forms widget will not work properly unless you have Business Catalyst?

    I am looking into options for our next office website redesign.  We will definitely need a forms function.  I downloaded the Muse CC free trial and went through all of the tutorials.  The video on the forms (Contact Form) stated that the forms widget would not work or would not work properly if you do not have Business Catalyst.  I'm hoping that has changed since the video was created.
    Is this still true that you need to purchase the Business Catalyst product for Muse CC form widgets to work correcty??? 

    Piruki have you tried utilizing the Previous version option within the Creative Cloud Desktop application?  You can find additional details under the install Previous version section of CC desktop lists applications as "Up to Date" when not installed - http://helpx.adobe.com/creative-cloud/kb/aam-lists-removed-apps-date.html.

  • Widget will not download

    Downloaded a widget from the AppStore.  Widget would not open for download. ( Yes I have the preferences set for it to open) 
    Got this Error message:cannot be opened because it is from an unidentified developer
    Don't understand how something that is offered as a download on the officeal Apple website is deemed to be unsafe and can't be opened??? 
    This has happened 3 times now.  Most recent being Translate and TranslateIt.

    How to open apps from an unidentified developer in OS X
    The app is from an unidentified developer - Support - Apple

  • Help, 1.2 will not insert music (Audio)

    The audio track allways appears below the video as in the previous version, but has a yellow warning symbol and will not play. This occured on older videos from the previous version, that were on prior to upgrade, and also any new movies I create.
    I have deleted and re-installed the app, but it still wont work, I have tried to untick looped video, but all that does is reduce the audio to 0.5s, and it cant be streched etc.
    Not really happy with this "upgrade"
    -B

    I link to it in th epost above yours.
    http://www.iphonehacks.com/2013/09/download-itunes-11-1.html
    Scroll down to;
    Then click Mac, or whatever one is applicible to you.
    Be warned though. After synced, successfully, with iTunes 11.1, i ended up with over 10GB's of 'Other' data on my iphone. I had to do a factory reset (From iTunes/iPhone/Summary). It's been a pain in the ***, but it all seems fine now. But it has taken me hours. An di now have a headache.
    Also, a factory reset will remove ALL your data, and i mean EVERYTHING! You've spend the rest of the day putting everything back the way you like it, and setting up all your setting again.
    Pain in the ***.

  • CS3 will not insert a record

    I am having many problems with CS3, the latest is that I
    cannot get it to insert a record using aspvb.
    I have reduced the page down to one field so it should be
    straight forward.
    On insert the page refreshes but does not go to the next page
    and the record is not inserted.
    I have checked the connection and thats OK
    Cant think of what elso to do.
    Any ideas pleas?
    Thank you, John

    Preference deletion worked. Apparently Photoshop got all confused.
    On a Mac, hold down Command, Option, Shift while starting Photoshop. On a PC I think it is CTRL-ALT-Shift.

  • Captivate 8 does not detect Character files in eLearning Assets and will not insert them via the Media Image route.

    The eLearning Assets directory was installed in C:\Users\Public\Documents\Adobe\eLearning Assets\Characters_8_0.
    When I attempt to insert a Character, Captivate 8 (on Windows 7) loads the gallery where they would normally be displayed but this is empty of thumbnails. It does however recognise that their are categories of Business, Casual etc.
    Additionally, if I attempt to add any of the Character image files via Media>Image on the toolbar, Captivate 8 reports that the image is either corrupt or not of a supported format. Nevertheless, those very same image files will open in other applications without any problem.
    I have tried a reinstall of the Adobe eLearning Assets but this has made no difference.
    Any ideas appreciated.
    Malcolm

    Hi,
    I've since discovered that batch processing the images with IrfanView (which is unusual in being able to actually open them) and resizing them (though I dont think this aspect id actually necessary) the images can be worked with in other Windows programs, can be added to a Captivate progect via the Media>Image route but still do not show up in the Gallery of Characters via Media>Characters.
    This at least allows us to make use of the Character assets but is extremely time consuming as we need to resort to Windows' own thumbnail capabilities (Large Icons in Windows Explorer) to help make a 'quick' selection
    My researches have uncovered a multitude of Adobe/png issues - with Photoshop etc. It would apperar that there are problems associated with both the quality (24 bit) and transparency (being lost or inaccurately interpreted.)
    I don't think the images are 'corrupt' as such (they appear to be just 'Adobe'd') as I have installed and reinstalled the eLearning Assets package - both one that was downloaded several weeks ago and one that was downloaded just days ago.
    If I encounter (or am provided with a complete solution I will post it here.
    Good luck in the meantime.
    Malcolm

  • Widgets will not finish loading?

    I've successfully downloaded several widgets and installed on the Dashboard.
    However, some other widgets just sit on the Dashboard as black boxes with a label in the center that says "Powered by Unity Loading..."
    It will remain that way for however long -- hours or days -- until I delete it from the Dashboard.
    What is going on and what can I do about fixing it?

    To fix your issue is too complicated and lengthy to go into all of it here as it sounds like a hardware issue, it will require the services of person very familiar and experienced with Mac's to first recover your data and then restore OS X back to a functional state which may or may not require new hardware/software installed.
    If your under warranty or AppleCare, take it in for service.
    You can also hire the services of a local Mac computer support technician experienced in these matters.
    Have them look at your Wifi, RAM amount, extra storage and computer backup proceedures in the process.
    Good Luck.

  • Template with data variables will not insert ampersand

    Dear clever people
    I have an illustrator template (saved as .ai) which contains some text boxes and some images. I have tagged these as text and linked file dynamics, so that I can create a series of files with slightly different text and pictures when I load a variable library from an xml file.
    My problem - some of my text routinely includes ampersands and whenever I try and load a variable libaray containing "&" I get an error message saying "The filter cannot complete because of an unkown error."
    Is there some way I can explain to Illustrator what an ampersand is, and that refusing to insert it into my template is not the sort of helpful behaviour expected of a computer application?
    I'm using illustrator 10.0.3 with windows xp.
    Thank you in advance for any replies!

    Not sure, but sounds like a coding problem. The usual way to avid these is to "escape" characters by preceding them with a backslash in the source database/ document. \& might therefore work. Another way is to enclose it in quotes "&". Dunno, I came here for help myself, but these are generic programming tips that may work.
    Mylenium

Maybe you are looking for

  • How to bring output of report on smartform

    Hi experts,                   I want to display output of one std report on the smartform. Output of the Z report is using large no. of write statements. I want to create one smartform which displays output same as the output of report. Is it possibl

  • GRC 10.0 - Centralized Emergency Access

    Hi experts, Have a question lets see if someone else have faced this same concern. We are facing an implementation of the new GRC - AC 10.0 and when configuring the component Emergency Access (former SPM) we realized that in order to assign and end u

  • IMessage isn't linked to my phone number anymore...how can I get it back??

    I don't know what happened...I've been iMessaging on my phone all day, but about an hour ago it stopped sending iMessages from my phone and started sending them through my email address. When I go under Settings>Messages>Send&Receive, my number shows

  • AP not joining WLC via l3 network DTLS problem

    Dear All, i have a problem which is annoying me so bad! I have the scenario you can see in the attached file. The problem i have is that during the CAPWAP registration the public AP contact as I expect (option 43 dhcp) via the public interface 1.1.1.

  • Does migrating database to 7.8  change the structure or ? of the database?

    Good Morning Community, I had migrated Maxdb Database from 7.6 to 7.8 and i realize the dbmcli connect to the database but he prints this error when i execute my usual queries: ERR -24988,ERR_SQL: SQL error -4004,Unknown table name or unknown schema: