Tell me more ×
Mathematica Stack Exchange is a question and answer site for users of Mathematica. It's 100% free, no registration required.

How to Initialize Multiple Packages In Initialization for DynamicModule. I have a Block DynamicModule[{},(),Initialization:>(Needs["package1"];)] How do i Initialize another package in it.

share|improve this question
3  
You haven't accepted any answers so far. I suggest you go back to your previous questions and accept some answers (by clicking the checkmark). Relevant documentation – ssch Jan 15 at 13:28

closed as too localized by Ajasja, Artes, Mr.Wizard Jan 15 at 16:43

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

DynamicModule[{},(),Initialization:>(Needs["package1`"];Needs["package2`"])]
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.