I would like to create a custom online seminar room with custom login in, like adobe connect

However, I would like them to be able to stay on my website without leaving. Maybe an in page element, like an iframe or something. Here are my two sites Florida Hypnosis Florida NLP. I would also like to make it so I can bring up pieces of my blog with in the seminar. So, they do not have to leave it. The blog is located here The Hypnosis Blog. Thank you very much for you time and any ideas you may have. While you are there feel free to tell me what you think about my site.
Your In-Trance To Success,
Ricky Strode

Can't help with that. You might post to the AppleScript forum.

Similar Messages

  • Need to create new users in Office 365 with custom attributes from a csv file

    I am exporting users from an active directory environment and then deleting them from AD. They are Alumni and will no longer be in AD.
    I have a csv file with the following fields that I need to use to create new Alumni email boxes in Office 365 for. I need the CustomAttributes because my Dynamic Distribution Groups use them. I am fairly new to PowerShell and have been unable to get this
    to work. I suspect I may have to split it into two parts, but am not sure how to proceed. Any assistance would be appreciated. I was directed here from the Office 365 community.
    Import-Csv -Path c:\CSVfiles\CreateAlumni.csv | ForEach-Object {
       New-MsolUser -FirstName $_.FirstName -LastName $_.LastName
       -UserPrincipalName $_.UserPrincipalName
       -DisplayName "$($_.FirstName) $($_.LastName)"
       -Password $_.Password
       -CustomAttribute1 $_.CustomAttribute1
       -CustomAttribute3 $_.CustomAttribute3
       -CustomAttribute10 $_.CustomAttribute10
       -CustomAttribute11 $_.CustomAttribute11
       -CustomAttribute12 $_.CustomAttribute12
       -LicenseAssignment 'domaincom:EXCHANGESTANDARD_ALUMNI'
       -UsageLocation US

    Ok, it wasn't stopping after 2 iterations. What I was seeing was 2 failures. The first was the Get-Mailbox command and the second was when it tried to assign attributes. For some reason it is not looping when it fails. It just goes on and tries to assign
    the Custom Attributes. I added writes in to tell me what was happening.
    ### Check if mailbox is provisioned yet
    Write-Host "Checking if mailbox is provisioned yet..." -foregroundcolor yellow
    $found = $false
    $count = 0
    Do {
    try {
    Get-Mailbox -Identity $_.UserName -ErrorAction Stop
    $found = $true
    Write-Output 'Mailbox found. Details:'
    Get-Mailbox -Identity $_.UserName
    } catch {
    Write-Output 'Sleeping'
    $count++
    Start-Sleep -Seconds 5
    If ($count -ge 12) {
    Write-Output 'Mailbox not found. Quitting.'
    $found = $true
    } Until ($found)
    Write-Host "Adding Custom Attributes to User" -foregroundcolor yellow
    Set-Mailbox -Identity $_.UserName -CustomAttribute1 $_.CustomAttribute1 -CustomAttribute3 $_.CustomAttribute3 -CustomAttribute10 $_.CustomAttribute10 -CustomAttribute11 $_.CustomAttribute11 -CustomAttribute12 $_.CustomAttribute12
    Write-Output "User has been Provisioned in Office 365!" -foregroundcolor yellow
    Checking if mailbox is provisioned yet...
    The operation couldn't be performed because object 'Joe.Cool2003' couldn't be found on 'CO1PR07A002DC01.NAMPR07A002.prod.outlook.com'.
        + CategoryInfo         
    : NotSpecified: (:) [Get-Mailbox], ManagementObjectNotFoundException
        + FullyQualifiedErrorId : [Server=CO1PR07MB125,RequestId=e1aabda1-01e4-4f68-984e-e20be0975242,TimeStamp=5/22/2014 4:23:59 AM] [FailureCategory=Cmdlet-ManagementObj
       ectNotFoundException] 2788FB48,Microsoft.Exchange.Management.RecipientTasks.GetMailbox
        + PSComputerName        : pod51038psh.outlook.com
    Mailbox found. Details:
    The operation couldn't be performed because object 'Joe.Cool2003' couldn't be found on 'CO1PR07A002DC01.NAMPR07A002.prod.outlook.com'.
        + CategoryInfo         
    : NotSpecified: (:) [Get-Mailbox], ManagementObjectNotFoundException
        + FullyQualifiedErrorId : [Server=CO1PR07MB125,RequestId=16a8a2bc-333a-455c-8504-e0b99c44c334,TimeStamp=5/22/2014 4:24:00 AM] [FailureCategory=Cmdlet-ManagementObj
       ectNotFoundException] 2788FB48,Microsoft.Exchange.Management.RecipientTasks.GetMailbox
        + PSComputerName       
    : pod51038psh.outlook.com
    Adding Custom Attributes to User
    The operation couldn't be performed because object 'Joe.Cool2003' couldn't be found on 'CO1PR07A002DC01.NAMPR07A002.prod.outlook.com'.
        + CategoryInfo         
    : NotSpecified: (:) [Set-Mailbox], ManagementObjectNotFoundException
        + FullyQualifiedErrorId : [Server=CO1PR07MB125,RequestId=8319d220-b9dd-492f-8182-5083cf56e58b,TimeStamp=5/22/2014 4:24:00 AM] [FailureCategory=Cmdlet-ManagementObj
       ectNotFoundException] C7844A24,Microsoft.Exchange.Management.RecipientTasks.SetMailbox
        + PSComputerName       
    : pod51038psh.outlook.com
    User has been Provisioned in Office 365!
    Of course the user has been provisioned, but the CustomAttributes have not been assigned. :(

  • How to create an EIT in Oracle apps with custom table?

    Hi,
    I have a custom table in APPS schema where training information is loaded everyday by running a control file.
    I've to pick the training end date and status of 5 particular trainings and create an EIT.
    When I try to create an EIT which is basically a DFF, in value set I'm not able to find my table.
    Please guide me through this as I'm doing this for the first time.

    Hi Rajesh,
    You can do the below steps to achieve your requirement (Code may vary to suit your needs, these are just a hint to approach your solution) :
    1. Extract the zip file payload from the incoming module data
             Object obj = inputModuleData.getPrincipalData();
             Message msg = (Message)obj;
             Payload attachment = msg.getMainPayload();
    2. Construct a new outgoing payload using DOM resembling the structure that you defined in your design.
           XMLPayload xmlpayload = msg.getDocument();
           DocumentBuilderFactory factory;
           factory = DocumentBuilderFactory.newInstance();
           DocumentBuilder builder = factory.newDocumentBuilder();
           Document document = builder.newDocument();
    <Create your xml structure using DOM APIs>
    // Transforming the DOM object to Stream object.
           TransformerFactory tfactory = TransformerFactory.newInstance();
           Transformer transformer = tfactory.newTransformer();
           Source src = new DOMSource(document);
           ByteArrayOutputStream out = new ByteArrayOutputStream();
           Result dest = new StreamResult(out);
           transformer.transform(src, dest);
           byte[] docContent = out.toByteArray();
    3. Set the newly created xml structure as the new main payload
            xmlpayload.setContent(docContent);
            msg.setMainPayload(xmlpayload);
    4. Add the original document (zip file) as an attachment to the main payload.
            msg.addAttachment(attachment);
    5. Set the modified message to the inputModuleData and return it to the messaging system
             inputModuleData.setPrincipalData(msg);
             return inputModuleData;
    Regards
    Bikash

  • Create an iso of Windows 8 with custom OEM name and information

    I have searched EVERYWHERE for this. I installed the new windows 10 ADK on Windows 7 (They say it works on 7) and it has tons of features but I can't find a single guide or anything on how do just change the OEM info. Here is exactly what I want to do  but I want to integrate it into the iso. Which is what I thought the ADK is for. I have been tearing my hair out now for 5 hours and I would appreciate it if anyone had a solution for this. Thanks in advance!
    This topic first appeared in the Spiceworks Community

    Hi,
    Andreas is right, we have many ways to deploy Windows 8.1 like OEM.
    You can also try the ADK:
    Windows Assessment and Deployment Kit (Windows ADK) for Windows 8.1
    http://www.microsoft.com/en-hk/download/details.aspx?id=39982
    The Windows ADK enables two key scenarios: Windows deployment and Windows assessment.
    Windows Deployment is for OEMs and IT professionals who customize and automate the large-scale installation of Windows on a factory floor or across an organization.
    Kate Li
    TechNet Community Support

  • ZHRMD_A Custome message type issue with custom segments.

    Hi Experts,
    We have implemented ALE in HR system, we have all other ALE using HRMD_A and we have jobs scheduled for HRMD_A message type. We dont want this job should trigger our model and distribute the data. So we have reduced the HRMD_A messae type to ZHRMD_A for basic type HRMD_A06. Every thing fine. After upgrade of SAP FROM ECC6.O to EHP4, PFAL is not creating IDOC segements for custom segments Z*. for example Z1P0002....ETC, though there is personal data for PERNR.
    Please guid if you have come across such situation and solution.
    Thanks & Regards.
    Venkat.

    Hi Venkat,
    In the same way i too have one situation like...have different model view with same message types( and same extension type) for various countries from one sender system.
    Should i create reduced message type for each model view?
    Or can i use same message type HRMD_A for various model views?
    If i can use same message type and same extension type for various model views is there any restriction we need to write in USER EXIT  EXIT_SAPLRHA0_004?
    Regards,
    Lava.

  • Customer Master data creation with customized number range

    Dear all,
    Can somebody know how to create the customized number range for customers like first 2 digits represents Sales organization and next 2 digit should represent circle,next 2 distribution chaneel and last 4 digits shold be the running number.
    Looking for solution..
    Thanks & Regards,
    Murali.

    Hi,
    In your case you need to define as following
    Step No: 01.
    01.Sales Orgination with 0001 to 0099.
    02.Regions with 00 to 99.
    03.Distribustion Channel with 00 to 99
    Step No:02.
    Define PDP with the diffrent account groups defined for diffrent Sales Org, Regions & DC's.
    Step : No: 03.
    As per the above configs go to TCode for Number range for accounts groups in  XDN1. Say Example as
    XX--- From:1010100000 to: 1010109999. Note the possiable numbers are 0000 to 9999 only.
    10 is sales Org, 10 is Region & 10 is DC's.
    This is one of the way to do. The other way is to develo Z table and to use the user exit / new progarme to identify the requried number range with reference to Sales Org, Regions & DC's
    Hope this is fine with your requrment.
    Bye & enjoy SAP.
    Koganti.

  • Exporting Custom Resolution Quicktime Movie with Custom Pixel Aspect Ratio

    I want to export some 16x9 sequences (and others) at different resolutions with different pixel aspect ratios.
    I have tried exporting as a Quicktime movie, but I get a codec error (with my required H.264 & AAC audio).
    I have tried exporting using Quicktime conversion, but there is nowhere to enter a custom pixel aspect ratio (if they added that as an option in “preserve aspect ratio”, that would be nice).
    I have tried exporting using Compressor, but it doesn't seem to accept my setting of pixel aspect ratio (HDV 1080i 16:9)—at least when I play back the video it is not using wide pixels.
    Thanks for any suggestions.
    G5

    I would like to have arbitrary control of the pixel frame size on export as well as arbitrary control of the pixel aspect ratio. However, in this case I specificially want to export some video in a 4:3 pixel arrangement (such as 360x270) but have its display be 16:9 via non-square (i.e. 4:3) pixel aspect ratio.
    In that sense, yes, I want to have something play back at 16:9, but at least some of my attempts to export video are squished at 4:3.
    While it may be possible to adjust the display in the Quicktime Player, the AVC video syntax as specified by ISO and MPEG standards bodies allow the specification of the pixel aspect ratio (actually sample aspect ratio in the standard) within the bitstream, and when it is there, the latest versions of Quicktime will (from my experience) render the video with the correct aspect ratio.

  • Creating 3d Cube with Custom Texture in CS6

    Hi All,
    Spent the whole day at work, trying to figure out how to create a 3d box in CS6 with custom texture. Before explaining my problem, i saw couple of good 3d onject videos already, they helped me alot and i am close to my target but yet not finished
    Problem:
    I would like to create a 3d product box with custom textures, reflection and shadows. I have my top, front, back and side images in high quality.
    My Solution:
    1- With my box TOP image, i create the 3d layer.
    2- Because it creates the box with the top image looking front, i position it as the top image comes to the top of the box.
    3- I resize the box to the dimensions i would like to.
    4- Side, front and back textures are missing. As its a custom made box, i can only add all of them in one image so i merge them vertically in a file and add the texture in 3d section
    5- With UV scaling, i fit the image perfectly
    6- Adding light and reflections
    7- Render
    Now the main problem is, my images have the exact measures of the real product box and i would like to create a box with these dimensions.
    1- How can i play with the dimensions of the 3d box with numbers, such as pixel or cm ? As i can see, its only with %. Or is there an option so when i add the second image (side, front and back, merged), box's length dimension changes accordingly?
    2- How can i create 3d box and add different textures to different part of the box? I found CUBE MESH PRESET in the forums but no download link, EVEN IN THE DISCCUSION itself
    3- I have a i5-3570 , 8GB Ram, 1GB Radeon HD7750 at work, newly built. I work with high resolution files, and when i create my box and render it, some parts come out blur, why this is happening? At home i have a older PC, and it doesnt happen that much. Where i can modify the render quality or such a thing if it exists?
    Thanks in advance, this bugs me alot, if someone helps with this, i will be really happy !
    Buri

    The long and short version is: Use a 3D program. Blender is free, after all.
    1- How can i play with the dimensions of the 3d box with numbers, such as pixel or cm ?
    You can't. All units in PS are relativeand normalized to the scene.
    2- How can i create 3d box and add different textures to different part of the box? I found CUBE MESH PRESET in the forums but no download link, EVEN IN THE DISCCUSION itself
    That's what 3D-programs and UV layout tools are for. Creating an unfolded cube UV set is a 10 second thing. Here's one: http://www.mylenium.de/_temp/uv_box.zip.
    Where i can modify the render quality or such a thing if it exists?
    Select the Scene root to change the render mode and quality and also check the 3D section in the prefs.
    Mylenium

  • Oracle Customer Online - no bill to/ship to

    While viewing site uses in OCO (Oracle Customer Online) for a particular customer i'm able to view data for party sites.
    Which tables are used in this ?(only hz_party_sites?)
    also in party sites table there is data for two sites (bill to/ship to) but no corresponding data is there in hz_cust_acct_sites_all and hz_cust_site_uses_all for this party.
    How to propagate these party sites in tables hz_cust_acct_sites_all,hz_cust_site_uses_all ?
    Edited by: user540130 on Sep 23, 2010 9:50 PM

    What you are referring to is a Party Site Use and they are independent from Account Site Uses. When you create an Account Site Use, Party Site Use gets created often times depending upon the UI used. But the reverse is not true. You can add as many Party Site uses as you like, and this will not have any bearing on Account Site Uses. Same is true when it comes to maintaining Site Uses at Party Level and Account level. They can be maintained independently.
    The story is different when it comes to Sites. If you inactivate a Party Site, all Account Sites that are tied to it gets inactivated. If inactivate an Account Site, the underlying Party Site gets inactivated, which in turn triggers the inactivation of all Account Sites that are tied to the Party Site.
    There are several good presentations on TCA, CDH, MDM and Best Practices are posted at http://www.rhaptech.com/resources.html that you might want to take a look at.
    Regards,

  • How to render a video from image sequence with custom frame rate?

    Dear all,
    For a project i would like to create a video from 47 images with a custom frame rate. To achieve this i take the following steps in Photoshop CS6 extended:
    1) File -> Open...
    2) Select the first image and select " image sequence ". All images have the same size (1280 x 1261 px) and are numbered correctly.
    3) Click open
    4) Frame Rate: Custom 3 fps
    5) File -> Export -> Render Video... -> Render
    6) Play the video with VLC. The video shows a still image of the first image.
    If i choose a frame rate of 10 fps, then there is no problem. VLC plays the video as expected.
    Is there a other way to create a video from 47 images and choose a custom frame rate? Or what am i doing wrong?

    Seen this SO thread?
    http://stackoverflow.com/questions/6691136/how-to-convert-series-of-images-into- movie-in-ios

  • Open / initialise ME21n with customized default Document Overview

    Hi all,
    I created a customer field in the Purchase Requisitions. Now I would like to create a program to start ME21n with the Document Overview on and a customized SAP Query from the infoset '/SAPQUERY/MEBANF' to implement in enhancement 'MEQUERY1'. In this Query I would like to find the Purchase Requisitions with a value which corresponds with the value of the customer field.
    My obstacles are the following:
    1) How can I pass a value through to the customized SAP Query
    2) How can I customize the default setting of the Document Overview
    Please don't post a list of other (i think irrelevant) User-exits. I'm aware of the fact that I shouldn't BDC ME21n.
    Thank you in advance.
    Regards,
    Sander

    Hi Ram,
    Can you please share your thoughts on the document overview functionality in the purchase order screen, becuase I have a requirement to see the MPN number in that Doc overview for the selected Purchase requisitions. I have changed the layout and added the field MPN number but somehow this field is showing completely blank.
    Regards
    Shane

  • Creating an OSB cluster but not with Configuration Wizard

    Hi experts,
    I would like to create an OSB cluster but not with Configuration Wizard. So my scenario for creating OSB cluster is:
    - create an AdminServer with Configuration Wizard
    - log into Administration Console and create two machines and a cluster
    - start node managers
    - configuration for starting servers automatically with node managers
    After these steps I have a cluster with 2 managed servers which will start with the node manager. However these managed servers are appropriate for deploying normal Java applications but not OSB components...
    My questions is what should I do with these managed servers to be able to deploy OSB components onto them?
    Or can I create an OSB domain only with Configuration Wizard?
    Thanks,
    V.
    Edited by: RickFlair on May 13, 2012 1:10 PM

    Hi Pierluigi,
    Thanks for the answer!
    When I created the domain (with Configuration Wizard) I could set that the domain should be an OSB domain so I think I don't need this template afterwards.
    If I create an OSB domain (with Configuration Wizard) with one AdminServer in it and later I add managed servers on the admin console then I get this message on the OSB Administration Console: Unable to obtain metrics data from the server. It means that something is wrong with the managed servers I can't use them properly.
    However if I create an AdminServer and managed servers with Configuration Wizard then I don't get this error (or warning?) message.
    Could you help me why it is?
    Thanks,
    V.

  • Creating an album within an album with .mac gallery?

    I have recently travelled around Taiwan for three weeks, and would like to create a main folder called Taiwan with 7 sub category folders of the cities and places I have been to rather than just lump all the pictures together under one album or have them all the folders appear on the front page horizontally.
    So to recap: I would like to have one main album appearing on the front page in the .mac gallery, with several sub albums contained therein (like a hierarchical folder).

    Welcome to the Apple Discussions. The web gallery feature of iPhoto does not let you create sub galleries. They will all be in one gallery. You can set the order of them by arranging their order in iPhoto's source pane and then publish.
    If you want to have the type of separation you would like try using iWeb to create a web site with an introductory page and then have seven additional photo pages, one for each city. Each photo page will also have a slideshow associated with it. It would not be unlike my Tutorial site except the other pages would be photo pages. You can use an image from each city's photo page as a link to that city's page like seen on this page in my test site.
    OT

  • To create an asynch - synch - asynch flow with XI, without BPM

    I would like to create an asynch -> synch -> asynch flow with XI,
    without BPM.
    The solution with RequestResponseBean and ResponseOnewayBean modules in
    the File sender communication channel works fine.
    But now I would ask you how can I do if my sender is R/3, with IDocs?
    Because we cannot use modules in the IDoc sender communication channel,
    and I don't want to use BPM.
    Could you help me?
    Thanks in advance,
    Ram.

    /people/jin.shin/blog/2006/02/07/multi-mapping-without-bpm--yes-it146s-possible
    Refer to this blog. You may find a way out.
    Alternatively, I would rather know the reason behind you not using BPM.Coz its the best way to acheive the desired result.

  • Problem with custom paper size on dot matrix printer

    Hi All,
    I'm using CR2008 with updated to SP2. I have a problem with custom paper size (W=21; H=14), the CR Viewer show report with custom paper size correctly but when I print it to a dot matrix printer (Epson LQ 300+) the content was rotated to landscape. If print to a laser printer the content was printed correctly. My report was printed correctly by CR10 or previous versions I got this issue when upgraded to CR2008. I aslo tested my computer and printer with orther application like MS Word the printing have no problem with custom paper size.
    Thanks for any advice for me.
    Han

    Looking at the Epson LQ 300+ driver, I see that the latest update is from 2002. In my experience, most matrix printer drivers are not unicode. Crystal Reports is designed to only work with unicode printer drivers. See the [How Printer Driver Options Affect a Report|https://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/a09051e9-721e-2b10-11b6-f9c65c64ef29&overridelayout=true] article, page 6 for details. Also, see [this|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_dev/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes.do] note.
    Finally, see if you can print from the CR designer to this printer and if you get the correct results here.
    Ludek

Maybe you are looking for

  • I updated  my Iphone 4 to IOS 7.1.2 and i loss all my Pictures

    Hi When I did update to my iPhone (IOS 7.1.2) the phone automatically turn off and then ask my to connect with iTunes I don't know why ? that is a first time always just do the update from phone, I connect the iPhone with iTunes and ask me to do back

  • Loading Ex Gain/loss on material with CKMLCP

    Hi Gurus, I am facing one issue with material ledger and seeking you suggestion. There are 2 accounts 514000 (for ex gain) and 514001( for ex loss). Whenever there is gain/loss posting to these accounts wrt import MIRO, such gain/loss would get loade

  • Printing from SOA Suite 11.1.1.7 (Best Practice)

    Using SOA Suite 11.1.1.7 looking for best practices around printing from within Oracle SOA. i have a PDF and we need to print the document to a specific print queue, we know the IP address of the printer also other details such as a name etc... these

  • [SOLVED]File journal: what's the recomended journal file size??

    After checking the journaling file journalctl --disk-usage Journals take up 679.5M on disk I have found that i have 680M of journal files, it's a good idea to limit these files to a smaller amount??? I'm using an 120GB ssd. I was thinking limit those

  • LED flash replacement. Is it possible?

    Hi. Does anyone know is it possible to replace only LED flash but not the whole camera module in case of faulty flash? I've tried to search for different repair parts for iPhone 4 and found nothing about separate part for LED flash. Thanks in advance